[go: up one dir, main page]

SendSyncRefUnwindSafeKV

Trait SendSyncRefUnwindSafeKV 

Source
pub trait SendSyncRefUnwindSafeKV:
    KV
    + Send
    + Sync
    + RefUnwindSafe { }
Expand description

Thread-local safety bound for KV

This type is used to enforce KVs stored in Loggers are thread-safe.

Implementors§

Source§

impl<T> SendSyncRefUnwindSafeKV for T
where T: KV + Send + Sync + RefUnwindSafe + ?Sized,