pub enum SignalKind {
StatusCodeDiff,
HeaderPresence,
HeaderValue,
BodyDiff,
TimingDiff,
MetadataLeak,
InputReflection,
}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
HeaderPresence
header present in one set, absent in the other
HeaderValue
header values differ across sets
BodyDiff
Response body content differs between baseline and probe.
TimingDiff
Response timing distributions differ (statistical significance required).
MetadataLeak
A response header leaks additional metadata, e.g. Content-Range reveals resource size.
InputReflection
Body differential is fully explained by the request URL identifier being echoed back into the response (e.g. error pages that include the requested path). Treated as evidence against a real existence oracle — same response shape modulo input echo.
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 (const: unstable) · 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 Display for SignalKind
impl Display for SignalKind
Source§impl Hash for SignalKind
impl Hash for SignalKind
Source§impl PartialEq for SignalKind
impl PartialEq for SignalKind
Source§fn eq(&self, other: &SignalKind) -> bool
fn eq(&self, other: &SignalKind) -> bool
Tests for
self and other values to be equal, and is used by ==.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