[][src]Struct spirit_log::LogInstaller

pub struct LogInstaller;

An Installer for the Dispatch.

This is the installer used by default for installing loggers ‒ this is what you get if you use the Pipeline with Cfg.

Loggers installed this way act in a synchronous way ‒ they block on IO.

Note that it is possible to install other loggers through this too ‒ even the async ones from Background transformation.

Trait Implementations

impl Clone for LogInstaller[src]

impl Copy for LogInstaller[src]

impl Debug for LogInstaller[src]

impl Default for LogInstaller[src]

impl Eq for LogInstaller[src]

impl Hash for LogInstaller[src]

impl<O, C> Installer<(LevelFilter, Box<dyn Log + 'static>), O, C> for LogInstaller[src]

type UninstallHandle = ()

A handle representing lifetime of the resource. Read more

impl<O, C> Installer<Dispatch, O, C> for LogInstaller[src]

type UninstallHandle = ()

A handle representing lifetime of the resource. Read more

impl Ord for LogInstaller[src]

impl PartialEq<LogInstaller> for LogInstaller[src]

impl PartialOrd<LogInstaller> for LogInstaller[src]

impl StructuralEq for LogInstaller[src]

impl StructuralPartialEq for LogInstaller[src]

Auto Trait Implementations

impl RefUnwindSafe for LogInstaller

impl Send for LogInstaller

impl Sync for LogInstaller

impl Unpin for LogInstaller

impl UnwindSafe for LogInstaller

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoResult<T> for 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.