Trait ParamTake

Source
pub trait ParamTake<T> {
    type Transformed;

    // Required method
    fn param_take(self) -> (Self::Transformed, T);
}
Expand description

Item of type T has been set in certain_map slot and can be removed from the slot, leaving it vacant.

Required Associated Types§

Required Methods§

Source

fn param_take(self) -> (Self::Transformed, T)

Implementors§