pub trait Metadata: Clone + Send + 'static { }
Expand description

Metadata trait

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Metadata for ()

source§

impl<T: Sync + Send + 'static> Metadata for Arc<T>

source§

impl<T: Metadata> Metadata for Option<T>

source§

impl<T: Metadata> Metadata for Box<T>

Implementors§