pub enum Vector {
StatusCodeDiff,
CacheProbing,
ErrorMessageGranularity,
RedirectDiff,
}Expand description
Detection method being used to produce the differential.
Strategies declare their vector. The analyzer uses it to select which signal extractors to run.
Variants§
StatusCodeDiff
Differential produced by comparing status codes across baseline/probe inputs.
CacheProbing
Differential produced by manipulating cache-related headers (e.g. If-None-Match).
ErrorMessageGranularity
Differential produced by comparing error message body content across baseline/probe inputs.
RedirectDiff
Differential produced by comparing redirect behavior (3xx vs non-3xx) and Location headers.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Vector
impl<'de> Deserialize<'de> for Vector
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
impl Copy for Vector
impl Eq for Vector
impl StructuralPartialEq for Vector
Auto Trait Implementations§
impl Freeze for Vector
impl RefUnwindSafe for Vector
impl Send for Vector
impl Sync for Vector
impl Unpin for Vector
impl UnsafeUnpin for Vector
impl UnwindSafe for Vector
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