pub trait DestructDrop {
// Required method
fn destruct_drop(self);
}Expand description
Trait for consuming a struct or enum without dropping it while dropping all of its contents normally.
Required Methods§
Sourcefn destruct_drop(self)
fn destruct_drop(self)
Consume self without dropping it while dropping all of its contents normally.