pub trait LocalImport {
type Local: TypedIndex;
type Import: TypedIndex;
}Expand description
Trait that represents Local or Import.
Required Associated Types§
Sourcetype Local: TypedIndex
type Local: TypedIndex
Local type.
Sourcetype Import: TypedIndex
type Import: TypedIndex
Import type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".