#[non_exhaustive]pub enum Known {}Expand description
A defect the campaign knows about and steps over.
A fuzzer that crashes on the same open bug every time reports that bug forever and nothing
behind it. Suppressing one is therefore necessary and also dangerous — a suppression nobody
removes hides its whole class permanently — so each is named here, documented on its variant,
and paired with an ignored regression test that fails until it is fixed. run_strict
suppresses nothing, which is how those tests see the defect.
There are none at the moment: LegacyClientResponseMatching — a response to an RFC 2543
client transaction matching nothing, because TransactionKey::from_sent_request derived the
client key by §17.2.3’s server rules — was the first and so far only entry, and S-26 fixed
it. The type stays because the next campaign will want it, and an empty enum is the honest
way to say the campaign is currently suppressing nothing.
Trait Implementations§
impl Copy for Known
impl Eq for Known
impl StructuralPartialEq for Known
Auto Trait Implementations§
impl Freeze for Known
impl RefUnwindSafe for Known
impl Send for Known
impl Sync for Known
impl Unpin for Known
impl UnsafeUnpin for Known
impl UnwindSafe for Known
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
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
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more