pub struct ClientHello {
pub random: [u8; 32],
pub session_id: Vec<u8>,
pub cookie: Vec<u8>,
pub cipher_suites: Vec<u16>,
pub compression_methods: Vec<u8>,
pub extensions: Vec<Extension>,
}
Fields§
§random: [u8; 32]
§session_id: Vec<u8>
§cipher_suites: Vec<u16>
§compression_methods: Vec<u8>
§extensions: Vec<Extension>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClientHello
impl RefUnwindSafe for ClientHello
impl Send for ClientHello
impl Sync for ClientHello
impl Unpin for ClientHello
impl UnwindSafe for ClientHello
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