Struct slog_atomic::AtomicSwitchCtrl[][src]

pub struct AtomicSwitchCtrl<O = (), E = Never>(_);

Handle to AtomicSwitch that controls it.

Implementations

impl<O, E> AtomicSwitchCtrl<O, E>[src]

pub fn get(&self) -> Arc<Box<dyn SendSyncRefUnwindSafeDrain<Ok = O, Err = E>>>[src]

Get Arc to the currently wrapped drain

pub fn set<D: SendSyncRefUnwindSafeDrain<Ok = O, Err = E> + 'static>(
    &self,
    drain: D
)
[src]

Set the current wrapped drain

pub fn swap(
    &self,
    drain: Arc<Box<dyn SendSyncRefUnwindSafeDrain<Ok = O, Err = E>>>
) -> Arc<Box<dyn SendSyncRefUnwindSafeDrain<Ok = O, Err = E>>>
[src]

Swap the existing drain with a new one

pub fn drain(&self) -> AtomicSwitch<O, E>[src]

Get a AtomicSwitch drain controlled by this AtomicSwitchCtrl

Trait Implementations

impl<O: Clone, E: Clone> Clone for AtomicSwitchCtrl<O, E>[src]

Auto Trait Implementations

impl<O, E> RefUnwindSafe for AtomicSwitchCtrl<O, E>

impl<O, E> Send for AtomicSwitchCtrl<O, E>

impl<O, E> Sync for AtomicSwitchCtrl<O, E>

impl<O, E> Unpin for AtomicSwitchCtrl<O, E>

impl<O, E> UnwindSafe for AtomicSwitchCtrl<O, E>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.