#[repr(C)]pub struct mss_mac_tx_pkt_info {
pub queue_no: u32,
pub length: u32,
pub tx_buffer: *mut u8,
pub p_user_data: *mut c_void,
}Fields§
§queue_no: u32< Queue number for this packet
length: u32< Length of this packet - 0 for end of list
tx_buffer: *mut u8< Pointer to packet data - 0 for end of list
p_user_data: *mut c_void< Pointer to user data for this packet
Trait Implementations§
Source§impl Clone for mss_mac_tx_pkt_info
impl Clone for mss_mac_tx_pkt_info
Source§fn clone(&self) -> mss_mac_tx_pkt_info
fn clone(&self) -> mss_mac_tx_pkt_info
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_pkt_info
impl Debug for mss_mac_tx_pkt_info
impl Copy for mss_mac_tx_pkt_info
Auto Trait Implementations§
impl Freeze for mss_mac_tx_pkt_info
impl RefUnwindSafe for mss_mac_tx_pkt_info
impl !Send for mss_mac_tx_pkt_info
impl !Sync for mss_mac_tx_pkt_info
impl Unpin for mss_mac_tx_pkt_info
impl UnwindSafe for mss_mac_tx_pkt_info
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