Trait NightlyQuirksFunctionMut

Source
pub trait NightlyQuirksFunctionMut {
    type InputType;
    type OutputType;

    // Required method
    fn call_mut(&mut self, value: Self::InputType) -> Self::OutputType;
}

Required Associated Types§

Required Methods§

Source

fn call_mut(&mut self, value: Self::InputType) -> Self::OutputType

Implementors§