Struct slog::BorrowedKV [] [src]

pub struct BorrowedKV<'a>(_);

Borrowed KV

"Borrowed" means that the data is only a temporary referenced (&T) and can't be stored directly.

Zero, one or more borrowed key-value pairs.

Can be constructed with b! macro.

Trait Implementations

impl<'a> KV for BorrowedKV<'a>
[src]

Serialize self into Serializer Read more