#[repr(u32)]enum ScalarSetBits {
ABSTRACT_INT = 0,
ABSTRACT_FLOAT = 1,
I32 = 2,
I64 = 3,
U32 = 4,
U64 = 5,
F32 = 6,
F16 = 7,
F64 = 8,
BOOL = 9,
Count = 10,
}
Expand description
An enum used to assign distinct bit numbers to ScalarSet
elements.
Variants§
ABSTRACT_INT = 0
ABSTRACT_FLOAT = 1
I32 = 2
I64 = 3
U32 = 4
U64 = 5
F32 = 6
F16 = 7
F64 = 8
BOOL = 9
Count = 10
Auto Trait Implementations§
impl Freeze for ScalarSetBits
impl RefUnwindSafe for ScalarSetBits
impl Send for ScalarSetBits
impl Sync for ScalarSetBits
impl Unpin for ScalarSetBits
impl UnwindSafe for ScalarSetBits
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