#[repr(C)]pub struct m8x16(pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8, pub m8);Expand description
A 128-bit SIMD vector with 16 elements of type m8.
Tuple Fields§
§0: m8§1: m8§2: m8§3: m8§4: m8§5: m8§6: m8§7: m8§8: m8§9: m8§10: m8§11: m8§12: m8§13: m8§14: m8§15: m8Trait Implementations§
impl Copy for m8x16
impl Eq for m8x16
impl Pod for m8x16
impl StructuralPartialEq for m8x16
Auto Trait Implementations§
impl Freeze for m8x16
impl RefUnwindSafe for m8x16
impl Send for m8x16
impl Sync for m8x16
impl Unpin for m8x16
impl UnwindSafe for m8x16
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.