pub trait TypeDescriptionContainer {
    fn new() -> Self;
    fn contains_type(&self, type_name: &str) -> bool;
    fn insert(&mut self, type_name: TypeName, type_description: TypeDescription);
    fn insert_all(&mut self, other: &Self);

    fn reserve_type_name(&mut self, type_name: TypeName) { ... }
}

Required Methods§

Provided Methods§

Implementors§