pub trait HasPreciseName {
    // Required method
    fn precise_name(&self) -> String;
}
Expand description

A trait for types that have a computed name.

Required Methods§

source

fn precise_name(&self) -> String

Returns the computed name of the type.

Implementors§