#[repr(C)]pub struct mss_mac_tx_desc {
pub addr_low: u32,
pub status: u32,
pub addr_high: u32,
pub unused: u32,
pub nano_seconds: u32,
pub seconds: u32,
}Fields§
§addr_low: u32< Buffer address low portion
status: u32< Status and options for transmit operation
addr_high: u32< High portion of address in 64bit addressing mode
unused: u32< Unused word in 64bit mode
nano_seconds: u32< Nanoseconds and LSBs of seconds for timestamp
seconds: u32< MSBs of timestamp seconds
Trait Implementations§
Source§impl Clone for mss_mac_tx_desc
impl Clone for mss_mac_tx_desc
Source§fn clone(&self) -> mss_mac_tx_desc
fn clone(&self) -> mss_mac_tx_desc
Returns a duplicate 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 mss_mac_tx_desc
impl Debug for mss_mac_tx_desc
impl Copy for mss_mac_tx_desc
Auto Trait Implementations§
impl Freeze for mss_mac_tx_desc
impl RefUnwindSafe for mss_mac_tx_desc
impl Send for mss_mac_tx_desc
impl Sync for mss_mac_tx_desc
impl Unpin for mss_mac_tx_desc
impl UnwindSafe for mss_mac_tx_desc
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