Crate study_rust_example

Source
Expand description

§Study Rust example Crate

Study Rust example 是按照The Rust Programming Language这本书的章节的示例进行学习的代码部分

  • 每个章节为一个模块,特殊的章节除外比如test、文档注释都是写在之前的示例上进行展示;
  • 每个章节的每一小节为一个子模块,模块树对应目录,每个子模块暴露一个公共的方法用于main函数进行调用测试

Re-exports§

pub use self::basic_concept::basic_concept::control_flow;
pub use self::common_collection::hash_map_study;
pub use self::enum_pattern_match::enum_pattern_match::match_control_flow;
pub use self::error_handle::result_recorverable;
pub use self::generic_traits_lifetime::mix_usage;
pub use self::iterator_closure::closure_study;
pub use self::ownership::ownership::reference_borrow;
pub use self::package_crate_module::package_crate_module::package_crate_path;
pub use self::struct_related::retangle;

Modules§

basic_concept
common_collection
enum_pattern_match
error_handle
generic_traits_lifetime
iterator_closure
ownership
package_crate_module
struct_related