Trait BitAnd

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

Dynamic (object-safe) version of BitAnd

Required Methods§

Source

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

Implementors§

Source§

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