pub struct LocalResolution {
pub name: PackageRef,
pub path: PathBuf,
}Expand description
Represents information about a resolution of a local file.
Fields§
§name: PackageRefThe name of the dependency that was resolved.
path: PathBufThe path to the resolved dependency.
Trait Implementations§
Source§impl Clone for LocalResolution
impl Clone for LocalResolution
Source§fn clone(&self) -> LocalResolution
fn clone(&self) -> LocalResolution
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 LocalResolution
impl RefUnwindSafe for LocalResolution
impl Send for LocalResolution
impl Sync for LocalResolution
impl Unpin for LocalResolution
impl UnsafeUnpin for LocalResolution
impl UnwindSafe for LocalResolution
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