Trait Partial

Source
pub trait Partial<T> {
    type Output;

    // Required method
    fn partial(&self, args: T) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn partial(&self, args: T) -> Self::Output

Implementors§