What is Rust's official build tool and package manager called?
AnswerCargo
Cargo builds Rust projects, runs tests and downloads dependencies.
Coding · Facts & stats
7 fact-checked facts about the Rust programming language, each with the reason behind it. 5 more are in today's round and join this page after it closes.
AnswerCargo
Cargo builds Rust projects, runs tests and downloads dependencies.
AnswerFerris
Ferris the crab is the community mascot, and Rust fans call themselves Rustaceans.
AnswerIt is a macro, not a regular function
Names ending in ! like println! and vec! are macros that expand into code at compile time.
AnswerThe borrow checker
The borrow checker makes sure references never outlive the data they point to.
AnswerOption
Option has two variants: Some(value) or None.
AnswerResult
Result has Ok(value) for success and Err(error) for failure.
AnswerDefining shared behavior that types can implement
A trait lists methods a type must provide, similar to interfaces in other languages.