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