pub struct LinkRequest {
pub destination: DestinationHash,
pub link_id: LinkId,
pub initiator_encryption: X25519PublicKey,
pub initiator_signing: Ed25519PublicKey,
pub mtu: usize,
pub mode: LinkMode,
pub signalled: bool,
}Fields§
§destination: DestinationHash§link_id: LinkId§initiator_encryption: X25519PublicKey§initiator_signing: Ed25519PublicKey§mtu: usize§mode: LinkMode§signalled: boolTrait Implementations§
Source§impl Clone for LinkRequest
impl Clone for LinkRequest
Source§fn clone(&self) -> LinkRequest
fn clone(&self) -> LinkRequest
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 LinkRequest
Source§impl Debug for LinkRequest
impl Debug for LinkRequest
impl Eq for LinkRequest
Source§impl PartialEq for LinkRequest
impl PartialEq for LinkRequest
impl StructuralPartialEq for LinkRequest
Auto Trait Implementations§
impl Freeze for LinkRequest
impl RefUnwindSafe for LinkRequest
impl Send for LinkRequest
impl Sync for LinkRequest
impl Unpin for LinkRequest
impl UnsafeUnpin for LinkRequest
impl UnwindSafe for LinkRequest
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