#[repr(C)]
pub struct otDnsServiceInfo { pub mTtl: u32, pub mPort: u16, pub mPriority: u16, pub mWeight: u16, pub mHostNameBuffer: *mut c_char, pub mHostNameBufferSize: u16, pub mHostAddress: otIp6Address, pub mHostAddressTtl: u32, pub mTxtData: *mut u8, pub mTxtDataSize: u16, pub mTxtDataTruncated: bool, pub mTxtDataTtl: u32, }
Expand description

Provides info for a DNS service instance.

Fields§

§mTtl: u32

< Service record TTL (in seconds).

§mPort: u16

< Service port number.

§mPriority: u16

< Service priority.

§mWeight: u16

< Service weight.

§mHostNameBuffer: *mut c_char

< Buffer to output the service host name (can be NULL if not needed).

§mHostNameBufferSize: u16

< Size of mHostNameBuffer.

§mHostAddress: otIp6Address

< The host IPv6 address. Set to all zero if not available.

§mHostAddressTtl: u32

< The host address TTL.

§mTxtData: *mut u8

< Buffer to output TXT data (can be NULL if not needed).

§mTxtDataSize: u16

< On input, size of mTxtData buffer. On output number bytes written.

§mTxtDataTruncated: bool

< Indicates if TXT data could not fit in mTxtDataSize and was truncated.

§mTxtDataTtl: u32

< The TXT data TTL.

Trait Implementations§

source§

impl Clone for otDnsServiceInfo

source§

fn clone(&self) -> otDnsServiceInfo

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 otDnsServiceInfo

source§

fn default() -> Self

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

impl Copy for otDnsServiceInfo

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.