pub trait ChunkBitwiseReduce {
type Physical;
// Required methods
fn and_reduce(&self) -> Option<Self::Physical>;
fn or_reduce(&self) -> Option<Self::Physical>;
fn xor_reduce(&self) -> Option<Self::Physical>;
}Expand description
Bitwise Reduction Operations.
Required Associated Types§
Required Methods§
fn and_reduce(&self) -> Option<Self::Physical>
fn or_reduce(&self) -> Option<Self::Physical>
fn xor_reduce(&self) -> Option<Self::Physical>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".