pub struct LinkInfoEntry {
pub link_id: [u8; 16],
pub state: String,
pub is_initiator: bool,
pub dest_hash: [u8; 16],
pub remote_identity: Option<[u8; 16]>,
pub rtt: Option<f64>,
}Expand description
Information about an active link.
Fields§
§link_id: [u8; 16]§state: String§is_initiator: bool§dest_hash: [u8; 16]§remote_identity: Option<[u8; 16]>§rtt: Option<f64>Trait Implementations§
Source§impl Clone for LinkInfoEntry
impl Clone for LinkInfoEntry
Source§fn clone(&self) -> LinkInfoEntry
fn clone(&self) -> LinkInfoEntry
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 moreAuto Trait Implementations§
impl Freeze for LinkInfoEntry
impl RefUnwindSafe for LinkInfoEntry
impl Send for LinkInfoEntry
impl Sync for LinkInfoEntry
impl Unpin for LinkInfoEntry
impl UnwindSafe for LinkInfoEntry
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