mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
452 B
21 lines
452 B
struct CustomSmartPointer {
|
|
data: String,
|
|
}
|
|
|
|
impl Drop for CustomSmartPointer {
|
|
fn drop(&mut self) {
|
|
println!("Dropping CustomSmartPointer with data `{}`!", self.data);
|
|
}
|
|
}
|
|
|
|
// ANCHOR: here
|
|
fn main() {
|
|
let c = CustomSmartPointer {
|
|
data: String::from("some data"),
|
|
};
|
|
println!("CustomSmartPointer created.");
|
|
c.drop();
|
|
println!("CustomSmartPointer dropped before the end of main.");
|
|
}
|
|
// ANCHOR_END: here
|