pub trait InitializeConstraint: Sized + Send + Sync + 'static {
    // Provided method
    fn into_entity<const ETAG: EntityTag>(
        self
    ) -> EntityProof<ETAG, Self, ConstraintStore> { ... }
}

Provided Methods§

source

fn into_entity<const ETAG: EntityTag>( self ) -> EntityProof<ETAG, Self, ConstraintStore>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> InitializeConstraint for Twhere T: Send + Sync + Sized + 'static,