pub enum Http2CheckKind {
Settings,
PseudoHeaderOrder,
HeaderOrder,
}Expand description
Stable identifier for a single HTTP/2 check.
Used in the TransportCompatibility::checks
section so downstream telemetry can attribute scores to a
specific check kind without depending on enum-variant order.
Variants§
Settings
HTTP/2 SETTINGS frame fingerprint.
PseudoHeaderOrder
HTTP/2 pseudo-header order (:method/:authority/:scheme/:path).
HeaderOrder
HTTP/2 regular header order (after pseudo-headers).
Implementations§
Trait Implementations§
Source§impl Clone for Http2CheckKind
impl Clone for Http2CheckKind
Source§fn clone(&self) -> Http2CheckKind
fn clone(&self) -> Http2CheckKind
Returns a duplicate 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 Http2CheckKind
impl Debug for Http2CheckKind
Source§impl<'de> Deserialize<'de> for Http2CheckKind
impl<'de> Deserialize<'de> for Http2CheckKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for Http2CheckKind
impl Hash for Http2CheckKind
Source§impl PartialEq for Http2CheckKind
impl PartialEq for Http2CheckKind
Source§impl Serialize for Http2CheckKind
impl Serialize for Http2CheckKind
impl Copy for Http2CheckKind
impl Eq for Http2CheckKind
impl StructuralPartialEq for Http2CheckKind
Auto Trait Implementations§
impl Freeze for Http2CheckKind
impl RefUnwindSafe for Http2CheckKind
impl Send for Http2CheckKind
impl Sync for Http2CheckKind
impl Unpin for Http2CheckKind
impl UnsafeUnpin for Http2CheckKind
impl UnwindSafe for Http2CheckKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.