pub struct Http3PerkComparison {
pub matches: bool,
pub mismatches: Vec<String>,
}Expand description
Result of comparing expected and observed HTTP/3 perk data.
Fields§
§matches: booltrue only when all available observed fields match expected values.
mismatches: Vec<String>Human-readable mismatch reasons.
Trait Implementations§
Source§impl Clone for Http3PerkComparison
impl Clone for Http3PerkComparison
Source§fn clone(&self) -> Http3PerkComparison
fn clone(&self) -> Http3PerkComparison
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 Http3PerkComparison
impl Debug for Http3PerkComparison
Source§impl<'de> Deserialize<'de> for Http3PerkComparison
impl<'de> Deserialize<'de> for Http3PerkComparison
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 PartialEq for Http3PerkComparison
impl PartialEq for Http3PerkComparison
Source§impl Serialize for Http3PerkComparison
impl Serialize for Http3PerkComparison
impl Eq for Http3PerkComparison
impl StructuralPartialEq for Http3PerkComparison
Auto Trait Implementations§
impl Freeze for Http3PerkComparison
impl RefUnwindSafe for Http3PerkComparison
impl Send for Http3PerkComparison
impl Sync for Http3PerkComparison
impl Unpin for Http3PerkComparison
impl UnsafeUnpin for Http3PerkComparison
impl UnwindSafe for Http3PerkComparison
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