zerocopy::byteorder

Struct Isize

Source
pub struct Isize<O>(/* private fields */);
Expand description

A word-sized signed integer stored in a given byte order.

Isize is like the native isize 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, which can be any type which implements ByteOrder. In particular, this refers to BigEndian, LittleEndian, NativeEndian, and NetworkEndian.

An Isize can be constructed using the new method, and its contained value can be obtained as a native isize 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 Isize has endianness O and that, b) the layout of isize has the platform’s native endianness.

Isize implements FromBytes, IntoBytes, 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> Isize<O>

Source

pub const ZERO: Isize<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 fn from_bytes(bytes: [u8; 8]) -> Isize<O>

Constructs a new value from bytes which are already in O byte order.

Source

pub const fn to_bytes(self) -> [u8; 8]

Extracts the bytes of self without swapping the byte order.

The returned bytes will be in O byte order.

Source§

impl<O: ByteOrder> Isize<O>

Source

pub const fn new(n: isize) -> Isize<O>

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

Source

pub const fn get(self) -> isize

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: isize)

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: ByteOrder> Add<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Isize<O>) -> Isize<O>

Performs the + operation. Read more
Source§

impl<O: ByteOrder> Add<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: isize) -> Isize<O>

Performs the + operation. Read more
Source§

impl<O: ByteOrder> Add for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Isize<O>) -> Isize<O>

Performs the + operation. Read more
Source§

impl<O: ByteOrder> AddAssign<Isize<O>> for isize

Source§

fn add_assign(&mut self, rhs: Isize<O>)

Performs the += operation. Read more
Source§

impl<O: ByteOrder> AddAssign<isize> for Isize<O>

Source§

fn add_assign(&mut self, rhs: isize)

Performs the += operation. Read more
Source§

impl<O: ByteOrder> AddAssign for Isize<O>

Source§

fn add_assign(&mut self, rhs: Isize<O>)

Performs the += operation. Read more
Source§

impl<O> AsMut<[u8; 8]> for Isize<O>

Source§

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

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

impl<O> AsRef<[u8; 8]> for Isize<O>

Source§

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

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

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

Source§

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

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

impl<O: ByteOrder> BitAnd<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Isize<O>) -> Isize<O>

Performs the & operation. Read more
Source§

impl<O: ByteOrder> BitAnd<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: isize) -> Isize<O>

Performs the & operation. Read more
Source§

impl<O: ByteOrder> BitAnd for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Isize<O>) -> Isize<O>

Performs the & operation. Read more
Source§

impl<O: ByteOrder> BitAndAssign<Isize<O>> for isize

Source§

fn bitand_assign(&mut self, rhs: Isize<O>)

Performs the &= operation. Read more
Source§

impl<O: ByteOrder> BitAndAssign<isize> for Isize<O>

Source§

fn bitand_assign(&mut self, rhs: isize)

Performs the &= operation. Read more
Source§

impl<O: ByteOrder> BitAndAssign for Isize<O>

Source§

fn bitand_assign(&mut self, rhs: Isize<O>)

Performs the &= operation. Read more
Source§

impl<O: ByteOrder> BitOr<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Isize<O>) -> Isize<O>

Performs the | operation. Read more
Source§

impl<O: ByteOrder> BitOr<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: isize) -> Isize<O>

Performs the | operation. Read more
Source§

impl<O: ByteOrder> BitOr for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Isize<O>) -> Isize<O>

Performs the | operation. Read more
Source§

impl<O: ByteOrder> BitOrAssign<Isize<O>> for isize

Source§

fn bitor_assign(&mut self, rhs: Isize<O>)

Performs the |= operation. Read more
Source§

impl<O: ByteOrder> BitOrAssign<isize> for Isize<O>

Source§

fn bitor_assign(&mut self, rhs: isize)

Performs the |= operation. Read more
Source§

impl<O: ByteOrder> BitOrAssign for Isize<O>

Source§

fn bitor_assign(&mut self, rhs: Isize<O>)

Performs the |= operation. Read more
Source§

impl<O: ByteOrder> BitXor<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Isize<O>) -> Isize<O>

Performs the ^ operation. Read more
Source§

impl<O: ByteOrder> BitXor<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: isize) -> Isize<O>

Performs the ^ operation. Read more
Source§

impl<O: ByteOrder> BitXor for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Isize<O>) -> Isize<O>

Performs the ^ operation. Read more
Source§

impl<O: ByteOrder> BitXorAssign<Isize<O>> for isize

Source§

fn bitxor_assign(&mut self, rhs: Isize<O>)

Performs the ^= operation. Read more
Source§

impl<O: ByteOrder> BitXorAssign<isize> for Isize<O>

Source§

fn bitxor_assign(&mut self, rhs: isize)

Performs the ^= operation. Read more
Source§

