#[repr(packed(1))]pub struct bool8x16(/* private fields */);Implementations§
Source§impl bool8x16
impl bool8x16
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,
) -> 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, ) -> 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 bool8x16
Auto Trait Implementations§
impl Freeze for bool8x16
impl RefUnwindSafe for bool8x16
impl Send for bool8x16
impl Sync for bool8x16
impl Unpin for bool8x16
impl UnwindSafe for bool8x16
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