[][src]Struct tide::middleware::RootLogger

pub struct RootLogger { /* fields omitted */ }

Root logger for Tide. Wraps over logger provided by slog.SimpleLogger

Methods

impl RootLogger[src]

pub fn new() -> RootLogger[src]

Trait Implementations

impl<Data: Send + Sync + 'static> Middleware<Data> for RootLogger[src]

Stores information during request phase and logs information once the response is generated.

impl Default for RootLogger[src]

Auto Trait Implementations

impl Send for RootLogger

impl Sync for RootLogger

Blanket Implementations

impl<Data, F> Middleware for F where
    F: Send + Sync + 'static + Fn(Context<Data>, Next<'a, Data>) -> Pin<Box<dyn Future<Output = Response<Body>> + 'a + Send>>, 
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]