Skip to main content

ConciseableName

Trait ConciseableName 

Source
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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§