pub trait BaseTypeWitness:
Debug
+ Copy
+ HasTypeWitness<MetaBaseTypeWit<Self::L, Self::R, Self>> {
type L: ?Sized;
type R: ?Sized;
type TypeCtor: BaseTypeWitnessTc<Type<Self::L, Self::R> = Self>;
}Available on crate feature
rust_1_61 only.Required Associated Types§
Sourcetype TypeCtor: BaseTypeWitnessTc<Type<Self::L, Self::R> = Self>
Available on crate feature rust_1_65 only.
type TypeCtor: BaseTypeWitnessTc<Type<Self::L, Self::R> = Self>
rust_1_65 only.The type constructor corresponding to this type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".