pub trait Schema:
Schema<Primitive = Self::Primitive>
+ Send
+ Sync
+ Any {
type Primitive: Primitive;
}
Expand description
A Substrate wrapper for scir::schema::Schema
.
This trait should never be directly implemented. Implementing scir::schema::Schema
should suffice provided that the necessary trait bounds are satisfied.