pub type U64 = U64<NetworkEndian>;
Expand description

A 64-bit unsigned integer stored in network-endian byte order.

Aliased Type§

struct U64(/* private fields */);

Implementations§

source§

impl<O> U64<O>

source

pub const ZERO: U64<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: U64<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; 8]) -> U64<O>

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

source§

impl<O: ByteOrder> U64<O>

source

pub fn new(n: u64) -> U64<O>

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

source

pub fn get(self) -> u64

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

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<U64<O>> for U64<O>

§

type Output = U64<O>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

source§

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

Performs the += operation. Read more
source§

impl<O> AsBytes for U64<O>where [u8; 8]: AsBytes, PhantomData<O>: 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(&self, bytes: &mut [u8]) -> Option<()>

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

fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>

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

fn write_to_suffix(&self, bytes: &mut [u8]) -> Option<()>

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

impl<O: ByteOrder> AsMut<[u8; 8]> for U64<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: ByteOrder> AsRef<[u8; 8]> for U64<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 U64<O>

source§

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

Formats the value using the given formatter.
source§

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

§

type Output = U64<O>

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

source§

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

Performs the &= operation. Read more
source§

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

§

type Output = U64<O>

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

source§

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

Performs the |= operation. Read more
source§

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

§

type Output = U64<O>

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

source§

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

Performs the ^= operation. Read more
source§

impl<O: Clone> Clone for U64<O>

source§

fn clone(&self) -> U64<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 U64<O>

source§

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

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

impl<O> Default for U64<O>

source§

fn default() -> U64<O>

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

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

source§

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

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

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

§

type Output = U64<O>

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

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

source§

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

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, P: ByteOrder> From<U32<O>> for U64<P>

source§

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

Converts to this type from the input type.
source§

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

source§

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

Converts to this type from the input type.
source§

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

source§

fn ref_from(bytes: &[u8]) -> Option<&Self>where Self: Sized,

Interprets the given bytes as a &Self without copying. Read more
source§

fn ref_from_prefix(bytes: &[u8]) -> Option<&Self>where Self: Sized,

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

fn ref_from_suffix(bytes: &[u8]) -> Option<&Self>where Self: Sized,

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

fn mut_from(bytes: &mut [u8]) -> Option<&mut Self>where Self: Sized + AsBytes,

Interprets the given bytes as a &mut Self without copying. Read more
source§

fn mut_from_prefix(bytes: &mut [u8]) -> Option<&mut Self>where Self: Sized + AsBytes,

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

fn mut_from_suffix(bytes: &mut [u8]) -> Option<&mut Self>where Self: Sized + AsBytes,

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

fn slice_from(bytes: &[u8]) -> Option<&[Self]>where Self: Sized,

Interprets the given bytes as a &[Self] without copying. Read more
source§

fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where Self: Sized,

Interprets the prefix of the given bytes as a &[Self] with length equal to count without copying. Read more
source§

fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where Self: Sized,

Interprets the suffix of the given bytes as a &[Self] with length equal to count without copying. Read more
source§

fn mut_slice_from(bytes: &mut [u8]) -> Option<&mut [Self]>where Self: Sized + AsBytes,

Interprets the given bytes as a &mut [Self] without copying. Read more
source§

fn mut_slice_from_prefix( bytes: &mut [u8], count: usize ) -> Option<(&mut [Self], &mut [u8])>where Self: Sized + AsBytes,

Interprets the prefix of the given bytes as a &mut [Self] with length equal to count without copying. Read more
source§

fn mut_slice_from_suffix( bytes: &mut [u8], count: usize ) -> Option<(&mut [u8], &mut [Self])>where Self: Sized + AsBytes,

Interprets the suffix of the given bytes as a &mut [Self] with length equal to count without copying. Read more
source§

fn read_from(bytes: &[u8]) -> Option<Self>where Self: Sized,

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

fn read_from_prefix(bytes: &[u8]) -> Option<Self>where Self: Sized,

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

fn read_from_suffix(bytes: &[u8]) -> Option<Self>where Self: Sized,

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

impl<O> FromZeroes for U64<O>where [u8; 8]: FromZeroes, PhantomData<O>: FromZeroes,

source§

fn zero(&mut self)

Overwrites self with zeroes. Read more
source§

fn new_zeroed() -> Selfwhere Self: Sized,

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

impl<O: Hash> Hash for U64<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 U64<O>

source§

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

Formats the value using the given formatter.
source§

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

§

type Output = U64<O>

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

source§

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

Performs the *= operation. Read more
source§

impl<O> Not for U64<O>

§

type Output = U64<O>

The resulting type after applying the ! operator.
source§

fn not(self) -> U64<O>

Performs the unary ! operation. Read more
source§

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

source§

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

Formats the value using the given formatter.
source§

impl<O: ByteOrder> PartialEq<[u8; 8]> for U64<O>

source§

fn eq(&self, other: &[u8; 8]) -> 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<U64<O>> for U64<O>

source§

fn eq(&self, other: &U64<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> Rem<U64<O>> for U64<O>

§

type Output = U64<O>

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

source§

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

Performs the %= operation. Read more
source§

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

§

type Output = U64<O>

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

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

Performs the << operation. Read more
source§

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

source§

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

Performs the <<= operation. Read more
source§

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

§

type Output = U64<O>

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

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

Performs the >> operation. Read more
source§

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

source§

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

Performs the >>= operation. Read more
source§

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

§

type Output = U64<O>

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

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

source§

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

Performs the -= operation. Read more
source§

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

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

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

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

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

source§

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

Formats the value using the given formatter.
source§

impl<O: Copy> Copy for U64<O>

source§

impl<O: Eq> Eq for U64<O>

source§

impl<O> StructuralEq for U64<O>

source§

impl<O> StructuralPartialEq for U64<O>

source§

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