Struct Safe

Source
pub struct Safe<L, E> { /* private fields */ }
Expand description

Returned from the Logger::safe method.

Trait Implementations§

Source§

impl<I, L, E> Logger<I> for Safe<L, E>
where L: Logger<I>,

Source§

type Error = E

Source§

fn log(&mut self, item: I) -> Result<(), Self::Error>

Source§

fn by_ref(&mut self) -> &mut Self

Create a “by reference” adaptor for this logger.
Source§

fn chain<L>(self, other: L) -> Chain<Self, L>
where Self: Sized,

Combine two loggers, creating a new logger that logs each input to both loggers.
Source§

fn filter<F>(self, f: F) -> Filter<Self, F>
where Self: Sized, F: FnMut(&I) -> bool,

Apply a function to each input and pass it to the logger only if the function returns true for it.
Source§

fn map<F, B>(self, f: F) -> Map<Self, F, B>
where Self: Sized,

Apply a function to each input before passing it to the logger.
Source§

fn safe<E>(self) -> Safe<Self, E>
where Self: Sized,

Return a logger that silently drops errors reported by this logger.

Auto Trait Implementations§

§

impl<L, E> Freeze for Safe<L, E>
where L: Freeze,

§

impl<L, E> RefUnwindSafe for Safe<L, E>
where L: RefUnwindSafe,

§

impl<L, E> Send for Safe<L, E>
where L: Send,

§

impl<L, E> Sync for Safe<L, E>
where L: Sync,

§

impl<L, E> Unpin for Safe<L, E>
where L: Unpin,

§

impl<L, E> UnwindSafe for Safe<L, E>
where L: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.