pub unsafe trait Satisfies<Tag> { }
Expand description

Converts a tag into a trait bound.

Safety

It is unsound to implement Satisfies<Tag> for T whenever Tag implements a trait that T does not also implement.

Implementors