#[repr(C)]pub union simde__m64_private {
pub i8_: [i8; 8],
pub i16_: [i16; 4],
pub i32_: [i32; 2],
pub i64_: [i64; 1],
pub u8_: [u8; 8],
pub u16_: [u16; 4],
pub u32_: [u32; 2],
pub u64_: [u64; 1],
pub f32_: [simde_float32; 2],
pub i32f: [int_fast32_t; 1],
pub u32f: [uint_fast32_t; 1],
pub n: __m64,
}Fields§
§i8_: [i8; 8]§i16_: [i16; 4]§i32_: [i32; 2]§i64_: [i64; 1]§u8_: [u8; 8]§u16_: [u16; 4]§u32_: [u32; 2]§u64_: [u64; 1]§f32_: [simde_float32; 2]§i32f: [int_fast32_t; 1]§u32f: [uint_fast32_t; 1]§n: __m64Trait Implementations§
Source§impl Clone for simde__m64_private
impl Clone for simde__m64_private
Source§fn clone(&self) -> simde__m64_private
fn clone(&self) -> simde__m64_private
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for simde__m64_private
Auto Trait Implementations§
impl Freeze for simde__m64_private
impl RefUnwindSafe for simde__m64_private
impl Send for simde__m64_private
impl Sync for simde__m64_private
impl Unpin for simde__m64_private
impl UnsafeUnpin for simde__m64_private
impl UnwindSafe for simde__m64_private
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