#[repr(packed(1))]pub struct bool8x32(/* private fields */);Implementations§
Source§impl bool8x32
impl bool8x32
Sourcepub fn new(
x0: i8,
x1: i8,
x2: i8,
x3: i8,
x4: i8,
x5: i8,
x6: i8,
x7: i8,
x8: i8,
x9: i8,
x10: i8,
x11: i8,
x12: i8,
x13: i8,
x14: i8,
x15: i8,
x16: i8,
x17: i8,
x18: i8,
x19: i8,
x20: i8,
x21: i8,
x22: i8,
x23: i8,
x24: i8,
x25: i8,
x26: i8,
x27: i8,
x28: i8,
x29: i8,
x30: i8,
x31: i8,
) -> Self
pub fn new( x0: i8, x1: i8, x2: i8, x3: i8, x4: i8, x5: i8, x6: i8, x7: i8, x8: i8, x9: i8, x10: i8, x11: i8, x12: i8, x13: i8, x14: i8, x15: i8, x16: i8, x17: i8, x18: i8, x19: i8, x20: i8, x21: i8, x22: i8, x23: i8, x24: i8, x25: i8, x26: i8, x27: i8, x28: i8, x29: i8, x30: i8, x31: i8, ) -> Self
Create new instance
Sourcepub fn from_slice_aligned(slice: &[i8]) -> Self
pub fn from_slice_aligned(slice: &[i8]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub fn from_slice_unaligned(slice: &[i8]) -> Self
pub fn from_slice_unaligned(slice: &[i8]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub unsafe fn from_slice_aligned_unchecked(slice: &[i8]) -> Self
pub unsafe fn from_slice_aligned_unchecked(slice: &[i8]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub unsafe fn from_slice_unaligned_unchecked(slice: &[i8]) -> Self
pub unsafe fn from_slice_unaligned_unchecked(slice: &[i8]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub fn write_to_slice_aligned(self, slice: &mut [i8])
pub fn write_to_slice_aligned(self, slice: &mut [i8])
Writes the values of the vector to the slice.
Sourcepub fn write_to_slice_unaligned(self, slice: &mut [i8])
pub fn write_to_slice_unaligned(self, slice: &mut [i8])
Writes the values of the vector to the slice.
Sourcepub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [i8])
pub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [i8])
Writes the values of the vector to the slice.
Sourcepub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [i8])
pub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [i8])
Writes the values of the vector to the slice.
Trait Implementations§
impl Copy for bool8x32
Auto Trait Implementations§
impl Freeze for bool8x32
impl RefUnwindSafe for bool8x32
impl Send for bool8x32
impl Sync for bool8x32
impl Unpin for bool8x32
impl UnwindSafe for bool8x32
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