enum BoolValue {
Scalar(bool),
Buffer(BooleanBuffer),
}
Expand description
The result of checking which type_ids matches the target type_id
Variants§
Scalar(bool)
If true, all type_ids matches the target type_id If false, none type_ids matches the target type_id
Buffer(BooleanBuffer)
A mask represeting which type_ids matches the target type_id
Trait Implementations§
impl StructuralPartialEq for BoolValue
Auto Trait Implementations§
impl Freeze for BoolValue
impl RefUnwindSafe for BoolValue
impl Send for BoolValue
impl Sync for BoolValue
impl Unpin for BoolValue
impl UnwindSafe for BoolValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more