[][src]Struct feroxbuster::filters::StatusCodeFilter

pub struct StatusCodeFilter {
    pub filter_code: u16,
}

Simple implementor of FeroxFilter; used to filter out status codes specified using -C|--filter-status

Fields

filter_code: u16

Status code that should not be displayed to the user

Trait Implementations

impl Debug for StatusCodeFilter[src]

impl Default for StatusCodeFilter[src]

impl FeroxFilter for StatusCodeFilter[src]

implementation of FeroxFilter for StatusCodeFilter

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

Check filter_code against what was passed in via -C|--filter-status

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

Compare one StatusCodeFilter to another

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

Return self as Any for dynamic dispatch purposes

impl PartialEq<StatusCodeFilter> for StatusCodeFilter[src]

impl StructuralPartialEq for StatusCodeFilter[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]