Typed

Trait Typed 

Source
pub trait Typed {
    // Required method
    fn get_type(&self) -> Option<String>;
}
Expand description

An interface which is implemented by anything that has a type.

Required Methods§

Source

fn get_type(&self) -> Option<String>

Get the type of this object as a string.

Implementors§