TryApplyMut

Trait TryApplyMut 

Source
pub trait TryApplyMut<Rhs> {
    type Output;
    type Error;

    // Required method
    fn try_apply_mut(&mut self, rhs: Rhs) -> Result<Self::Output, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn try_apply_mut(&mut self, rhs: Rhs) -> Result<Self::Output, Self::Error>

Implementors§

Source§

impl<A, X, Y> TryApplyMut<X> for A
where A: ApplyMut<X, Output = Y>,