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

A trait that simplifies the bounds on other methods or structs.

You don’t need to implement this since it’s implemented for every compatible type.

Implementors