pub trait Primitive: Clone + Send + Sync + Any { }
Expand description

A Substrate wrapper for scir::schema::Primitive.

This trait should never be directly implemented. Implementing scir::schema::Primitive should suffice provided that the necessary trait bounds are satisfied.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Clone + Send + Sync + Any> Primitive for T