impl<O: ByteOrder> BitXorAssign for Isize<O>

Source§

fn bitxor_assign(&mut self, rhs: Isize<O>)

Performs the ^= operation. Read more
Source§

impl<O: Clone> Clone for Isize<O>

Source§

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

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl<O: ByteOrder> Debug for Isize<O>

Source§

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

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

impl<O> Default for Isize<O>

Source§

fn default() -> Isize<O>

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

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

Source§

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

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

impl<O: ByteOrder> Div<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Isize<O>) -> Isize<O>

Performs the / operation. Read more
Source§

impl<O: ByteOrder> Div<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: isize) -> Isize<O>

Performs the / operation. Read more
Source§

impl<O: ByteOrder> Div for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Isize<O>) -> Isize<O>

Performs the / operation. Read more
Source§

impl<O: ByteOrder> DivAssign<Isize<O>> for isize

Source§

fn div_assign(&mut self, rhs: Isize<O>)

Performs the /= operation. Read more
Source§

impl<O: ByteOrder> DivAssign<isize> for Isize<O>

Source§

fn div_assign(&mut self, rhs: isize)

Performs the /= operation. Read more
Source§

impl<O: ByteOrder> DivAssign for Isize<O>

Source§

fn div_assign(&mut self, rhs: Isize<O>)

Performs the /= operation. Read more
Source§

impl<O: ByteOrder> From<[u8; 8]> for Isize<O>

Source§

fn from(bytes: [u8; 8]) -> Isize<O>

Converts to this type from the input type.
Source§

impl<O: ByteOrder, P: ByteOrder> From<I16<O>> for Isize<P>

Source§

fn from(x: I16<O>) -> Isize<P>

Converts to this type from the input type.
Source§

impl<O: ByteOrder> From<Isize<O>> for [u8; 8]

Source§

fn from(x: Isize<O>) -> [u8; 8]

Converts to this type from the input type.
Source§

impl<O: ByteOrder> From<Isize<O>> for isize

Source§

fn from(x: Isize<O>) -> isize

Converts to this type from the input type.
Source§

impl<O: ByteOrder> From<isize> for Isize<O>

Source§

fn from(x: isize) -> Isize<O>

Converts to this type from the input type.
Source§

impl<O> FromBytes for Isize<O>
where [u8; 8]: FromBytes, PhantomData<O>: FromBytes,

Source§

fn ref_from_bytes(source: &[u8]) -> Result<&Self, CastError<&[u8], Self>>
where Self: KnownLayout + Immutable,

Interprets the given source as a &Self. Read more
Source§

fn ref_from_prefix( source: &[u8], ) -> Result<(&Self, &[u8]), CastError<&[u8], Self>>
where Self: KnownLayout + Immutable,

Interprets the prefix of the given source as a &Self without copying. Read more
Source§

fn ref_from_suffix( source: &[u8], ) -> Result<(&[u8], &Self), CastError<&[u8], Self>>
where Self: Immutable + KnownLayout,

Interprets the suffix of the given bytes as a &Self. Read more
Source§

fn mut_from_bytes( source: &mut [u8], ) -> Result<&mut Self, CastError<&mut [u8], Self>>
where Self: IntoBytes + KnownLayout,

Interprets the given source as a &mut Self. Read more
Source§

fn mut_from_prefix( source: &mut [u8], ) -> Result<(&mut Self, &mut [u8]), CastError<&mut [u8], Self>>
where Self: IntoBytes + KnownLayout,

Interprets the prefix of the given source as a &mut Self without copying. Read more
Source§

fn mut_from_suffix( source: &mut [u8], ) -> Result<(&mut [u8], &mut Self), CastError<&mut [u8], Self>>
where Self: IntoBytes + KnownLayout,

Interprets the suffix of the given source as a &mut Self without copying. Read more
Source§

fn read_from_bytes(source: &[u8]) -> Result<Self, SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the given source. Read more
Source§

fn read_from_prefix( source: &[u8], ) -> Result<(Self, &[u8]), SizeError<&[u8], Self>>
where Self: Sized,

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

fn read_from_suffix( source: &[u8], ) -> Result<(&[u8], Self), SizeError<&[u8], Self>>
where Self: Sized,

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

impl<O> FromZeros for Isize<O>
where [u8; 8]: FromZeros, PhantomData<O>: FromZeros,

Source§

fn zero(&mut self)

Overwrites self with zeros. Read more
Source§

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes. Read more
Source§

impl<O: Hash> Hash for Isize<O>

Source§

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

Feeds this value into the given [Hasher]. Read more
1.3.0§

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> IntoBytes for Isize<O>
where [u8; 8]: IntoBytes, PhantomData<O>: IntoBytes,

Source§

fn as_bytes(&self) -> &[u8]
where Self: Immutable,

