#[repr(C)]
pub struct otBorderRoutingPrefixTableEntry { pub mRouter: otBorderRoutingRouterEntry, pub mPrefix: otIp6Prefix, pub mIsOnLink: bool, pub mMsecSinceLastUpdate: u32, pub mValidLifetime: u32, pub mRoutePreference: otRoutePreference, pub mPreferredLifetime: u32, }
Expand description

Represents an entry from the discovered prefix table.

The entries in the discovered table track the Prefix/Route Info Options in the received Router Advertisement messages from other routers on the infrastructure link.

Fields§

§mRouter: otBorderRoutingRouterEntry

< Information about the router advertising this prefix.

§mPrefix: otIp6Prefix

< The discovered IPv6 prefix.

§mIsOnLink: bool

< Indicates whether the prefix is on-link or route prefix.

§mMsecSinceLastUpdate: u32

< Milliseconds since last update of this prefix.

§mValidLifetime: u32

< Valid lifetime of the prefix (in seconds).

§mRoutePreference: otRoutePreference

< Route preference when mIsOnlink is false.

§mPreferredLifetime: u32

< Preferred lifetime of the on-link prefix when mIsOnLink.

Trait Implementations§

source§

impl Clone for otBorderRoutingPrefixTableEntry

source§

fn clone(&self) -> otBorderRoutingPrefixTableEntry

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 Default for otBorderRoutingPrefixTableEntry

source§

fn default() -> Self

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

impl Copy for otBorderRoutingPrefixTableEntry

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> ToOwned for T
where T: Clone,

§

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

§

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.