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