pub struct LinkRttOwed {
pub link_id: LinkId,
pub received_hops: u8,
pub responder_encryption: X25519PublicKey,
pub responder_signing: Ed25519PublicKey,
pub command_id: CommandId,
pub rtt: RttMillis,
pub mtu: usize,
}Fields§
§link_id: LinkId§received_hops: u8§responder_encryption: X25519PublicKey§responder_signing: Ed25519PublicKey§command_id: CommandId§rtt: RttMillis§mtu: usizeTrait Implementations§
Source§impl Clone for LinkRttOwed
impl Clone for LinkRttOwed
Source§fn clone(&self) -> LinkRttOwed
fn clone(&self) -> LinkRttOwed
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LinkRttOwed
Source§impl Debug for LinkRttOwed
impl Debug for LinkRttOwed
impl Eq for LinkRttOwed
Source§impl PartialEq for LinkRttOwed
impl PartialEq for LinkRttOwed
impl StructuralPartialEq for LinkRttOwed
Auto Trait Implementations§
impl Freeze for LinkRttOwed
impl RefUnwindSafe for LinkRttOwed
impl Send for LinkRttOwed
impl Sync for LinkRttOwed
impl Unpin for LinkRttOwed
impl UnsafeUnpin for LinkRttOwed
impl UnwindSafe for LinkRttOwed
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