[][src]Struct feroxbuster::heuristics::WildcardFilter

pub struct WildcardFilter {
    pub dynamic: u64,
    pub size: u64,
}

Data holder for two pieces of data needed when auto-filtering out wildcard responses

dynamic is the size of the response that will later be combined with the length of the path of the url requested and used to determine interesting pages from custom 404s where the requested url is reflected back in the response

size is size of the response that should be included with filters passed via runtime configuration and any static wildcard lengths.

Fields

dynamic: u64size: u64

Trait Implementations

impl Debug for WildcardFilter[src]

impl Default for WildcardFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,