pub struct ResolvedModuleArtifact {
pub module_path: String,
pub code: ModuleCode,
pub origin_path: Option<PathBuf>,
}Expand description
A resolved module artifact with optional filesystem origin metadata.
Fields§
§module_path: String§code: ModuleCode§origin_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for ResolvedModuleArtifact
impl Clone for ResolvedModuleArtifact
Source§fn clone(&self) -> ResolvedModuleArtifact
fn clone(&self) -> ResolvedModuleArtifact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResolvedModuleArtifact
impl RefUnwindSafe for ResolvedModuleArtifact
impl Send for ResolvedModuleArtifact
impl Sync for ResolvedModuleArtifact
impl Unpin for ResolvedModuleArtifact
impl UnsafeUnpin for ResolvedModuleArtifact
impl UnwindSafe for ResolvedModuleArtifact
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