pub trait ConciseableName<'a> {
    type ConciseTypeRef: Debug;
    type ConciseType: Debug;

    // Required methods
    fn concise(&'a self) -> Self::ConciseTypeRef;
    fn concise_owned(&self) -> Self::ConciseType;
}

Required Associated Types§

Required Methods§

source

fn concise(&'a self) -> Self::ConciseTypeRef

source

fn concise_owned(&self) -> Self::ConciseType

Implementors§