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§
type ConciseTypeRef: Debug
type ConciseType: Debug
Required Methods§
fn concise(&'a self) -> Self::ConciseTypeRef
fn concise_owned(&self) -> Self::ConciseType
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".