Trait Lt

Source
pub trait Lt: Lt {
    type Next: Lt;
    type NextExtending: Lt;
    type Extend<'a>: Lt;
    type Actual<H: LifetimeHkt>: ?Sized;
    type NextTypeFn<F: for<'x> LifetimeHkt<Actual<'x>: TypeFn>>: TypeFn;
}
Expand description

Represents a list of zero or more lifetime variables

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.

Implementations on Foreign Types§

Source§

impl Lt for ()

Source§

type Next = ()

Source§

type NextExtending = (Lifetime<'static>, ())

Source§

type Extend<'a> = (Lifetime<'a>, ())

Source§

type Actual<H: LifetimeHkt> = <H as LifetimeHkt>::Actual<'static>

Source§

type NextTypeFn<F: for<'x> LifetimeHkt<Actual<'x>: TypeFn>> = <() as Lt>::Actual<F>

Implementors§