Struct windows_metadata::Reader
source · pub struct Reader { /* private fields */ }Implementations§
source§impl Reader
impl Reader
pub fn new(files: Vec<File>) -> &'static Self
pub fn filter( files: Vec<File>, include: &[&str], exclude: &[&str] ) -> &'static Self
pub fn includes_namespace(&self, namespace: &str) -> bool
pub fn namespaces(&self) -> impl Iterator<Item = &str> + '_
pub fn items(&self) -> impl Iterator<Item = Item> + '_
pub fn namespace_items( &self, namespace: &str ) -> impl Iterator<Item = Item> + '_
pub fn unused(&self) -> impl Iterator<Item = &str> + '_
pub fn get_type_def( &self, namespace: &str, name: &str ) -> impl Iterator<Item = TypeDef> + '_
pub fn get_method_def( &self, namespace: &str, name: &str ) -> impl Iterator<Item = (MethodDef, &'static str)> + '_
pub fn nested_types( &self, type_def: TypeDef ) -> impl Iterator<Item = TypeDef> + '_
pub fn type_from_ref( &self, code: TypeDefOrRef, enclosing: Option<TypeDef>, generics: &[Type] ) -> Type
pub fn type_from_blob( &self, blob: &mut Blob, enclosing: Option<TypeDef>, generics: &[Type] ) -> Type
Auto Trait Implementations§
impl RefUnwindSafe for Reader
impl Send for Reader
impl Sync for Reader
impl Unpin for Reader
impl UnwindSafe for Reader
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more