Trait Shl

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

Dynamic (object-safe) version of Shl

Required Methods§

Source

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

Implementors§

Source§

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