[][src]Struct slog::OwnedKV

pub struct OwnedKV<T: ?Sized>(_)
where
    T: SendSyncRefUnwindSafeKV
;

Owned KV

"Owned" means that the contained data (key-value pairs) can belong to a Logger and thus must be thread-safe ('static, Send, Sync)

Zero, one or more owned key-value pairs.

Can be constructed with o! macro.

Trait Implementations

impl<T: ?Sized> KV for OwnedKV<T> where
    T: SendSyncRefUnwindSafeKV
[src]

impl<T> From<OwnedKV<T>> for OwnedKVList where
    T: SendSyncRefUnwindSafeKV + 'static, 
[src]

Auto Trait Implementations

impl<T: ?Sized> Send for OwnedKV<T>

impl<T: ?Sized> Sync for OwnedKV<T>

impl<T: ?Sized> Unpin for OwnedKV<T> where
    T: Unpin

impl<T: ?Sized> UnwindSafe for OwnedKV<T> where
    T: UnwindSafe

impl<T: ?Sized> RefUnwindSafe for OwnedKV<T>

Blanket Implementations

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

impl<T> SendSyncRefUnwindSafeKV for T where
    T: KV + Send + Sync + RefUnwindSafe + ?Sized
[src]

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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