pub enum SignalKind {
StatusCodeDiff,
HeaderPresence,
HeaderValue,
BodyDiff,
TimingDiff,
MetadataLeak,
}Expand description
Categories of observable differential signals.
Each variant maps to a distinct signal extractor in parlov-analysis.
Variants§
StatusCodeDiff
Status codes differ between baseline and probe responses.
HeaderPresence
A response header is present in one set but absent in the other.
HeaderValue
A response header has different values across baseline and probe sets.
BodyDiff
Response body content differs between sets.
TimingDiff
Response timing distributions differ (statistical significance required).
MetadataLeak
A response header leaks additional metadata, e.g. Content-Range reveals resource size.
Trait Implementations§
Source§impl Clone for SignalKind
impl Clone for SignalKind
Source§fn clone(&self) -> SignalKind
fn clone(&self) -> SignalKind
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 SignalKind
impl Debug for SignalKind
Source§impl<'de> Deserialize<'de> for SignalKind
impl<'de> Deserialize<'de> for SignalKind
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 SignalKind
impl Hash for SignalKind
Source§impl PartialEq for SignalKind
impl PartialEq for SignalKind
Source§impl Serialize for SignalKind
impl Serialize for SignalKind
impl Copy for SignalKind
impl Eq for SignalKind
impl StructuralPartialEq for SignalKind
Auto Trait Implementations§
impl Freeze for SignalKind
impl RefUnwindSafe for SignalKind
impl Send for SignalKind
impl Sync for SignalKind
impl Unpin for SignalKind
impl UnsafeUnpin for SignalKind
impl UnwindSafe for SignalKind
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