Type Alias ForFixed

Source
pub type ForFixed<T: Sized> = ForLt<fn(for<'_>) -> T>;
Expand description

ForFixed<T> is a macro-free alias for ForLt!(<'_unused> = T).

To be used when the generic lifetime parameter is to be ignored, while calling into some HKT API.

Aliased Typeยง

struct ForFixed<T: Sized>(/* private fields */);