riot_sys

Struct 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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 352 bytes