Gets the bytes of this value. Read more
Source§

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,

Writes a copy of self to dst. Read more
Source§

fn write_to_prefix( &self, dst: &mut [u8], ) -> Result<(), SizeError<&Self, &mut [u8]>>
where Self: Immutable,

Writes a copy of self to the prefix of dst. Read more
Source§

fn write_to_suffix( &self, dst: &mut [u8], ) -> Result<(), SizeError<&Self, &mut [u8]>>
where Self: Immutable,

Writes a copy of self to the suffix of dst. Read more
Source§

impl<O> KnownLayout for Isize<O>
where Self: Sized,

Source§

type PointerMetadata = ()

The type of metadata stored in a pointer to Self. Read more
Source§

impl<O: ByteOrder> LowerHex for Isize<O>

Source§

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

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

impl<O: ByteOrder> Mul<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Isize<O>) -> Isize<O>

Performs the * operation. Read more
Source§

impl<O: ByteOrder> Mul<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: isize) -> Isize<O>

Performs the * operation. Read more
Source§

impl<O: ByteOrder> Mul for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Isize<O>) -> Isize<O>

Performs the * operation. Read more
Source§

impl<O: ByteOrder> MulAssign<Isize<O>> for isize

Source§

fn mul_assign(&mut self, rhs: Isize<O>)

Performs the *= operation. Read more
Source§

impl<O: ByteOrder> MulAssign<isize> for Isize<O>

Source§

fn mul_assign(&mut self, rhs: isize)

Performs the *= operation. Read more
Source§

impl<O: ByteOrder> MulAssign for Isize<O>

Source§

fn mul_assign(&mut self, rhs: Isize<O>)

Performs the *= operation. Read more
Source§

impl<O: ByteOrder> Neg for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Isize<O>

Performs the unary - operation. Read more
Source§

impl<O> Not for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the ! operator.
Source§

fn not(self) -> Isize<O>

Performs the unary ! operation. Read more
Source§

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

Source§

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

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

impl<O: ByteOrder> Ord for Isize<O>

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0§

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

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

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

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

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

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

impl<O> PartialEq<[u8; 8]> for Isize<O>

Source§

fn eq(&self, other: &[u8; 8]) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<O> PartialEq<Isize<O>> for [u8; 8]

Source§

fn eq(&self, other: &Isize<O>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<O: ByteOrder> PartialEq<isize> for Isize<O>

Source§

fn eq(&self, other: &isize) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<O: PartialEq> PartialEq for Isize<O>

Source§

fn eq(&self, other: &Isize<O>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<O: ByteOrder> PartialOrd<isize> for Isize<O>

Source§

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

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

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<O: ByteOrder> PartialOrd for Isize<O>

Source§

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

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

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<O: ByteOrder> Rem<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Isize<O>) -> Isize<O>

Performs the % operation. Read more
Source§

impl<O: ByteOrder> Rem<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: isize) -> Isize<O>

Performs the % operation. Read more
Source§

impl<O: ByteOrder> Rem for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Isize<O>) -> Isize<O>

Performs the % operation. Read more
Source§

impl<O: ByteOrder> RemAssign<Isize<O>> for isize

Source§

fn rem_assign(&mut self, rhs: Isize<O>)

Performs the %= operation. Read more
Source§

impl<O: ByteOrder> RemAssign<isize> for Isize<O>

Source§

fn rem_assign(&mut self, rhs: isize)

Performs the %= operation. Read more
Source§

impl<O: ByteOrder> RemAssign for Isize<O>

Source§

fn rem_assign(&mut self, rhs: Isize<O>)

Performs the %= operation. Read more
Source§

impl<O: ByteOrder> Shl<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Isize<O>) -> Isize<O>

Performs the << operation. Read more
Source§

impl<O: ByteOrder> Shl<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: isize) -> Isize<O>

Performs the << operation. Read more
Source§

impl<O: ByteOrder> Shl for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Isize<O>) -> Isize<O>

Performs the << operation. Read more
Source§

impl<O: ByteOrder> ShlAssign<Isize<O>> for isize

Source§

fn shl_assign(&mut self, rhs: Isize<O>)

Performs the <<= operation. Read more
Source§

impl<O: ByteOrder> ShlAssign<isize> for Isize<O>

Source§

fn shl_assign(&mut self, rhs: isize)

Performs the <<= operation. Read more
Source§

impl<O: ByteOrder> ShlAssign for Isize<O>

Source§

fn shl_assign(&mut self, rhs: Isize<O>)

Performs the <<= operation. Read more
Source§

impl<O: ByteOrder> Shr<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Isize<O>) -> Isize<O>

Performs the >> operation. Read more
Source§

impl<O: ByteOrder> Shr<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: isize) -> Isize<O>

Performs the >> operation. Read more
Source§

