Struct ATM_ADDRESS
#[repr(C)]pub struct ATM_ADDRESS {
pub AddressType: u32,
pub NumofDigits: u32,
pub Addr: [u8; 20],
}
Fields§
§AddressType: u32
§NumofDigits: u32
§Addr: [u8; 20]
Trait Implementations§
§impl Clone for ATM_ADDRESS
impl Clone for ATM_ADDRESS
§fn clone(&self) -> ATM_ADDRESS
fn clone(&self) -> ATM_ADDRESS
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 moreimpl Copy for ATM_ADDRESS
Auto Trait Implementations§
impl Freeze for ATM_ADDRESS
impl RefUnwindSafe for ATM_ADDRESS
impl Send for ATM_ADDRESS
impl Sync for ATM_ADDRESS
impl Unpin for ATM_ADDRESS
impl UnwindSafe for ATM_ADDRESS
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