pub struct KexDHReply<'a> {
pub k_s: Blob<PubKey<'a>>,
pub q_s: BinString<'a>,
pub sig: Blob<Signature<'a>>,
}Fields§
§k_s: Blob<PubKey<'a>>§q_s: BinString<'a>§sig: Blob<Signature<'a>>Trait Implementations§
Source§impl<'a> Debug for KexDHReply<'a>
impl<'a> Debug for KexDHReply<'a>
Source§impl<'a> From<KexDHReply<'a>> for Packet<'a>
impl<'a> From<KexDHReply<'a>> for Packet<'a>
Source§fn from(s: KexDHReply<'a>) -> Packet<'a>
fn from(s: KexDHReply<'a>) -> Packet<'a>
Converts to this type from the input type.
Source§impl<'de, 'a> SSHDecode<'de> for KexDHReply<'a>where
'de: 'a,
impl<'de, 'a> SSHDecode<'de> for KexDHReply<'a>where
'de: 'a,
Auto Trait Implementations§
impl<'a> Freeze for KexDHReply<'a>
impl<'a> RefUnwindSafe for KexDHReply<'a>
impl<'a> Send for KexDHReply<'a>
impl<'a> Sync for KexDHReply<'a>
impl<'a> Unpin for KexDHReply<'a>
impl<'a> UnwindSafe for KexDHReply<'a>
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