pub trait ExtTypeName {
    fn type_name(&self) -> &str
    where
        Self: Sized
; }
Expand description

Trait to retrieve the string value of a type.

Credits: https://stackoverflow.com/a/56100816/10237506

Required methods

Retrieve the string value of a type.

Implementations on Foreign Types

Implementors