Struct feroxbuster::event_handlers::TermOutHandle[][src]

pub struct TermOutHandle {
    pub tx: UnboundedSender<Command>,
    pub tx_file: UnboundedSender<Command>,
}

Container for terminal output transmitter

Fields

tx: UnboundedSender<Command>

Transmitter that sends to the TermOutHandler handler

tx_file: UnboundedSender<Command>

Transmitter that sends to the FileOutHandler handler

Implementations

impl TermOutHandle[src]

implementation of OutputHandle

pub fn new(
    tx: UnboundedSender<Command>,
    tx_file: UnboundedSender<Command>
) -> Self
[src]

Given a CommandSender, create a new OutputHandle

pub fn send(&self, command: Command) -> Result<()>[src]

Send the given Command over tx

pub async fn sync(&self, send_to_file: bool) -> Result<()>[src]

Sync the handle with the handler

Trait Implementations

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