pub struct ResolvedImport {
pub original_path: String,
pub resolved_path: String,
pub import_type: ImportType,
}Expand description
Resolved import information
Fields§
§original_path: StringOriginal import path
resolved_path: StringResolved absolute path or URL
import_type: ImportTypeType of import
Trait Implementations§
Source§impl Clone for ResolvedImport
impl Clone for ResolvedImport
Source§fn clone(&self) -> ResolvedImport
fn clone(&self) -> ResolvedImport
Returns a duplicate of the value. Read more
1.0.0 · 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 ResolvedImport
impl RefUnwindSafe for ResolvedImport
impl Send for ResolvedImport
impl Sync for ResolvedImport
impl Unpin for ResolvedImport
impl UnwindSafe for ResolvedImport
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