pub 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 fn new(versions: &[&'static SupportedProtocolVersion]) -> Self
pub 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 moreAuto 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
§impl<T> CloneAny for T
impl<T> CloneAny for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [
TupleList
], of an [Prepend::prepend()
] call,
including the prepended entry.