Skip to main content

_vnet_hw_interface_class

Struct _vnet_hw_interface_class 

Source
#[repr(C)]
pub struct _vnet_hw_interface_class {
Show 21 fields pub index: u32_, pub name: *mut c_char, pub flags: vnet_hw_interface_class_flags_t, pub tx_hash_fn_type: vnet_hash_fn_type_t, pub interface_add_del_function: vnet_interface_function_t, pub admin_up_down_function: vnet_interface_function_t, pub link_up_down_function: vnet_interface_function_t, pub mac_addr_change_function: vnet_interface_set_mac_address_function_t, pub mac_addr_add_del_function: vnet_interface_add_del_mac_address_function_t, pub set_max_frame_size: vnet_interface_set_max_frame_size_function_t, pub format_interface_name: format_function_t, pub format_address: format_function_t, pub format_header: format_function_t, pub format_device: format_function_t, pub unformat_hw_address: unformat_function_t, pub unformat_header: unformat_function_t, pub build_rewrite: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, sw_if_index: u32_, link_type: vnet_link_t, dst_hw_address: *const c_void) -> *mut u8_>, pub update_adjacency: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, sw_if_index: u32_, adj_index: u32_)>, pub is_valid_class_for_interface: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, hw_if_index: u32_, hw_class_index: u32_) -> uword>, pub hw_class_change: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, hw_if_index: u32_, old_class_index: u32_, new_class_index: u32_)>, pub next_class_registration: *mut _vnet_hw_interface_class,
}

Fields§

§index: u32_§name: *mut c_char§flags: vnet_hw_interface_class_flags_t§tx_hash_fn_type: vnet_hash_fn_type_t§interface_add_del_function: vnet_interface_function_t§admin_up_down_function: vnet_interface_function_t§link_up_down_function: vnet_interface_function_t§mac_addr_change_function: vnet_interface_set_mac_address_function_t§mac_addr_add_del_function: vnet_interface_add_del_mac_address_function_t§set_max_frame_size: vnet_interface_set_max_frame_size_function_t§format_interface_name: format_function_t§format_address: format_function_t§format_header: format_function_t§format_device: format_function_t§unformat_hw_address: unformat_function_t§unformat_header: unformat_function_t§build_rewrite: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, sw_if_index: u32_, link_type: vnet_link_t, dst_hw_address: *const c_void) -> *mut u8_>§update_adjacency: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, sw_if_index: u32_, adj_index: u32_)>§is_valid_class_for_interface: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, hw_if_index: u32_, hw_class_index: u32_) -> uword>§hw_class_change: Option<unsafe extern "C" fn(vnm: *mut vnet_main_t, hw_if_index: u32_, old_class_index: u32_, new_class_index: u32_)>§next_class_registration: *mut _vnet_hw_interface_class

Trait Implementations§

Source§

impl Clone for _vnet_hw_interface_class

Source§

fn clone(&self) -> _vnet_hw_interface_class

Returns a duplicate 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 _vnet_hw_interface_class

Source§

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

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

impl Default for _vnet_hw_interface_class

Source§

fn default() -> Self

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

impl Copy for _vnet_hw_interface_class

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, dest: *mut u8)

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

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.