pub enum NativeH3TlsFeatureStatus {
Supported,
Unsupported {
reason: &'static str,
},
}Expand description
Native HTTP/3 TLS feature support status.
Variants§
Implementations§
Source§impl NativeH3TlsFeatureStatus
impl NativeH3TlsFeatureStatus
pub fn is_supported(self) -> bool
Trait Implementations§
Source§impl Clone for NativeH3TlsFeatureStatus
impl Clone for NativeH3TlsFeatureStatus
Source§fn clone(&self) -> NativeH3TlsFeatureStatus
fn clone(&self) -> NativeH3TlsFeatureStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NativeH3TlsFeatureStatus
Source§impl Debug for NativeH3TlsFeatureStatus
impl Debug for NativeH3TlsFeatureStatus
impl Eq for NativeH3TlsFeatureStatus
Source§impl PartialEq for NativeH3TlsFeatureStatus
impl PartialEq for NativeH3TlsFeatureStatus
Source§fn eq(&self, other: &NativeH3TlsFeatureStatus) -> bool
fn eq(&self, other: &NativeH3TlsFeatureStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NativeH3TlsFeatureStatus
Auto Trait Implementations§
impl Freeze for NativeH3TlsFeatureStatus
impl RefUnwindSafe for NativeH3TlsFeatureStatus
impl Send for NativeH3TlsFeatureStatus
impl Sync for NativeH3TlsFeatureStatus
impl Unpin for NativeH3TlsFeatureStatus
impl UnsafeUnpin for NativeH3TlsFeatureStatus
impl UnwindSafe for NativeH3TlsFeatureStatus
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