#[repr(C)]
pub union vec128_storage {
/* private fields */
}
Expand description
Generic wrapper for unparameterized storage of any of the possible impls. Converting into and out of this type should be essentially free, although it may be more aligned than a particular impl requires.
Trait Implementations§
Source§impl Clone for vec128_storage
impl Clone for vec128_storage
Source§fn clone(&self) -> vec128_storage
fn clone(&self) -> vec128_storage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for vec128_storage
impl Default for vec128_storage
Source§impl<'a> From<&'a vec128_storage> for &'a [u32; 4]
impl<'a> From<&'a vec128_storage> for &'a [u32; 4]
Source§fn from(x: &'a vec128_storage) -> Self
fn from(x: &'a vec128_storage) -> Self
Converts to this type from the input type.
Source§impl From<vec128_storage> for [u128; 1]
impl From<vec128_storage> for [u128; 1]
Source§fn from(vec: vec128_storage) -> Self
fn from(vec: vec128_storage) -> Self
Converts to this type from the input type.
Source§impl From<vec128_storage> for [u32; 4]
impl From<vec128_storage> for [u32; 4]
Source§fn from(vec: vec128_storage) -> Self
fn from(vec: vec128_storage) -> Self
Converts to this type from the input type.
Source§impl From<vec128_storage> for [u64; 2]
impl From<vec128_storage> for [u64; 2]
Source§fn from(vec: vec128_storage) -> Self
fn from(vec: vec128_storage) -> Self
Converts to this type from the input type.
Source§impl FromBytes for vec128_storage
impl FromBytes for vec128_storage
Source§impl FromZeros for vec128_storage
impl FromZeros for vec128_storage
Source§impl IntoBytes for vec128_storage
impl IntoBytes for vec128_storage
Source§fn as_mut_bytes(&mut self) -> &mut [u8]where
Self: FromBytes,
fn as_mut_bytes(&mut self) -> &mut [u8]where
Self: FromBytes,
Gets the bytes of this value mutably. Read more
Source§fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
Source§impl PartialEq for vec128_storage
impl PartialEq for vec128_storage
Source§impl Store<vec128_storage> for vec128_storage
impl Store<vec128_storage> for vec128_storage
Source§unsafe fn unpack(p: vec128_storage) -> Self
unsafe fn unpack(p: vec128_storage) -> Self
Safety Read more
Source§impl TryFromBytes for vec128_storage
impl TryFromBytes for vec128_storage
Source§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Copy for vec128_storage
impl Eq for vec128_storage
impl Immutable for vec128_storage
Auto Trait Implementations§
impl Freeze for vec128_storage
impl RefUnwindSafe for vec128_storage
impl Send for vec128_storage
impl Sync for vec128_storage
impl Unpin for vec128_storage
impl UnwindSafe for vec128_storage
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