pub struct LoadedModule {
pub dep_name: String,
pub items: Vec<TopLevel>,
pub path: PathBuf,
}Expand description
A parsed module ready for backend consumption.
Fields§
§dep_name: String§items: Vec<TopLevel>§path: PathBufAuto Trait Implementations§
impl Freeze for LoadedModule
impl RefUnwindSafe for LoadedModule
impl Send for LoadedModule
impl Sync for LoadedModule
impl Unpin for LoadedModule
impl UnsafeUnpin for LoadedModule
impl UnwindSafe for LoadedModule
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