[][src]Trait drop_move::DropMove

pub trait DropMove: DropMoveTypes {
    pub fn drop_move(self_: DropHandle<Self>) { ... }
}

A variant of Drop that allows moving out of the value being dropped.

This trait must be implemented by the inner structure generated by drop_move_wrap!.

Provided methods

pub fn drop_move(self_: DropHandle<Self>)[src]

Drop the value, by move instead of by reference.

Loading content...

Implementors

Loading content...