[−][src]Struct spirit_log::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]
fn clone(&self) -> LogInstaller[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for LogInstaller[src]
impl Debug for LogInstaller[src]
impl Default for LogInstaller[src]
fn default() -> LogInstaller[src]
impl Eq for LogInstaller[src]
impl Hash for LogInstaller[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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
fn install(&mut self, (level, logger): (LevelFilter, Box<dyn Log>), _: &str)[src]
fn init<B: Extensible<Ok = B>>(
&mut self,
builder: B,
_name: &str
) -> Result<B, AnyError>[src]
&mut self,
builder: B,
_name: &str
) -> Result<B, AnyError>
impl<O, C> Installer<Dispatch, O, C> for LogInstaller[src]
type UninstallHandle = ()
A handle representing lifetime of the resource. Read more
fn install(&mut self, logger: Dispatch, _: &str)[src]
fn init<B: Extensible<Ok = B>>(
&mut self,
builder: B,
_name: &str
) -> Result<B, AnyError>[src]
&mut self,
builder: B,
_name: &str
) -> Result<B, AnyError>
impl Ord for LogInstaller[src]
fn cmp(&self, other: &LogInstaller) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<LogInstaller> for LogInstaller[src]
fn eq(&self, other: &LogInstaller) -> bool[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<LogInstaller> for LogInstaller[src]
fn partial_cmp(&self, other: &LogInstaller) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoResult<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,