impl<O: ByteOrder> Shr for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Isize<O>) -> Isize<O>

Performs the >> operation. Read more
Source§

impl<O: ByteOrder> ShrAssign<Isize<O>> for isize

Source§

fn shr_assign(&mut self, rhs: Isize<O>)

Performs the >>= operation. Read more
Source§

impl<O: ByteOrder> ShrAssign<isize> for Isize<O>

Source§

fn shr_assign(&mut self, rhs: isize)

Performs the >>= operation. Read more
Source§

impl<O: ByteOrder> ShrAssign for Isize<O>

Source§

fn shr_assign(&mut self, rhs: Isize<O>)

Performs the >>= operation. Read more
Source§

impl<O: ByteOrder> Sub<Isize<O>> for isize

Source§

type Output = Isize<O>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Isize<O>) -> Isize<O>

Performs the - operation. Read more
Source§

impl<O: ByteOrder> Sub<isize> for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: isize) -> Isize<O>

Performs the - operation. Read more
Source§

impl<O: ByteOrder> Sub for Isize<O>

Source§

type Output = Isize<O>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Isize<O>) -> Isize<O>

Performs the - operation. Read more
Source§

impl<O: ByteOrder> SubAssign<Isize<O>> for isize

Source§

fn sub_assign(&mut self, rhs: Isize<O>)

Performs the -= operation. Read more
Source§

impl<O: ByteOrder> SubAssign<isize> for Isize<O>

Source§

fn sub_assign(&mut self, rhs: isize)

Performs the -= operation. Read more
Source§

impl<O: ByteOrder> SubAssign for Isize<O>

Source§

fn sub_assign(&mut self, rhs: Isize<O>)

Performs the -= operation. Read more
Source§

impl<O: ByteOrder, P: ByteOrder> TryFrom<Isize<P>> for I16<O>

Source§

type Error = TryFromIntError

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

fn try_from(x: Isize<P>) -> Result<I16<O>, TryFromIntError>

Performs the conversion.
Source§

impl<O> TryFromBytes for Isize<O>
where [u8; 8]: TryFromBytes, PhantomData<O>: TryFromBytes,

Source§

fn try_ref_from_bytes(source: &[u8]) -> Result<&Self, TryCastError<&[u8], Self>>
where Self: KnownLayout + Immutable,

Attempts to interpret the given source as a &Self. Read more
Source§

fn try_ref_from_prefix( source: &[u8], ) -> Result<(&Self, &[u8]), TryCastError<&[u8], Self>>
where Self: KnownLayout + Immutable,

Attempts to interpret the prefix of the given source as a &Self. Read more
Source§

fn try_ref_from_suffix( source: &[u8], ) -> Result<(&[u8], &Self), TryCastError<&[u8], Self>>
where Self: KnownLayout + Immutable,

Attempts to interpret the suffix of the given source as a &Self. Read more
Source§

fn try_mut_from_bytes( bytes: &mut [u8], ) -> Result<&mut Self, TryCastError<&mut [u8], Self>>
where Self: KnownLayout,

Attempts to interpret the given source as a &mut Self without copying. Read more
Source§

fn try_mut_from_prefix( source: &mut [u8], ) -> Result<(&mut Self, &mut [u8]), TryCastError<&mut [u8], Self>>
where Self: KnownLayout,

Attempts to interpret the prefix of the given source as a &mut Self. Read more
Source§

fn try_mut_from_suffix( source: &mut [u8], ) -> Result<(&mut [u8], &mut Self), TryCastError<&mut [u8], Self>>
where Self: KnownLayout,

Attempts to interpret the suffix of the given source as a &mut Self. Read more
Source§

fn try_read_from_bytes(source: &[u8]) -> Result<Self, TryReadError<&[u8], Self>>
where Self: Sized,

Attempts to read the given source as a Self. Read more
Source§

fn try_read_from_prefix( source: &[u8], ) -> Result<(Self, &[u8]), TryReadError<&[u8], Self>>
where Self: Sized,

Attempts to read a Self from the prefix of the given source. Read more
Source§

fn try_read_from_suffix( source: &[u8], ) -> Result<(&[u8], Self), TryReadError<&[u8], Self>>
where Self: Sized,

Attempts to read a Self from the suffix of the given source. Read more
Source§

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

Source§

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

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

impl<O: Copy> Copy for Isize<O>

Source§

impl<O: Eq> Eq for Isize<O>

Source§

impl<O> Immutable for Isize<O>
where [u8; 8]: Immutable, PhantomData<O>: Immutable,

Source§

impl<O> StructuralPartialEq for Isize<O>

Source§

impl<O> Unaligned for Isize<O>
where [u8; 8]: Unaligned, PhantomData<O>: Unaligned,

Auto Trait Implementations§

§

impl<O> Freeze for Isize<O>

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.