pub struct SSE_REGISTERS {
Show 18 fields pub header: [u128; 2], pub legacy: [u128; 8], pub xmm0: u128, pub xmm1: u128, pub xmm2: u128, pub xmm3: u128, pub xmm4: u128, pub xmm5: u128, pub xmm6: u128, pub xmm7: u128, pub xmm8: u128, pub xmm9: u128, pub xmm10: u128, pub xmm11: u128, pub xmm12: u128, pub xmm13: u128, pub xmm14: u128, pub xmm15: u128,
}
Expand description

Possible contents of CONTEXT_AMD64::float_save.

This is defined as an anonymous struct inside an anonymous union in the x86-64 CONTEXT struct in WinNT.h.

Fields

header: [u128; 2]legacy: [u128; 8]xmm0: u128xmm1: u128xmm2: u128xmm3: u128xmm4: u128xmm5: u128xmm6: u128xmm7: u128xmm8: u128xmm9: u128xmm10: u128xmm11: u128xmm12: u128xmm13: u128xmm14: u128xmm15: u128

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.