pub struct Logger<L: Log + 'static, F>{ /* private fields */ }
Expand description
A Logger that wraps other loggers to extend it with async functionality.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<L, F> Freeze for Logger<L, F>
impl<L, F> RefUnwindSafe for Logger<L, F>where
L: RefUnwindSafe,
F: RefUnwindSafe,
impl<L, F> Send for Logger<L, F>
impl<L, F> Sync for Logger<L, F>
impl<L, F> Unpin for Logger<L, F>
impl<L, F> UnwindSafe for Logger<L, F>where
L: UnwindSafe,
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more