Struct sep2_common::packages::primitives::HexBinary64
source · pub struct HexBinary64(pub u64);
Expand description
A 64-bit field encoded as a hex string (16 hex characters max). Where applicable, bit 0, or the least significant bit, goes on the right. Note that hexBinary requires pairs of hex characters, so an odd number of characters requires a leading “0”.
Tuple Fields§
§0: u64
Trait Implementations§
source§impl Clone for HexBinary64
impl Clone for HexBinary64
source§fn clone(&self) -> HexBinary64
fn clone(&self) -> HexBinary64
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 Debug for HexBinary64
impl Debug for HexBinary64
source§impl Default for HexBinary64
impl Default for HexBinary64
source§fn default() -> HexBinary64
fn default() -> HexBinary64
Returns the “default value” for a type. Read more
source§impl Display for HexBinary64
impl Display for HexBinary64
source§impl FromStr for HexBinary64
impl FromStr for HexBinary64
source§impl Hash for HexBinary64
impl Hash for HexBinary64
source§impl Ord for HexBinary64
impl Ord for HexBinary64
source§fn cmp(&self, other: &HexBinary64) -> Ordering
fn cmp(&self, other: &HexBinary64) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<HexBinary64> for HexBinary64
impl PartialEq<HexBinary64> for HexBinary64
source§fn eq(&self, other: &HexBinary64) -> bool
fn eq(&self, other: &HexBinary64) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<HexBinary64> for HexBinary64
impl PartialOrd<HexBinary64> for HexBinary64
source§fn partial_cmp(&self, other: &HexBinary64) -> Option<Ordering>
fn partial_cmp(&self, other: &HexBinary64) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl YaDeserialize for HexBinary64
impl YaDeserialize for HexBinary64
source§impl YaSerialize for HexBinary64
impl YaSerialize for HexBinary64
impl Copy for HexBinary64
impl Eq for HexBinary64
impl StructuralEq for HexBinary64
impl StructuralPartialEq for HexBinary64
Auto Trait Implementations§
impl RefUnwindSafe for HexBinary64
impl Send for HexBinary64
impl Sync for HexBinary64
impl Unpin for HexBinary64
impl UnwindSafe for HexBinary64
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