#[repr(packed(1))]pub struct u64x4(/* private fields */);Expand description
4x64-bit vectors
Implementations§
Source§impl u64x4
impl u64x4
Sourcepub fn from_slice_aligned(slice: &[u64]) -> Self
pub fn from_slice_aligned(slice: &[u64]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub fn from_slice_unaligned(slice: &[u64]) -> Self
pub fn from_slice_unaligned(slice: &[u64]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub unsafe fn from_slice_aligned_unchecked(slice: &[u64]) -> Self
pub unsafe fn from_slice_aligned_unchecked(slice: &[u64]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub unsafe fn from_slice_unaligned_unchecked(slice: &[u64]) -> Self
pub unsafe fn from_slice_unaligned_unchecked(slice: &[u64]) -> Self
Instantiates a new vector with the values of the slice.
Sourcepub fn write_to_slice_aligned(self, slice: &mut [u64])
pub fn write_to_slice_aligned(self, slice: &mut [u64])
Writes the values of the vector to the slice.
Sourcepub fn write_to_slice_unaligned(self, slice: &mut [u64])
pub fn write_to_slice_unaligned(self, slice: &mut [u64])
Writes the values of the vector to the slice.
Sourcepub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [u64])
pub unsafe fn write_to_slice_aligned_unchecked(self, slice: &mut [u64])
Writes the values of the vector to the slice.
Sourcepub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [u64])
pub unsafe fn write_to_slice_unaligned_unchecked(self, slice: &mut [u64])
Writes the values of the vector to the slice.
Trait Implementations§
impl Copy for u64x4
Auto Trait Implementations§
impl Freeze for u64x4
impl RefUnwindSafe for u64x4
impl Send for u64x4
impl Sync for u64x4
impl Unpin for u64x4
impl UnwindSafe for u64x4
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