Trait dharitri_wasm::abi::TypeDescriptionContainer
source · pub trait TypeDescriptionContainer {
// Required methods
fn new() -> Self;
fn contains_type(&self, type_name: &str) -> bool;
fn insert(&mut self, type_name: String, type_description: TypeDescription);
fn insert_all(&mut self, other: &Self);
// Provided method
fn reserve_type_name(&mut self, type_name: String) { ... }
}Required Methods§
fn new() -> Self
fn contains_type(&self, type_name: &str) -> bool
fn insert(&mut self, type_name: String, type_description: TypeDescription)
fn insert_all(&mut self, other: &Self)
Provided Methods§
fn reserve_type_name(&mut self, type_name: String)
Object Safety§
This trait is not object safe.