Struct slog::SingleKV [] [src]

pub struct SingleKV<V>(pub Key, pub V)
where
    V: Value
;

Single pair Key and Value

Trait Implementations

impl<V: Value> From<(String, V)> for SingleKV<V>
[src]

[src]

Performs the conversion.

impl<V: Value> From<(&'static str, V)> for SingleKV<V>
[src]

[src]

Performs the conversion.

impl<V> KV for SingleKV<V> where
    V: Value
[src]

[src]

Serialize self into Serializer Read more