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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".