DestructDrop

Trait DestructDrop 

Source
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§

Source

fn destruct_drop(self)

Consume self without dropping it while dropping all of its contents normally.

Implementors§