Trait type_equalities::AliasSelf[][src]

pub trait AliasSelf {
    type Alias: ?Sized;
}

Trait used to convince the rust type checker of the claimed equality

Associated Types

type Alias: ?Sized[src]

Always set to Self, but the type checker doesn’t reduce T::Alias to T.

Loading content...

Implementors

impl<T: ?Sized> AliasSelf for T[src]

type Alias = T

Loading content...