#[repr(packed(1))]pub struct bool32x8(/* private fields */);Implementations§
Source§impl bool32x8
impl bool32x8
Sourcepub fn new(
x0: i32,
x1: i32,
x2: i32,
x3: i32,
x4: i32,
x5: i32,
x6: i32,
x7: i32,
) -> Self
pub fn new( x0: i32, x1: i32, x2: i32, x3: i32, x4: i32, x5: i32, x6: i32, x7: i32, ) -> Self
Create new instance
Sourcepub fn from_slice_aligned(slice: &[i32]) -> Self
pub fn from_slice_aligned(slice: &[i32]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub fn from_slice_unaligned(slice: &[i32]) -> Self
pub fn from_slice_unaligned(slice: &[i32]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub unsafe fn from_slice_aligned_unchecked(slice: &[i32]) -> Self
pub unsafe fn from_slice_aligned_unchecked(slice: &[i32]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub unsafe fn from_slice_unaligned_unchecked(slice: &[i32]) -> Self
pub unsafe fn from_slice_unaligned_unchecked(slice: &[i32]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub fn write_to_slice_aligned(self, slice: &mut [i32])
pub fn write_to_slice_aligned(self, slice: &mut [i32])
Writes the values of the vector to the slice.
Sourcepub fn write_to_slice_unaligned(self, slice: &mut [i32])
pub fn write_to_slice_unaligned(self, slice: &mut [i32])
Writes the values of the vector to the slice.
Sourcepub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [i32])
pub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [i32])
Writes the values of the vector to the slice.
Sourcepub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [i32])
pub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [i32])
Writes the values of the vector to the slice.
Trait Implementations§
impl Copy for bool32x8
Auto Trait Implementations§
impl Freeze for bool32x8
impl RefUnwindSafe for bool32x8
impl Send for bool32x8
impl Sync for bool32x8
impl Unpin for bool32x8
impl UnwindSafe for bool32x8
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