Struct zerocopy::byteorder::U16

source ·
#[repr(transparent)]
pub struct U16<O>(_, _);
Expand description

A 16-bit unsigned integer stored in O byte order.

U16 is like the native u16 type with two major differences: First, it has no alignment requirement (its alignment is 1). Second, the endianness of its memory layout is given by the type parameter O.

A U16 can be constructed using the new method, and its contained value can be obtained as a native u16 using the get method, or updated in place with the set method. In all cases, if the endianness O is not the same as the endianness of the current platform, an endianness swap will be performed in order to uphold the invariants that a) the layout of U16 has endianness O and that, b) the layout of u16 has the platform’s native endianness.

U16 implements FromBytes, AsBytes, and Unaligned, making it useful for parsing and serialization. See the module documentation for an example of how it can be used for parsing UDP packets.

Implementations§

source§

impl<O> U16<O>

source

pub const ZERO: U16<O> = _

The value zero.

This constant should be preferred to constructing a new value using new, as new may perform an endianness swap depending on the endianness and platform.

source

pub const MAX_VALUE: U16<O> = _

The maximum value.

This constant should be preferred to constructing a new value using new, as new may perform an endianness swap depending on the endianness O and the endianness of the platform.

source

pub const fn from_bytes(bytes: [u8; 2]) -> U16<O>

Constructs a new value from bytes which are already in the endianness O.

source§

impl<O: ByteOrder> U16<O>

source

pub fn new(n: u16) -> U16<O>

Constructs a new value, possibly performing an endianness swap to guarantee that the returned value has endianness O.

source

pub fn get(self) -> u16

Returns the value as a primitive type, possibly performing an endianness swap to guarantee that the return value has the endianness of the native platform.

source

pub fn set(&mut self, n: u16)

Updates the value in place as a primitive type, possibly performing an endianness swap to guarantee that the stored value has the endianness O.

Trait Implementations§

source§

impl<O> AsBytes for U16<O>where PhantomData<O>: AsBytes, [u8; 2]: AsBytes,

source§

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

Gets the bytes of this value. Read more
source§

fn as_bytes_mut(&mut self) -> &mut [u8]where Self: FromBytes,

Gets the bytes of this value mutably. Read more
source§

fn write_to<B: ByteSliceMut>(&self, bytes: B) -> Option<()>

Writes a copy of self to bytes. Read more
source§

fn write_to_prefix<B: ByteSliceMut>(&self, bytes: B) -> Option<()>

Writes a copy of self to the prefix of bytes. Read more
source§

fn write_to_suffix<B: ByteSliceMut>(&self, bytes: B) -> Option<()>

Writes a copy of self to the suffix of bytes. Read more
source§

impl<O: ByteOrder> AsMut<[u8; 2]> for U16<O>

source§

fn as_mut(&mut self) -> &mut [u8; 2]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<O: ByteOrder> AsRef<[u8; 2]> for U16<O>

source§

fn as_ref(&self) -> &[u8; 2]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<O: ByteOrder> Binary for U16<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: Clone> Clone for U16<O>

source§

fn clone(&self) -> U16<O>

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<O: ByteOrder> Debug for U16<O>

source§

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

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

impl<O> Default for U16<O>

source§

fn default() -> U16<O>

Returns the “default value” for a type. Read more
source§

impl<O: ByteOrder> Display for U16<O>

source§

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

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

impl<O: ByteOrder> From<[u8; 2]> for U16<O>

source§

fn from(bytes: [u8; 2]) -> U16<O>

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U16<O>> for [u8; 2]

source§

fn from(x: U16<O>) -> [u8; 2]

Converts to this type from the input type.
source§

impl<O: ByteOrder, P: ByteOrder> From<U16<O>> for U128<P>

source§

fn from(x: U16<O>) -> U128<P>

Converts to this type from the input type.
source§

impl<O: ByteOrder, P: ByteOrder> From<U16<O>> for U32<P>

source§

