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 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