Rem

Trait Rem 

Source
pub trait Rem: Dyn {
    // Required method
    fn dyn_rem(self: Box<Self>, other: Box<dyn Any>) -> *mut ();
}

Required Methods§

Source

fn dyn_rem(self: Box<Self>, other: Box<dyn Any>) -> *mut ()

Implementors§

Source§

impl<T: Dyn + Rem<Output = T>> Rem for T