fn from(x: U16<O>) -> U32<P>

Converts to this type from the input type.
source§

impl<O: ByteOrder, P: ByteOrder> From<U16<O>> for U64<P>

source§

fn from(x: U16<O>) -> U64<P>

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U16<O>> for u128

source§

fn from(x: U16<O>) -> u128

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U16<O>> for u16

source§

fn from(x: U16<O>) -> u16

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U16<O>> for u32

source§

fn from(x: U16<O>) -> u32

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U16<O>> for u64

source§

fn from(x: U16<O>) -> u64

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<U16<O>> for usize

source§

fn from(x: U16<O>) -> usize

Converts to this type from the input type.
source§

impl<O: ByteOrder> From<u16> for U16<O>

source§

fn from(x: u16) -> U16<O>

Converts to this type from the input type.
source§

impl<O> FromBytes for U16<O>where PhantomData<O>: FromBytes, [u8; 2]: FromBytes,

source§

fn read_from<B: ByteSlice>(bytes: B) -> Option<Self>where Self: Sized,

Reads a copy of Self from bytes. Read more
source§

fn read_from_prefix<B: ByteSlice>(bytes: B) -> Option<Self>where Self: Sized,

Reads a copy of Self from the prefix of bytes. Read more
source§

fn read_from_suffix<B: ByteSlice>(bytes: B) -> Option<Self>where Self: Sized,

Reads a copy of Self from the suffix of bytes. Read more
source§

fn new_zeroed() -> Selfwhere Self: Sized,

Creates an instance of Self from zeroed bytes.
source§

fn new_box_zeroed() -> Box<Self>where Self: Sized,

Creates a Box<Self> from zeroed bytes. Read more
source§

fn new_box_slice_zeroed(len: usize) -> Box<[Self]>where Self: Sized,

Creates a Box<[Self]> (a boxed slice) from zeroed bytes. Read more
source§

fn new_vec_zeroed(len: usize) -> Vec<Self>where Self: Sized,

Creates a Vec<Self> from zeroed bytes. Read more
source§

impl<O: Hash> Hash for U16<O>

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<O: ByteOrder> LowerHex for U16<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: ByteOrder> Octal for U16<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: ByteOrder> PartialEq<[u8; 2]> for U16<O>

source§

fn eq(&self, other: &[u8; 2]) -> 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<O: ByteOrder> PartialEq<U16<O>> for [u8; 2]

source§

fn eq(&self, other: &U16<O>) -> 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<O: PartialEq> PartialEq<U16<O>> for U16<O>

source§

fn eq(&self, other: &U16<O>) -> 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<O: ByteOrder, P: ByteOrder> TryFrom<U128<P>> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: U128<P>) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder, P: ByteOrder> TryFrom<U32<P>> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: U32<P>) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder, P: ByteOrder> TryFrom<U64<P>> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: U64<P>) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder> TryFrom<u128> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: u128) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder> TryFrom<u32> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: u32) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder> TryFrom<u64> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: u64) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder> TryFrom<usize> for U16<O>

§

type Error = TryFromIntError

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

fn try_from(x: usize) -> Result<U16<O>, TryFromIntError>

Performs the conversion.
source§

impl<O: ByteOrder> UpperHex for U16<O>

source§

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

Formats the value using the given formatter.
source§

impl<O: Copy> Copy for U16<O>

source§

impl<O: Eq> Eq for U16<O>

source§

impl<O> StructuralEq for U16<O>

source§

impl<O> StructuralPartialEq for U16<O>

source§

impl<O> Unaligned for U16<O>where PhantomData<O>: Unaligned, [u8; 2]: Unaligned,

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for U16<O>where O: RefUnwindSafe,

§

impl<O> Send for U16<O>where O: Send,

§

impl<O> Sync for U16<O>where O: Sync,

§

impl<O> Unpin for U16<O>where O: Unpin,

§

impl<O> UnwindSafe for U16<O>where O: UnwindSafe,

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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.