Struct feroxbuster::event_handlers::TermInputHandler[][src]

pub struct TermInputHandler { /* fields omitted */ }

Container for filters transmitter and FeroxFilters object

Implementations

impl TermInputHandler[src]

implementation of event handler for terminal input

kicks off the following handlers related to terminal input: ctrl+c handler that saves scan state to disk enter handler that listens for enter during scans to drop into interactive scan cancel menu

pub fn new(handles: Arc<Handles>) -> Self[src]

Create new event handler

pub fn initialize(handles: Arc<Handles>)[src]

Initialize the sigint and enter handlers that are responsible for handling initial user interaction during scans

pub fn sigint_handler(handles: Arc<Handles>) -> Result<()>[src]

Writes the current state of the program to disk (if save_state is true) and then exits

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