pub trait TypeFn: Sized {
type Output<L: Lt>: ?Sized;
}Expand description
Represents a type that is parameterized over one or more lifetime variables.
When a type implementing TypeFn is needed, it is usually best to use TypeFn!
rather than manually implement TypeFn.
§Note
Types implementing this trait are generally meant to be used in generic parameters but not instantiated as values.
Required Associated Types§
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.