pub struct FetchedRemoteModule {
pub module: LoadedModule,
pub commit: String,
pub integrity: String,
}Expand description
Result of fetching a remote module — module + lockfile metadata.
Fields§
§module: LoadedModule§commit: String§integrity: StringTrait Implementations§
Source§impl Clone for FetchedRemoteModule
impl Clone for FetchedRemoteModule
Source§fn clone(&self) -> FetchedRemoteModule
fn clone(&self) -> FetchedRemoteModule
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 FetchedRemoteModule
impl RefUnwindSafe for FetchedRemoteModule
impl Send for FetchedRemoteModule
impl Sync for FetchedRemoteModule
impl Unpin for FetchedRemoteModule
impl UnsafeUnpin for FetchedRemoteModule
impl UnwindSafe for FetchedRemoteModule
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