Enum feroxbuster::statistics::StatField[][src]

pub enum StatField {
    ExpectedPerScan,
    TotalScans,
    LinksExtracted,
    TotalExpected,
    WildcardsFiltered,
    ResponsesFiltered,
    ResourcesDiscovered,
    InitialTargets,
    DirScanTimes,
}

Enum representing fields whose updates need to be performed in batches instead of one at a time

Variants

ExpectedPerScan

Due to the necessary order of events, the number of requests expected to be sent isn't known until after statistics::initialize is called. This command allows for updating the expected_per_scan field after initialization

TotalScans

Translates to total_scans

LinksExtracted

Translates to links_extracted

TotalExpected

Translates to total_expected

WildcardsFiltered

Translates to wildcards_filtered

ResponsesFiltered

Translates to responses_filtered

ResourcesDiscovered

Translates to resources_discovered

InitialTargets

Translates to initial_targets

DirScanTimes

Translates to directory_scan_times; assumes a single append to the vector

Trait Implementations

impl Clone for StatField[src]

impl Copy for StatField[src]

impl Debug for StatField[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> WithSubscriber for T[src]