#[repr(u8)]pub enum Vsew {
E8 = 0,
E16 = 1,
E32 = 2,
E64 = 3,
}Expand description
Selected element width (SEW).
Encoded in vtype[5:3] as vsew. SEW = 8 * 2^vsew.
Variants§
E8 = 0
SEW = 8 bits (vsew = 0b000)
E16 = 1
SEW = 16 bits (vsew = 0b001)
E32 = 2
SEW = 32 bits (vsew = 0b010)
E64 = 3
SEW = 64 bits (vsew = 0b011)
Implementations§
Trait Implementations§
impl Copy for Vsew
impl Eq for Vsew
impl StructuralPartialEq for Vsew
Auto Trait Implementations§
impl Freeze for Vsew
impl RefUnwindSafe for Vsew
impl Send for Vsew
impl Sync for Vsew
impl Unpin for Vsew
impl UnsafeUnpin for Vsew
impl UnwindSafe for Vsew
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