#[repr(C)]
pub struct otNetifAddress { pub mAddress: otIp6Address, pub mPrefixLength: u8, pub mAddressOrigin: u8, pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>, pub mNext: *const otNetifAddress, }
Expand description

Represents an IPv6 network interface unicast address.

Fields§

§mAddress: otIp6Address

< The IPv6 unicast address.

§mPrefixLength: u8

< The Prefix length (in bits).

§mAddressOrigin: u8

< The IPv6 address origin.

§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 2]>§mNext: *const otNetifAddress

< A pointer to the next network interface address.

Implementations§

source§

impl otNetifAddress

source

pub fn mPreferred(&self) -> bool

source

pub fn set_mPreferred(&mut self, val: bool)

source

pub fn mValid(&self) -> bool

source

pub fn set_mValid(&mut self, val: bool)

source

pub fn mScopeOverrideValid(&self) -> bool

source

pub fn set_mScopeOverrideValid(&mut self, val: bool)

source

pub fn mScopeOverride(&self) -> c_uint

source

pub fn set_mScopeOverride(&mut self, val: c_uint)

source

pub fn mRloc(&self) -> bool

source

pub fn set_mRloc(&mut self, val: bool)

source

pub fn mMeshLocal(&self) -> bool

source

pub fn set_mMeshLocal(&mut self, val: bool)

source

pub fn mSrpRegistered(&self) -> bool

source

pub fn set_mSrpRegistered(&mut self, val: bool)

source

pub fn new_bitfield_1( mPreferred: bool, mValid: bool, mScopeOverrideValid: bool, mScopeOverride: c_uint, mRloc: bool, mMeshLocal: bool, mSrpRegistered: bool ) -> __BindgenBitfieldUnit<[u8; 2]>

Trait Implementations§

source§

impl Clone for otNetifAddress

source§

fn clone(&self) -> otNetifAddress

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 otNetifAddress

source§

fn default() -> Self

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

impl Copy for otNetifAddress

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.