[][src]Struct feroxbuster::filters::WordsFilter

pub struct WordsFilter {
    pub word_count: usize,
}

Simple implementor of FeroxFilter; used to filter out responses based on the number of words in a Response body; specified using -W|--filter-words

Fields

word_count: usize

Number of words in a Response's body that should be filtered

Trait Implementations

impl Debug for WordsFilter[src]

impl Default for WordsFilter[src]

impl FeroxFilter for WordsFilter[src]

implementation of FeroxFilter for WordsFilter

pub fn should_filter_response(&self, response: &FeroxResponse) -> bool[src]

Check word_count against what was passed in via -W|--filter-words

pub fn box_eq(&self, other: &dyn Any) -> bool[src]

Compare one WordsFilter to another

pub fn as_any(&self) -> &dyn Any[src]

Return self as Any for dynamic dispatch purposes

impl PartialEq<WordsFilter> for WordsFilter[src]

impl StructuralPartialEq for WordsFilter[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> Instrument for T[src]

impl<T> Instrument 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>, 

impl<T> WithSubscriber for T[src]