Struct riot_sys::gnrc_netif_t

source ·
#[repr(C)]
pub struct gnrc_netif_t {
Show 14 fields pub netif: netif_t, pub ops: *const gnrc_netif_ops_t, pub dev: *mut netdev_t, pub mutex: rmutex_t, pub ipv6: gnrc_netif_ipv6_t, pub flags: u32, pub evq: [event_queue_t; 1], pub event_isr: event_t, pub l2addr: [u8; 8], pub l2addr_len: u8, pub msg_queue: [msg_t; 16], pub cur_hl: u8, pub device_type: u8, pub pid: kernel_pid_t,
}
Expand description

@brief Representation of a network interface

Fields§

§netif: netif_t

< network interface descriptor

§ops: *const gnrc_netif_ops_t

< Operations of the network interface

§dev: *mut netdev_t

< Network device of the network interface

§mutex: rmutex_t

< Mutex of the interface

§ipv6: gnrc_netif_ipv6_t

< IPv6 component

§flags: u32

@brief Flags for the interface

@see net_gnrc_netif_flags

§evq: [event_queue_t; 1]

@brief Event queue for asynchronous events

§event_isr: event_t

@brief ISR event for the network device

§l2addr: [u8; 8]

@brief The link-layer address currently used as the source address on this interface.

@note Only available if @ref GNRC_NETIF_L2ADDR_MAXLEN > 0

§l2addr_len: u8

@brief Length in bytes of gnrc_netif_t::l2addr

@note Only available if @ref GNRC_NETIF_L2ADDR_MAXLEN > 0

§msg_queue: [msg_t; 16]

@brief Message queue for the netif thread

§cur_hl: u8

< Current hop-limit for out-going packets

§device_type: u8

< Device type

§pid: kernel_pid_t

< PID of the network interface’s thread

Trait Implementations§

source§

impl Clone for gnrc_netif_t

source§

fn clone(&self) -> gnrc_netif_t

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for gnrc_netif_t

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for gnrc_netif_t

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for gnrc_netif_t

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.