Struct slog_async::AsyncCore
source · pub struct AsyncCore { /* private fields */ }
Expand description
Core of Async
drain
See Async
for documentation.
Wrapping AsyncCore
allows implementing custom overflow (and other errors)
handling strategy.
Note: On drop AsyncCore
waits for it’s worker-thread to finish (after
handling all previous Record
s sent to it). If you can’t tolerate the
delay, make sure you drop it eg. in another thread.
Implementations§
Trait Implementations§
source§impl Drain for AsyncCore
impl Drain for AsyncCore
§type Err = AsyncError
type Err = AsyncError
Type of potential errors that can be returned by this
Drain
source§fn log(
&self,
record: &Record<'_>,
logger_values: &OwnedKVList
) -> AsyncResult<()>
fn log( &self, record: &Record<'_>, logger_values: &OwnedKVList ) -> AsyncResult<()>
Handle one logging statement (
Record
) Read moresource§fn is_enabled(&self, level: Level) -> bool
fn is_enabled(&self, level: Level) -> bool
Avoid: Check if messages at the specified log level are maybe
enabled for this logger. Read more
source§fn is_critical_enabled(&self) -> bool
fn is_critical_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_error_enabled(&self) -> bool
fn is_error_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_warning_enabled(&self) -> bool
fn is_warning_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_info_enabled(&self) -> bool
fn is_info_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_debug_enabled(&self) -> bool
fn is_debug_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_trace_enabled(&self) -> bool
fn is_trace_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn filter<F>(self, f: F) -> Filter<Self, F>where
Self: Sized,
F: FilterFn,
fn filter<F>(self, f: F) -> Filter<Self, F>where Self: Sized, F: FilterFn,
Filter logging records passed to
Drain
Read moresource§fn filter_level(self, level: Level) -> LevelFilter<Self>where
Self: Sized,
fn filter_level(self, level: Level) -> LevelFilter<Self>where Self: Sized,
Filter logging records passed to
Drain
(by level) Read moresource§fn map_err<F, E>(self, f: F) -> MapError<Self, E>where
Self: Sized,
F: MapErrFn<Self::Err, E>,
fn map_err<F, E>(self, f: F) -> MapError<Self, E>where Self: Sized, F: MapErrFn<Self::Err, E>,
Map logging errors returned by this drain Read more
source§fn ignore_res(self) -> IgnoreResult<Self>where
Self: Sized,
fn ignore_res(self) -> IgnoreResult<Self>where Self: Sized,
Ignore results returned by this drain Read more
Auto Trait Implementations§
impl RefUnwindSafe for AsyncCore
impl Send for AsyncCore
impl Sync for AsyncCore
impl Unpin for AsyncCore
impl UnwindSafe for AsyncCore
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