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