#[non_exhaustive]pub struct SupportedProtocolVersion {
pub version: ProtocolVersion,
}展开描述
rustls 支持的 TLS 协议版本。
All possible instances of this class are provided by the library in
the ALL_VERSIONS array, as well as individually as [TLS12]
并 TLS13。
字段 (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.version: ProtocolVersion此 TLS enumeration naming this version.
Trait 实现§
Source§impl Debug for SupportedProtocolVersion
impl Debug for SupportedProtocolVersion
Source§impl PartialEq for SupportedProtocolVersion
impl PartialEq for SupportedProtocolVersion
impl Eq for SupportedProtocolVersion
impl StructuralPartialEq for SupportedProtocolVersion
自动 Trait 实现§
impl Freeze for SupportedProtocolVersion
impl RefUnwindSafe for SupportedProtocolVersion
impl Send for SupportedProtocolVersion
impl Sync for SupportedProtocolVersion
impl Unpin for SupportedProtocolVersion
impl UnsafeUnpin for SupportedProtocolVersion
impl UnwindSafe for SupportedProtocolVersion
Blanket 实现§
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 从 an owned value. 更多信息