pub trait CheckingState: Sealed + Debug {
type ModuleLike: Debug + Serialize;
type Module: Debug + Serialize;
type Seq<A: Debug + Serialize>: Debug + Serialize;
type Decl<D: DeclarationTrait + Resolvable<From = SymbolURI>>: Debug + Serialize;
type Doc: Debug + Serialize;
type Sig: Debug + Serialize;
}
Available on crate feature
serde
only.Required Associated Typesยง
type ModuleLike: Debug + Serialize
type Module: Debug + Serialize
type Seq<A: Debug + Serialize>: Debug + Serialize
type Decl<D: DeclarationTrait + Resolvable<From = SymbolURI>>: Debug + Serialize
type Doc: Debug + Serialize
type Sig: Debug + Serialize
Dyn Compatibilityยง
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.