Struct Extender

Source
pub struct Extender<C, I> {
    pub container: C,
    /* private fields */
}
Expand description

Returned from the extender function.

Fields§

§container: C

Trait Implementations§

Source§

impl<C, I> Logger<I> for Extender<C, I>
where C: Extend<I>,

Source§

type Error = Infallible

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<C, I> Freeze for Extender<C, I>
where C: Freeze,

§

impl<C, I> RefUnwindSafe for Extender<C, I>
where C: RefUnwindSafe,

§

impl<C, I> Send for Extender<C, I>
where C: Send,

§

impl<C, I> Sync for Extender<C, I>
where C: Sync,

§

impl<C, I> Unpin for Extender<C, I>
where C: Unpin,

§

impl<C, I> UnwindSafe for Extender<C, I>
where C: 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.