Trait Update

Source
pub trait Update<T> {
    type Output;

    // Required method
    fn update(&mut self, input: T) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn update(&mut self, input: T) -> Self::Output

Implementors§