I don't know that much about Erlang or Go, but I am familiar with Rust.
They all have similar use cases and goals. Rust is intended for developing fast, safe, concurrent, and large systems. It is specifically being designed for building highly-concurrent browser architectures, where safety is paramount and code size is fairly massive.
Rust very often looks to Erlang when making decisions about concurrency. The concurrency model is still evolving but I would expect it to become more similar to Erlang. There are not yet any plans for hot code swapping in Rust. It also does not yet have any support for out-of-process message passing, but that will almost certainly appear eventually.
Rust tries to integrate with the system toolchain as appropriate for the platform, producing native executables and libraries. It has no JIT option. It is a lower level language than Erlang.
Go and Rust fill a very similar niche, both intended to be concurrent systems languages. My impression (having never used Go) is that they feel somewhat different. Probably the most significant difference between them is that Rust does more than Go to enforce memory-safety, like disallowing null pointers and shared mutable state.
The primary advantage of Rust over Erlang will be developer ergonimics. Rust tries to present things in a way that is mostly-natural to C and C++ programmers while being much safer than either. It has some functional leanings, but it also allows code in a mutating, imperative style that more people are comfortable with.
Rust has a long way to go before it is as mature and reliable as Erlang. It will not 'replace' it in the near future.