Struct zerovec::ule::plain::RawBytesULE

source ·
#[repr(transparent)]
pub struct RawBytesULE<const N: usize>(pub [u8; N]);
Expand description

A u8 array of little-endian data with infallible conversions to and from &u8.

Tuple Fields§

§0: [u8; N]

Implementations§

source§

impl<const N: usize> RawBytesULE<N>

source

pub fn as_bytes(&self) -> &[u8]

source

pub fn from_byte_slice_unchecked_mut(bytes: &mut [u8]) -> &mut [Self]

source§

impl RawBytesULE<2>

source

pub fn as_unsigned_int(&self) -> u16

Gets this RawBytesULE as a u16. This is equivalent to calling AsULE::from_unaligned() on the appropriately sized type.

source

pub const fn from_aligned(value: u16) -> Self

Converts a u16 to a RawBytesULE. This is equivalent to calling AsULE::to_unaligned() on the appropriately sized type.

source

pub const fn from_array<const N: usize>(arr: [u16; N]) -> [Self; N]

Convert an array of u16 to an array of RawBytesULE<2>.

source§

impl RawBytesULE<4>

source

pub fn as_unsigned_int(&self) -> u32

Gets this RawBytesULE as a u32. This is equivalent to calling AsULE::from_unaligned() on the appropriately sized type.

source

pub const fn from_aligned(value: u32) -> Self

Converts a u32 to a RawBytesULE. This is equivalent to calling AsULE::to_unaligned() on the appropriately sized type.

source

pub const fn from_array<const N: usize>(arr: [u32; N]) -> [Self; N]

Convert an array of u32 to an array of RawBytesULE<4>.

source§

impl RawBytesULE<8>

source

pub fn as_unsigned_int(&self) -> u64

Gets this RawBytesULE as a u64. This is equivalent to calling AsULE::from_unaligned() on the appropriately sized type.

source

pub const fn from_aligned(value: u64) -> Self

Converts a u64 to a RawBytesULE. This is equivalent to calling AsULE::to_unaligned() on the appropriately sized type.

source

pub const fn from_array<const N: usize>(arr: [u64; N]) -> [Self; N]

Convert an array of u64 to an array of RawBytesULE<8>.

source§

impl RawBytesULE<16>

source

pub fn as_unsigned_int(&self) -> u128

Gets this RawBytesULE as a u128. This is equivalent to calling AsULE::from_unaligned() on the appropriately sized type.

source

pub const fn from_aligned(value: u128) -> Self

Converts a u128 to a RawBytesULE. This is equivalent to calling AsULE::to_unaligned() on the appropriately sized type.

source

pub const fn from_array<const N: usize>(arr: [u128; N]) -> [Self; N]

Convert an array of u128 to an array of RawBytesULE<16>.

source§

impl RawBytesULE<2>

source

pub const fn from_unsigned(v: u16) -> Self

source§

impl RawBytesULE<4>

source

pub const fn from_unsigned(v: u32) -> Self

source§

impl RawBytesULE<8>

source

pub const fn from_unsigned(v: u64) -> Self

source§

impl RawBytesULE<16>

source

pub const fn from_unsigned(v: u128) -> Self

source§

impl RawBytesULE<2>

source

pub const fn from_signed(v: i16) -> Self

source§

impl RawBytesULE<4>

source

pub const fn from_signed(v: i32) -> Self

source§

impl RawBytesULE<8>

source

pub const fn from_signed(v: i64) -> Self

source§

impl RawBytesULE<16>

source

pub const fn from_signed(v: i128) -> Self

source§

impl RawBytesULE<3>

source

pub const fn from_unvalidated_char(uc: UnvalidatedChar) -> Self

Converts a UnvalidatedChar to its ULE type. This is equivalent to calling AsULE::to_unaligned.

Trait Implementations§

source§

impl<const N: usize> Clone for RawBytesULE<N>

source§

fn clone(&self) -> RawBytesULE<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const N: usize> Debug for RawBytesULE<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const N: usize> From<[u8; N]> for RawBytesULE<N>

source§

fn from(le_bytes: [u8; N]) -> Self

Converts to this type from the input type.
source§

impl From<i128> for RawBytesULE<16>

source§

fn from(value: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for RawBytesULE<2>

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for RawBytesULE<4>

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for RawBytesULE<8>

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<u128> for RawBytesULE<16>

source§

fn from(value: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for RawBytesULE<2>

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for RawBytesULE<4>

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for RawBytesULE<8>

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl<const N: usize> Hash for RawBytesULE<N>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<const N: usize> Ord for RawBytesULE<N>

source§

fn cmp(&self, other: &RawBytesULE<N>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<const N: usize> PartialEq<RawBytesULE<N>> for RawBytesULE<N>

source§

fn eq(&self, other: &RawBytesULE<N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const N: usize> PartialOrd<RawBytesULE<N>> for RawBytesULE<N>

source§

fn partial_cmp(&self, other: &RawBytesULE<N>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<const N: usize> ULE for RawBytesULE<N>

source§

fn validate_byte_slice(bytes: &[u8]) -> Result<(), ZeroVecError>

Validates a byte slice, &[u8]. Read more
source§

fn parse_byte_slice(bytes: &[u8]) -> Result<&[Self], ZeroVecError>

Parses a byte slice, &[u8], and return it as &[Self] with the same lifetime. Read more
source§

unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]

Takes a byte slice, &[u8], and return it as &[Self] with the same lifetime, assuming that this byte slice has previously been run through Self::parse_byte_slice() with success. Read more
source§

fn as_byte_slice(slice: &[Self]) -> &[u8]

Given &[Self], returns a &[u8] with the same lifetime. Read more
source§

impl<const N: usize> Copy for RawBytesULE<N>

source§

impl<const N: usize> Eq for RawBytesULE<N>

source§

impl<const N: usize> StructuralEq for RawBytesULE<N>

source§

impl<const N: usize> StructuralPartialEq for RawBytesULE<N>

Auto Trait Implementations§

§

impl<const N: usize> RefUnwindSafe for RawBytesULE<N>

§

impl<const N: usize> Send for RawBytesULE<N>

§

impl<const N: usize> Sync for RawBytesULE<N>

§

impl<const N: usize> Unpin for RawBytesULE<N>

§

impl<const N: usize> UnwindSafe for RawBytesULE<N>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> ErasedDestructor for Twhere T: 'static,