Struct sep2_common::packages::primitives::HexBinary128
source · pub struct HexBinary128(pub u128);
Expand description
A 128-bit field encoded as a hex string (32 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: u128
Trait Implementations§
source§impl Clone for HexBinary128
impl Clone for HexBinary128
source§fn clone(&self) -> HexBinary128
fn clone(&self) -> HexBinary128
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 HexBinary128
impl Debug for HexBinary128
source§impl Default for HexBinary128
impl Default for HexBinary128
source§fn default() -> HexBinary128
fn default() -> HexBinary128
Returns the “default value” for a type. Read more
source§impl Display for HexBinary128
impl Display for HexBinary128
source§impl FromStr for HexBinary128
impl FromStr for HexBinary128
source§impl Hash for HexBinary128
impl Hash for HexBinary128
source§impl Ord for HexBinary128
impl Ord for HexBinary128
source§fn cmp(&self, other: &HexBinary128) -> Ordering
fn cmp(&self, other: &HexBinary128) -> 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<HexBinary128> for HexBinary128
impl PartialEq<HexBinary128> for HexBinary128
source§fn eq(&self, other: &HexBinary128) -> bool
fn eq(&self, other: &HexBinary128) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<HexBinary128> for HexBinary128
impl PartialOrd<HexBinary128> for HexBinary128
source§fn partial_cmp(&self, other: &HexBinary128) -> Option<Ordering>
fn partial_cmp(&self, other: &HexBinary128) -> 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 HexBinary128
impl YaDeserialize for HexBinary128
source§impl YaSerialize for HexBinary128
impl YaSerialize for HexBinary128
impl Copy for HexBinary128
impl Eq for HexBinary128
impl StructuralEq for HexBinary128
impl StructuralPartialEq for HexBinary128
Auto Trait Implementations§
impl RefUnwindSafe for HexBinary128
impl Send for HexBinary128
impl Sync for HexBinary128
impl Unpin for HexBinary128
impl UnwindSafe for HexBinary128
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