pub struct ModuleExports<'a> {
pub functions: Vec<&'a FnDef>,
pub types: Vec<ExportedTypeDef<'a>>,
}Expand description
Everything a module exports — functions and types that passed visibility filtering.
Fields§
§functions: Vec<&'a FnDef>§types: Vec<ExportedTypeDef<'a>>Auto Trait Implementations§
impl<'a> Freeze for ModuleExports<'a>
impl<'a> RefUnwindSafe for ModuleExports<'a>
impl<'a> Send for ModuleExports<'a>
impl<'a> Sync for ModuleExports<'a>
impl<'a> Unpin for ModuleExports<'a>
impl<'a> UnsafeUnpin for ModuleExports<'a>
impl<'a> UnwindSafe for ModuleExports<'a>
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