Struct r_efi::protocols::ip6::ModeData

source ·
#[repr(C)]
pub struct ModeData {
Show 16 fields pub is_started: Boolean, pub max_packet_size: u32, pub config_data: ConfigData, pub is_configured: Boolean, pub address_count: u32, pub address_list: *mut AddressInfo, pub group_count: u32, pub group_table: *mut Ipv6Address, pub route_count: u32, pub route_table: *mut RouteTable, pub neighbor_count: u32, pub neighbor_cache: *mut NeighborCache, pub prefix_count: u32, pub prefix_table: *mut AddressInfo, pub icmp_type_count: u32, pub icmp_type_list: *mut IcmpType,
}

Fields§

§is_started: Boolean§max_packet_size: u32§config_data: ConfigData§is_configured: Boolean§address_count: u32§address_list: *mut AddressInfo§group_count: u32§group_table: *mut Ipv6Address§route_count: u32§route_table: *mut RouteTable§neighbor_count: u32§neighbor_cache: *mut NeighborCache§prefix_count: u32§prefix_table: *mut AddressInfo§icmp_type_count: u32§icmp_type_list: *mut IcmpType

Trait Implementations§

source§

impl Clone for ModeData

source§

fn clone(&self) -> ModeData

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 ModeData

source§

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

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

impl Copy for ModeData

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> 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>,

§

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>,

§

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.