pub trait ResolverKind: 'static {
const RESOLVER: DefaultResolver;
}Expand description
Marker trait that names a kind of source-string auto-resolver
for Resolved<R, T> wire args. The variants here mirror
crate::dsl::registry::DefaultResolver; each impl picks
one of them.
Required Associated Constants§
Sourceconst RESOLVER: DefaultResolver
const RESOLVER: DefaultResolver
The resolver this kind names.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".