pub struct DisconnectInfo {
pub iface_id: u16,
pub connected_duration: MonotonicDuration,
pub is_sme_reconnecting: bool,
pub disconnect_source: DisconnectSource,
pub original_bss_desc: Box<BssDescription>,
pub current_rssi_dbm: i8,
pub current_snr_db: i8,
pub current_channel: Channel,
}
Fields§
§iface_id: u16
§connected_duration: MonotonicDuration
§is_sme_reconnecting: bool
§disconnect_source: DisconnectSource
§original_bss_desc: Box<BssDescription>
§current_rssi_dbm: i8
§current_snr_db: i8
§current_channel: Channel
Trait Implementations§
Source§impl Clone for DisconnectInfo
impl Clone for DisconnectInfo
Source§fn clone(&self) -> DisconnectInfo
fn clone(&self) -> DisconnectInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DisconnectInfo
impl Debug for DisconnectInfo
Source§impl PartialEq for DisconnectInfo
impl PartialEq for DisconnectInfo
impl StructuralPartialEq for DisconnectInfo
Auto Trait Implementations§
impl Freeze for DisconnectInfo
impl RefUnwindSafe for DisconnectInfo
impl Send for DisconnectInfo
impl Sync for DisconnectInfo
impl Unpin for DisconnectInfo
impl UnwindSafe for DisconnectInfo
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> IntoAny for T
impl<T> IntoAny for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more