Trait Shr

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

Dynamic (object-safe) version of Shr

Required Methods§

Source

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

Implementors§

Source§

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