Struct tinydtls_sys::dtls_client_hello_t
source · #[repr(C, packed)]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
sourceimpl Clone for dtls_client_hello_t
impl Clone for dtls_client_hello_t
sourcefn clone(&self) -> dtls_client_hello_t
fn clone(&self) -> dtls_client_hello_t
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for dtls_client_hello_t
impl Debug for dtls_client_hello_t
impl Copy for dtls_client_hello_t
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more