pub struct IdentificationNumber {
pub number: u32,
}
Fields§
§number: u32
Implementations§
Source§impl IdentificationNumber
impl IdentificationNumber
pub fn from_bcd_hex_digits( digits: [u8; 4], ) -> Result<Self, ApplicationLayerError>
Trait Implementations§
Source§impl Debug for IdentificationNumber
impl Debug for IdentificationNumber
Source§impl From<IdentificationNumber> for u32
impl From<IdentificationNumber> for u32
Source§fn from(id: IdentificationNumber) -> Self
fn from(id: IdentificationNumber) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IdentificationNumber
impl PartialEq for IdentificationNumber
impl StructuralPartialEq for IdentificationNumber
Auto Trait Implementations§
impl Freeze for IdentificationNumber
impl RefUnwindSafe for IdentificationNumber
impl Send for IdentificationNumber
impl Sync for IdentificationNumber
impl Unpin for IdentificationNumber
impl UnwindSafe for IdentificationNumber
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