[−]Struct openssl::ssl::SslOptions  
Options controlling the behavior of an SslContext.
Methods
impl SslOptions
impl SslOptionspub const DONT_INSERT_EMPTY_FRAGMENTS: SslOptions
Disables a countermeasure against an SSLv3/TLSv1.0 vulnerability affecting CBC ciphers.
pub const ALL: SslOptions
A "reasonable default" set of options which enables compatibility flags.
pub const NO_QUERY_MTU: SslOptions
Do not query the MTU.
Only affects DTLS connections.
pub const COOKIE_EXCHANGE: SslOptions
Enables Cookie Exchange as described in RFC 4347 Section 4.2.1.
Only affects DTLS connections.
pub const NO_TICKET: SslOptions
Disables the use of session tickets for session resumption.
pub const NO_SESSION_RESUMPTION_ON_RENEGOTIATION: SslOptions
Always start a new session when performing a renegotiation on the server side.
pub const NO_COMPRESSION: SslOptions
Disables the use of TLS compression.
pub const ALLOW_UNSAFE_LEGACY_RENEGOTIATION: SslOptions
Allow legacy insecure renegotiation with servers or clients that do not support secure renegotiation.
pub const SINGLE_ECDH_USE: SslOptions
Creates a new key for each session when using ECDHE.
This is always enabled in OpenSSL 1.1.0.
pub const SINGLE_DH_USE: SslOptions
Creates a new key for each session when using DHE.
This is always enabled in OpenSSL 1.1.0.
pub const CIPHER_SERVER_PREFERENCE: SslOptions
Use the server's preferences rather than the client's when selecting a cipher.
This has no effect on the client side.
pub const TLS_ROLLBACK_BUG: SslOptions
Disables version rollback attach detection.
pub const NO_SSLV2: SslOptions
Disables the use of SSLv2.
pub const NO_SSLV3: SslOptions
Disables the use of SSLv3.
pub const NO_TLSV1: SslOptions
Disables the use of TLSv1.0.
pub const NO_TLSV1_1: SslOptions
Disables the use of TLSv1.1.
pub const NO_TLSV1_2: SslOptions
Disables the use of TLSv1.2.
pub fn empty() -> SslOptions
pub fn empty() -> SslOptionsReturns an empty set of flags.
pub fn all() -> SslOptions
pub fn all() -> SslOptionsReturns the set containing all flags.
pub fn bits(&self) -> c_ulong
pub fn bits(&self) -> c_ulongReturns the raw value of the flags currently stored.
pub fn from_bits(bits: c_ulong) -> Option<SslOptions>
pub fn from_bits(bits: c_ulong) -> Option<SslOptions>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: c_ulong) -> SslOptions
pub fn from_bits_truncate(bits: c_ulong) -> SslOptionsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: SslOptions) -> bool
pub fn intersects(&self, other: SslOptions) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: SslOptions) -> bool
pub fn contains(&self, other: SslOptions) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: SslOptions)
pub fn insert(&mut self, other: SslOptions)Inserts the specified flags in-place.
pub fn remove(&mut self, other: SslOptions)
pub fn remove(&mut self, other: SslOptions)Removes the specified flags in-place.
pub fn toggle(&mut self, other: SslOptions)
pub fn toggle(&mut self, other: SslOptions)Toggles the specified flags in-place.
pub fn set(&mut self, other: SslOptions, value: bool)
pub fn set(&mut self, other: SslOptions, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Clone for SslOptions
impl Clone for SslOptionsfn clone(&self) -> SslOptions
fn clone(&self) -> SslOptionsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Extend<SslOptions> for SslOptions
impl Extend<SslOptions> for SslOptionsfn extend<T: IntoIterator<Item = SslOptions>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = SslOptions>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl Copy for SslOptions
impl Copy for SslOptionsimpl Eq for SslOptions
impl Eq for SslOptionsimpl PartialOrd<SslOptions> for SslOptions
impl PartialOrd<SslOptions> for SslOptionsfn partial_cmp(&self, other: &SslOptions) -> Option<Ordering>
fn partial_cmp(&self, other: &SslOptions) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &SslOptions) -> bool
fn lt(&self, other: &SslOptions) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &SslOptions) -> bool
fn le(&self, other: &SslOptions) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &SslOptions) -> bool
fn gt(&self, other: &SslOptions) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &SslOptions) -> bool
fn ge(&self, other: &SslOptions) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl PartialEq<SslOptions> for SslOptions
impl PartialEq<SslOptions> for SslOptionsfn eq(&self, other: &SslOptions) -> bool
fn eq(&self, other: &SslOptions) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &SslOptions) -> bool
fn ne(&self, other: &SslOptions) -> boolThis method tests for !=.
impl Ord for SslOptions
impl Ord for SslOptionsfn cmp(&self, other: &SslOptions) -> Ordering
fn cmp(&self, other: &SslOptions) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src] 
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src] 
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for SslOptions
impl Hash for SslOptionsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src] 
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for SslOptions
impl Debug for SslOptionsimpl Sub<SslOptions> for SslOptions
impl Sub<SslOptions> for SslOptionstype Output = SslOptions
The resulting type after applying the - operator.
fn sub(self, other: SslOptions) -> SslOptions
fn sub(self, other: SslOptions) -> SslOptionsReturns the set difference of the two sets of flags.
impl SubAssign<SslOptions> for SslOptions
impl SubAssign<SslOptions> for SslOptionsfn sub_assign(&mut self, other: SslOptions)
fn sub_assign(&mut self, other: SslOptions)Disables all flags enabled in the set.
impl Not for SslOptions
impl Not for SslOptionstype Output = SslOptions
The resulting type after applying the ! operator.
fn not(self) -> SslOptions
fn not(self) -> SslOptionsReturns the complement of this set of flags.
impl BitAnd<SslOptions> for SslOptions
impl BitAnd<SslOptions> for SslOptionstype Output = SslOptions
The resulting type after applying the & operator.
fn bitand(self, other: SslOptions) -> SslOptions
fn bitand(self, other: SslOptions) -> SslOptionsReturns the intersection between the two sets of flags.
impl BitOr<SslOptions> for SslOptions
impl BitOr<SslOptions> for SslOptionstype Output = SslOptions
The resulting type after applying the | operator.
fn bitor(self, other: SslOptions) -> SslOptions
fn bitor(self, other: SslOptions) -> SslOptionsReturns the union of the two sets of flags.
impl BitXor<SslOptions> for SslOptions
impl BitXor<SslOptions> for SslOptionstype Output = SslOptions
The resulting type after applying the ^ operator.
fn bitxor(self, other: SslOptions) -> SslOptions
fn bitxor(self, other: SslOptions) -> SslOptionsReturns the left flags, but with all the right flags toggled.
impl BitAndAssign<SslOptions> for SslOptions
impl BitAndAssign<SslOptions> for SslOptionsfn bitand_assign(&mut self, other: SslOptions)
fn bitand_assign(&mut self, other: SslOptions)Disables all flags disabled in the set.
impl BitOrAssign<SslOptions> for SslOptions
impl BitOrAssign<SslOptions> for SslOptionsfn bitor_assign(&mut self, other: SslOptions)
fn bitor_assign(&mut self, other: SslOptions)Adds the set of flags.
impl BitXorAssign<SslOptions> for SslOptions
impl BitXorAssign<SslOptions> for SslOptionsfn bitxor_assign(&mut self, other: SslOptions)
fn bitxor_assign(&mut self, other: SslOptions)Toggles the set of flags.
impl FromIterator<SslOptions> for SslOptions
impl FromIterator<SslOptions> for SslOptionsfn from_iter<T: IntoIterator<Item = SslOptions>>(iterator: T) -> SslOptions
fn from_iter<T: IntoIterator<Item = SslOptions>>(iterator: T) -> SslOptionsCreates a value from an iterator. Read more
impl Octal for SslOptions
impl Octal for SslOptionsimpl Binary for SslOptions
impl Binary for SslOptionsimpl LowerHex for SslOptions
impl LowerHex for SslOptionsimpl UpperHex for SslOptions
impl UpperHex for SslOptionsAuto Trait Implementations
impl Send for SslOptions
impl Send for SslOptionsimpl Sync for SslOptions
impl Sync for SslOptionsBlanket Implementations
impl<T> From for T[src] 
impl<T> From for Timpl<T, U> Into for T where
    U: From<T>, [src] 
impl<T, U> Into for T where
    U: From<T>, impl<T> ToOwned for T where
    T: Clone, [src] 
impl<T> ToOwned for T where
    T: Clone, type Owned = T
fn to_owned(&self) -> T[src] 
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src] 
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API.  (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
    T: From<U>, [src] 
impl<T, U> TryFrom for T where
    T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src] 
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
    T: ?Sized, [src] 
impl<T> Borrow for T where
    T: ?Sized, impl<T> BorrowMut for T where
    T: ?Sized, [src] 
impl<T> BorrowMut for T where
    T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src] 
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
    U: TryFrom<T>, [src] 
impl<T, U> TryInto for T where
    U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src] 
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
    T: 'static + ?Sized, [src] 
impl<T> Any for T where
    T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src] 
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API.  (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more