1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! 第五章:所有权系统
//!

/// # Examples
///
/// Basic usage:
///
/// ```
/// pub fn title(){
///   println!("第5章:{}", "所有权系统");
/// }
/// title();
/// ```
pub fn title(){
    println!("第5章:{}", "所有权系统");
}

pub mod semantic;
pub mod share_mutable;
pub mod borrow;
pub mod lifetime;
pub mod nll;
pub mod smart_pointer;