#[repr(C, packed(1))]pub struct dtls_client_hello_t {
pub version: uint16,
pub gmt_random: uint32,
pub random: [c_uchar; 28],
}Expand description
Structure of the Client Hello message.
Fields§
§version: uint16< Client version
gmt_random: uint32< GMT time of the random byte creation
random: [c_uchar; 28]< Client random bytes
Trait Implementations§
Source§impl Clone for dtls_client_hello_t
impl Clone for dtls_client_hello_t
Source§fn clone(&self) -> dtls_client_hello_t
fn clone(&self) -> dtls_client_hello_t
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 moreSource§impl Debug for dtls_client_hello_t
impl Debug for dtls_client_hello_t
impl Copy for dtls_client_hello_t
Auto Trait Implementations§
impl Freeze for dtls_client_hello_t
impl RefUnwindSafe for dtls_client_hello_t
impl Send for dtls_client_hello_t
impl Sync for dtls_client_hello_t
impl Unpin for dtls_client_hello_t
impl UnwindSafe for dtls_client_hello_t
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