slog

Trait SendSyncUnwindSafe

Source
pub trait SendSyncUnwindSafe:
    Send
    + Sync
    + UnwindSafe { }
Expand description

Send + Sync + UnwindSafe bound

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

Implementors§

Source§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,