Struct windows_metadata::TypeTree
source · [−]pub struct TypeTree {
pub namespace: &'static str,
pub types: BTreeMap<&'static str, Vec<Type>>,
pub namespaces: BTreeMap<&'static str, TypeTree>,
}
Fields
namespace: &'static str
types: BTreeMap<&'static str, Vec<Type>>
namespaces: BTreeMap<&'static str, TypeTree>
Implementations
sourceimpl TypeTree
impl TypeTree
pub fn from_namespace(namespace: &'static str) -> Self
pub fn insert_namespace(
&mut self,
namespace: &'static str,
pos: usize
) -> &mut Self
pub fn insert_type(&mut self, name: &'static str, def: Type)
pub fn get_type(&self, name: &str) -> Option<&Vec<Type>>
pub fn get_namespace(&self, namespace: &str) -> Option<&Self>
Auto Trait Implementations
impl RefUnwindSafe for TypeTree
impl Send for TypeTree
impl Sync for TypeTree
impl Unpin for TypeTree
impl UnwindSafe for TypeTree
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more