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