[−][src]Struct ppv_lite86::x86_64::SseMachine
Trait Implementations
impl<S3: Clone, S4: Clone, NI: Clone> Clone for SseMachine<S3, S4, NI>
[src]
fn clone(&self) -> SseMachine<S3, S4, NI>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<S3: Copy, S4: Copy, NI: Copy> Copy for SseMachine<S3, S4, NI>
[src]
impl<S3: Copy, S4: Copy, NI: Copy> Machine for SseMachine<S3, S4, NI> where
u128x1_sse2<S3, S4, NI>: Swap64,
u64x2_sse2<S3, S4, NI>: BSwap + RotateEachWord32 + MultiLane<[u64; 2]> + Vec2<u64>,
u32x4_sse2<S3, S4, NI>: BSwap + RotateEachWord32 + MultiLane<[u32; 4]> + Vec4<u32>,
x2<u64x2_sse2<S3, S4, NI>, G1>: BSwap + Words4,
u128x1_sse2<S3, S4, NI>: BSwap,
x2<u128x1_sse2<S3, S4, NI>, G0>: Into<x2<u64x2_sse2<S3, S4, NI>, G0>>,
x2<u128x1_sse2<S3, S4, NI>, G0>: Into<x2<u64x2_sse2<S3, S4, NI>, G1>>,
x2<u128x1_sse2<S3, S4, NI>, G0>: Into<x2<u32x4_sse2<S3, S4, NI>, G0>>,
x4<u128x1_sse2<S3, S4, NI>>: Into<x4<u64x2_sse2<S3, S4, NI>>>,
x4<u128x1_sse2<S3, S4, NI>>: Into<x4<u32x4_sse2<S3, S4, NI>>>,
[src]
u128x1_sse2<S3, S4, NI>: Swap64,
u64x2_sse2<S3, S4, NI>: BSwap + RotateEachWord32 + MultiLane<[u64; 2]> + Vec2<u64>,
u32x4_sse2<S3, S4, NI>: BSwap + RotateEachWord32 + MultiLane<[u32; 4]> + Vec4<u32>,
x2<u64x2_sse2<S3, S4, NI>, G1>: BSwap + Words4,
u128x1_sse2<S3, S4, NI>: BSwap,
x2<u128x1_sse2<S3, S4, NI>, G0>: Into<x2<u64x2_sse2<S3, S4, NI>, G0>>,
x2<u128x1_sse2<S3, S4, NI>, G0>: Into<x2<u64x2_sse2<S3, S4, NI>, G1>>,
x2<u128x1_sse2<S3, S4, NI>, G0>: Into<x2<u32x4_sse2<S3, S4, NI>, G0>>,
x4<u128x1_sse2<S3, S4, NI>>: Into<x4<u64x2_sse2<S3, S4, NI>>>,
x4<u128x1_sse2<S3, S4, NI>>: Into<x4<u32x4_sse2<S3, S4, NI>>>,
type u32x4 = u32x4_sse2<S3, S4, NI>
type u64x2 = u64x2_sse2<S3, S4, NI>
type u128x1 = u128x1_sse2<S3, S4, NI>
type u32x4x2 = x2<u32x4_sse2<S3, S4, NI>, G0>
type u64x2x2 = x2<u64x2_sse2<S3, S4, NI>, G0>
type u64x4 = x2<u64x2_sse2<S3, S4, NI>, G1>
type u128x2 = x2<u128x1_sse2<S3, S4, NI>, G0>
type u32x4x4 = x4<u32x4_sse2<S3, S4, NI>>
type u64x2x4 = x4<u64x2_sse2<S3, S4, NI>>
type u128x4 = x4<u128x1_sse2<S3, S4, NI>>
unsafe fn instance() -> Self
[src]
fn unpack<S, V: Store<S>>(self, s: S) -> V
[src]
fn vec<V, A>(self, a: A) -> V where
V: MultiLane<A>,
[src]
V: MultiLane<A>,
fn read_le<V>(self, input: &[u8]) -> V where
V: StoreBytes,
[src]
V: StoreBytes,
fn read_be<V>(self, input: &[u8]) -> V where
V: StoreBytes,
[src]
V: StoreBytes,
Auto Trait Implementations
impl<S3, S4, NI> Send for SseMachine<S3, S4, NI> where
NI: Send,
S3: Send,
S4: Send,
NI: Send,
S3: Send,
S4: Send,
impl<S3, S4, NI> Sync for SseMachine<S3, S4, NI> where
NI: Sync,
S3: Sync,
S4: Sync,
NI: Sync,
S3: Sync,
S4: Sync,
impl<S3, S4, NI> Unpin for SseMachine<S3, S4, NI> where
NI: Unpin,
S3: Unpin,
S4: Unpin,
NI: Unpin,
S3: Unpin,
S4: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,