pub struct LinkEventRecord {
pub link_id: String,
pub event_type: String,
pub is_initiator: Option<bool>,
pub rtt: Option<f64>,
pub identity_hash: Option<String>,
pub reason: Option<String>,
}Fields§
§link_id: String§event_type: String§is_initiator: Option<bool>§rtt: Option<f64>§identity_hash: Option<String>§reason: Option<String>Trait Implementations§
Source§impl Clone for LinkEventRecord
impl Clone for LinkEventRecord
Source§fn clone(&self) -> LinkEventRecord
fn clone(&self) -> LinkEventRecord
Returns a duplicate 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 LinkEventRecord
impl Debug for LinkEventRecord
Auto Trait Implementations§
impl Freeze for LinkEventRecord
impl RefUnwindSafe for LinkEventRecord
impl Send for LinkEventRecord
impl Sync for LinkEventRecord
impl Unpin for LinkEventRecord
impl UnsafeUnpin for LinkEventRecord
impl UnwindSafe for LinkEventRecord
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,
Source§impl<T> InterfaceConfigData for Twhere
T: Send + 'static,
impl<T> InterfaceConfigData for Twhere
T: Send + 'static,
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