[][src]Trait agnes::label::LabelEq

pub trait LabelEq<U> {
    type Eq;
}

Trait for determining whether or not the Self and U labels refer to the same field.

Associated Types

type Eq

Whether or not the two labels refer to the same field.

Loading content...

Implementors

impl<T, U> LabelEq<U> for T where
    T: Identifier,
    U: Identifier,
    T::Ident: IdentEq<U::Ident>, 
[src]

type Eq = <T::Ident as IdentEq<U::Ident>>::Eq

Loading content...