#[repr(C)]pub struct ssl_ciphersuite_t {
pub id: c_int,
pub name: *const c_char,
pub cipher: cipher_type_t,
pub mac: md_type_t,
pub key_exchange: key_exchange_type_t,
pub min_major_ver: c_int,
pub min_minor_ver: c_int,
pub max_major_ver: c_int,
pub max_minor_ver: c_int,
pub flags: c_uchar,
}Fields§
§id: c_int§name: *const c_char§cipher: cipher_type_t§mac: md_type_t§key_exchange: key_exchange_type_t§min_major_ver: c_int§min_minor_ver: c_int§max_major_ver: c_int§max_minor_ver: c_int§flags: c_ucharTrait Implementations§
Source§impl Clone for ssl_ciphersuite_t
impl Clone for ssl_ciphersuite_t
Source§fn clone(&self) -> ssl_ciphersuite_t
fn clone(&self) -> ssl_ciphersuite_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 Default for ssl_ciphersuite_t
impl Default for ssl_ciphersuite_t
impl Copy for ssl_ciphersuite_t
Auto Trait Implementations§
impl Freeze for ssl_ciphersuite_t
impl RefUnwindSafe for ssl_ciphersuite_t
impl !Send for ssl_ciphersuite_t
impl !Sync for ssl_ciphersuite_t
impl Unpin for ssl_ciphersuite_t
impl UnwindSafe for ssl_ciphersuite_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