I should point out that knowing C gives you a huge head start on learning Rust. It's different, but you can see an underlying C-ness to it.
Most notably, references are really just pointers except the compiler can check whether they're still valid at any given point in the program. If you're a C programmer, you were already doing that pointer validity checking in your head, so this'll be far more familiar to you than to a JavaScript/Python/etc programmer.