Trait mmtk::util::metadata::metadata_val_traits::BitwiseOps
source · pub trait BitwiseOps {
// Required methods
fn bitand(self, other: Self) -> Self;
fn bitor(self, other: Self) -> Self;
fn bitxor(self, other: Self) -> Self;
fn inv(self) -> Self;
}
Expand description
Describes bitwise operations. If num_traits has this, we do not need our own implementation: https://github.com/rust-num/num-traits/issues/232
Required Methods§
Object Safety§
This trait is not object safe.