- Evolution
- Competition
- Are you insane? Rust is awesome!!!
Fast + Safe + Concurrent
Thanks Ownership
https://www.youtube.com/watch?v=TCUBSbJENO4&
error[E0382]: use of moved value: `s1`
--> src/main.rs:5:28
|
3 | let s2 = s1;
| -- value moved here
4 |
5 | println!("{}, world!", s1);
| ^^ value used here after move
|
= note: move occurs because `s1` has type `std::string::String`, which does
not implement the `Copy` trait
Modern ecosystem
I told you so
Read the Book https://doc.rust-lang.org/stable/book/ Look at Examples https://doc.rust-lang.org/stable/rust-by-example/ Do the Course
https://github.com/fmoko/rustlings
Watch some Videos
https://www.youtube.com/channel/UCaYhcUwRBNscFNUKTjgPFiA
Write some Code
struct Code {
spaghetti: String,
}
impl Code {
fn write(clean_code: &str) -> Self {
Code {
spagetti: clean_code,
}
}
}
Write some useful Code
https://github.com/trending/rust?since=daily
Read the Newsletter https://this-week-in-rust.org/ Explain the code https://jrvidal.github.io/explaine.rs/
Choose your domain
https://www.rust-lang.org/learn
Await https://rust-lang.github.io/async-book/ https://tokio.rs/docs/getting-started/hello-world/ https://book.async.rs/ https://cfsamson.github.io/books-futures-explained/
https://www.youtube.com/watch?v=skos4B5x7qE&
https://youtu.be/skos4B5x7qE Find a Job https://rustjobs.rs/#jobs This week in Rust LinkedIn @Никита П