Trait Rem

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

Dynamic (object-safe) version of Rem

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