#[repr(C)]pub struct ssl_key_set {
pub client_write_key: [c_uchar; 32],
pub server_write_key: [c_uchar; 32],
pub client_write_iv: [c_uchar; 16],
pub server_write_iv: [c_uchar; 16],
pub key_len: usize,
pub iv_len: usize,
}Fields§
§client_write_key: [c_uchar; 32]§server_write_key: [c_uchar; 32]§client_write_iv: [c_uchar; 16]§server_write_iv: [c_uchar; 16]§key_len: usize§iv_len: usizeTrait Implementations§
Source§impl Clone for ssl_key_set
impl Clone for ssl_key_set
Source§fn clone(&self) -> ssl_key_set
fn clone(&self) -> ssl_key_set
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 Default for ssl_key_set
impl Default for ssl_key_set
Source§fn default() -> ssl_key_set
fn default() -> ssl_key_set
Returns the “default value” for a type. Read more
impl Copy for ssl_key_set
Auto Trait Implementations§
impl Freeze for ssl_key_set
impl RefUnwindSafe for ssl_key_set
impl Send for ssl_key_set
impl Sync for ssl_key_set
impl Unpin for ssl_key_set
impl UnwindSafe for ssl_key_set
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