pub trait SlogValueDerivable: Debug + Clone + Serialize + Send + 'static { }
Expand description

A trait that defines requirements to be automatically derivable.

Any generic parameters in ExtLoggable objects must have this as a trait bound.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> SlogValueDerivable for Twhere T: Debug + Clone + Serialize + Send + 'static,