pub struct NeighborInfoDto {
pub mac_address: Option<[u8; 8]>,
pub short_address: Option<u16>,
pub age: Option<i64>,
pub is_child: Option<bool>,
pub link_frame_count: Option<u32>,
pub mgmt_frame_count: Option<u32>,
pub last_rssi_in: Option<i32>,
pub avg_rssi_in: Option<i8>,
pub lqi_in: Option<u8>,
pub thread_mode: Option<u8>,
}
Fields§
§mac_address: Option<[u8; 8]>
§short_address: Option<u16>
§age: Option<i64>
§is_child: Option<bool>
§link_frame_count: Option<u32>
§mgmt_frame_count: Option<u32>
§last_rssi_in: Option<i32>
§avg_rssi_in: Option<i8>
§lqi_in: Option<u8>
§thread_mode: Option<u8>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NeighborInfoDto
impl<'de> Deserialize<'de> for NeighborInfoDto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Into<NeighborInfo> for NeighborInfoDto
impl Into<NeighborInfo> for NeighborInfoDto
Source§fn into(self) -> NeighborInfo
fn into(self) -> NeighborInfo
Converts this type into the (usually inferred) input type.
Source§impl Into<NeighborInfoDto> for NeighborInfo
impl Into<NeighborInfoDto> for NeighborInfo
Source§fn into(self) -> NeighborInfoDto
fn into(self) -> NeighborInfoDto
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for NeighborInfoDto
impl RefUnwindSafe for NeighborInfoDto
impl Send for NeighborInfoDto
impl Sync for NeighborInfoDto
impl Unpin for NeighborInfoDto
impl UnwindSafe for NeighborInfoDto
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> OptionalField for Twhere
T: ?Sized,
impl<T> OptionalField for Twhere
T: ?Sized,
§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T, U> TryIntoExt<U> for Twhere
U: TryFromExt<T>,
impl<T, U> TryIntoExt<U> for Twhere
U: TryFromExt<T>,
type Error = <U as TryFromExt<T>>::Error
Source§fn try_into_ext(self) -> Result<U, <T as TryIntoExt<U>>::Error>
fn try_into_ext(self) -> Result<U, <T as TryIntoExt<U>>::Error>
Tries to perform the conversion.