Trait SendSyncRefUnwindSafeDrain

Source
pub trait SendSyncRefUnwindSafeDrain:
    Drain
    + Send
    + Sync
    + RefUnwindSafe { }
Expand description

Drain + Send + Sync + RefUnwindSafe bound

This type is used to enforce Drains associated with Loggers are thread-safe.

Implementors§

Source§

impl<T> SendSyncRefUnwindSafeDrain for T
where T: Drain + Send + Sync + RefUnwindSafe + ?Sized,