pub struct AtomicSwitch<O = (), E = Never>(/* private fields */);Expand description
Drain wrapping another drain, allowing atomic substitution in runtime.
Implementations§
Source§impl<O, E> AtomicSwitch<O, E>
impl<O, E> AtomicSwitch<O, E>
Sourcepub fn new<D: SendSyncRefUnwindSafeDrain<Ok = O, Err = E> + 'static>(
drain: D,
) -> Self
pub fn new<D: SendSyncRefUnwindSafeDrain<Ok = O, Err = E> + 'static>( drain: D, ) -> Self
Wrap drain in AtomicSwitch to allow swapping it later
Use AtomicSwitch::ctrl() to get a handle to it
Sourcepub fn ctrl(&self) -> AtomicSwitchCtrl<O, E>
pub fn ctrl(&self) -> AtomicSwitchCtrl<O, E>
Get a AtomicSwitchCtrl handle to control this AtomicSwitch drain
Trait Implementations§
Source§impl<O: Clone, E: Clone> Clone for AtomicSwitch<O, E>
impl<O: Clone, E: Clone> Clone for AtomicSwitch<O, E>
Source§fn clone(&self) -> AtomicSwitch<O, E>
fn clone(&self) -> AtomicSwitch<O, E>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<O, E> Drain for AtomicSwitch<O, E>
impl<O, E> Drain for AtomicSwitch<O, E>
Source§fn log(&self, info: &Record<'_>, kv: &OwnedKVList) -> Result<O, E>
fn log(&self, info: &Record<'_>, kv: &OwnedKVList) -> Result<O, E>
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_enabledSource§fn is_error_enabled(&self) -> bool
fn is_error_enabled(&self) -> bool
Avoid: See
is_enabledSource§fn is_warning_enabled(&self) -> bool
fn is_warning_enabled(&self) -> bool
Avoid: See
is_enabledSource§fn is_info_enabled(&self) -> bool
fn is_info_enabled(&self) -> bool
Avoid: See
is_enabledSource§fn is_debug_enabled(&self) -> bool
fn is_debug_enabled(&self) -> bool
Avoid: See
is_enabledSource§fn is_trace_enabled(&self) -> bool
fn is_trace_enabled(&self) -> bool
Avoid: See
is_enabledSource§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>
fn map_err<F, E>(self, f: F) -> MapError<Self, 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<O, E> Freeze for AtomicSwitch<O, E>
impl<O, E> RefUnwindSafe for AtomicSwitch<O, E>
impl<O, E> Send for AtomicSwitch<O, E>
impl<O, E> Sync for AtomicSwitch<O, E>
impl<O, E> Unpin for AtomicSwitch<O, E>
impl<O, E> UnwindSafe for AtomicSwitch<O, E>
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