pub(crate) struct EnabledVersions {
tls12: Option<&'static SupportedProtocolVersion>,
tls13: Option<&'static SupportedProtocolVersion>,
}
Fields§
§tls12: Option<&'static SupportedProtocolVersion>
§tls13: Option<&'static SupportedProtocolVersion>
Implementations§
Source§impl EnabledVersions
impl EnabledVersions
pub(crate) fn new(versions: &[&'static SupportedProtocolVersion]) -> Self
pub(crate) fn contains(&self, version: ProtocolVersion) -> bool
Trait Implementations§
Source§impl Clone for EnabledVersions
impl Clone for EnabledVersions
Source§fn clone(&self) -> EnabledVersions
fn clone(&self) -> EnabledVersions
Returns a copy 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 EnabledVersions
impl Debug for EnabledVersions
impl Copy for EnabledVersions
Auto Trait Implementations§
impl Freeze for EnabledVersions
impl RefUnwindSafe for EnabledVersions
impl Send for EnabledVersions
impl Sync for EnabledVersions
impl Unpin for EnabledVersions
impl UnwindSafe for EnabledVersions
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