Sometimes it might be good to use clear statements, but this "No" is really a bit strange.
First, the exact question was not, if it makes sense to learn C/C++ before Rust, but if experience in it is helpful. And of course it is -- I think most people would agree.
If learning C before Rust just to use later only Rust makes sense is a more controversial question. Personally I would say yes, as C is such a tiny and primitive language, that it is quite easy to learn the basics of systems programming with it. And knowing C is always a good thing, as most libs are written in C, and we might have to interface to it by FFI.
Of course one can start with Rust without any prior programming experience, or with only a background in a language like Python. I think I would have not been able to do that -- as a young boy I started with some Basic on the C64, later with Pascal at first year at university, and parallel with Modula-2, some C, and later Oberon on the Amiga. Well, of course today the people are all much smarter than me, and have Internet and AI as support.
Still, my impression is that most people with a C or C++ background have not too much problems with Rust, while absolute beginners in programming, or people with only a Python background, have much more problems. I observed the same for Nim over a period of 9 years -- while Nim had syntactically some similarity with Python, people knowing only Python had some problems with Nim, as the systems programming background was missing.
As we discussed already in much details, it depends a lot on learning resources. For C there exist a few very basic beginner courses, that explains all the low level stuff -- bits and bytes, number encodings, internal working of a CPU, data- and address bus, RAM, stack and heap, pointer use, linked lists, and all that in much detail. For Rust we do not really have that.
PS: I think you are the one who said that Rust compares more to C than C++. I thought about it, and for me Rust is still more an equivalent to C++, not so much for C. Well, C++ is object orientated, and Rust not. But Rust is a complex languages, with all the advanced data types like vectors and hash maps, and some form of automatic memory management without a GC like RAII in C++. While C is a tiny, quite primitive language, more a portable assembler as you said. So for me Rust compares to C++.