Trait slog::ser::SyncMultiSerialize [] [src]

pub trait SyncMultiSerialize: Send + Sync + 'static {
    fn head(&self) -> (&'static str, &SyncSerialize);
    fn tail(&self) -> Option<&SyncMultiSerialize>;
}

Multiple key-values pairs that can be serialized

Required Methods

Key and value of the first key-value pair

Next key-value pair (and all following ones)

Implementors