Packages, Crates, Modules Flashcards
How many binary crates can a package contain?
Multiple.
How many library crates can a package contain?
One.
What is the module system in Rust?
A collection of features that help organize code. Features such as which code details are public or private, and what names in a program are in what scope.
What Rust features make up the module system?
Packages, Crates, Modules and Use, Paths.
What are packages in Cargo?
A Cargo feature that lets you build, test, and share crates. One or more crates that provide a set of functionality
What are crates in Cargo?
A tree of modules that produces a library or executable.
What do Modules do?
Organize code within a crate into groups for readability and easy reuse. Modules also control the privacy of items.
What are Paths?
A way of naming an item, such as a struct, function, or module.
What is the Crate root file?
Source file that the Rust compiler starts from and makes up the root module of your crate.
What file does every Package contain?
Cargo.toml
What does a Cargo.toml file describe?
How to build the Crates in a package.
What must a Package contain?
Zero or one Library crates.
What is the command to create a Package?
cargo new
What convention does Cargo follow regarding src/main.rs?
src/main.rs is the crate root of a binary crate with the same name as the package.
What convention does Cargo follow regarding src/lib.rs?
If the package directory contains src/lib.rs then src/lib.rs is the crate root of a Library crate with the same name as the package.
How does cargo build a Library or a Binary?
By passing the crate root to rustc.
How does a package create multiple binary crates?
By placing files in the src/bin directory: each file will be a separate binary crate.
What is the syntax for defining a module?
mod {}
What do the contents of src/main.rs and src/lib.rs form?
A module named crate at the root of the crate’s module structure, known as the module tree.
What does Rust use to find an item in a module tree?
A path.
What are the two forms a path can take?
An absolute or a relative path.
What is an absolute path in Rust?
Path that starts from a crate root by using a crate name or a literal crate.
What is a relative path in Rust?
Path that starts from the current module and uses self, super, or an identifier in the current module.
What defines Rusts privacy boundary?
A module.
Are all items in Rust private by default?
Yes.
How can you expose inner parts of child modules code to outer ancestor modules?
Using the pub keyword to make an item public.
What does the pub keyword on a module do?
Lets code in its ancestor module refer to it.
What does using super at the start of a path do?
Constructs a relative path that begins in the parent module.
What does pub before a struct definition do?
Make the struct public. The struct fields will still be private.
What does adding pub to an enum definition do?
Makes it public, along with ALL its variants.
How do we bring path items into scope?
With the keyword use.
How does using the use keyword with a relative path differ from using it with an absolute path?
The relative path must start with the keyword self.
What is the idiomatic way to bring a function into scope with the keyword use?
Bringing the functions parent module into scope, and not the function itself.
What is the idiomatic way to bring structs, enums, and other items besides functions into scope with the keyword use?
By specifying the full path.
What is the as keyword used for in Rust?
To provide an alias for an import or cast between types.
What is re-exporting?
Using pub and use to bring an item into scope but also making that item available for others to bring into their scope.