Trait SlogValueDerivable

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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