pub trait HasPreciseName {
// Required method
fn precise_name(&self) -> String;
}Expand description
A trait for types that have a computed name.
Required Methods§
Sourcefn precise_name(&self) -> String
fn precise_name(&self) -> String
Returns the computed name of the type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".