pub trait Data: Clone + Codec + Send + Sync + 'static { }
Expand description

A basic alias for properties we expect basic data to satisfy.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<D: Clone + Codec + Send + Sync + 'static> Data for D