pub struct ResolvedProject {
pub manifest_path: PathBuf,
pub project_root: PathBuf,
pub manifest: Manifest,
pub manifest_hash: String,
pub packages: Vec<ResolvedPackage>,
pub local_files: Vec<ResolvedLocalFile>,
pub source_revisions: BTreeMap<String, String>,
pub source_host_keys: BTreeMap<String, String>,
pub environment: Option<String>,
}Fields§
§manifest_path: PathBuf§project_root: PathBuf§manifest: Manifest§manifest_hash: String§packages: Vec<ResolvedPackage>§local_files: Vec<ResolvedLocalFile>§source_revisions: BTreeMap<String, String>§source_host_keys: BTreeMap<String, String>§environment: Option<String>Implementations§
Source§impl ResolvedProject
impl ResolvedProject
pub fn lockfile_hash(&self) -> PrayResult<String>
Trait Implementations§
Source§impl Clone for ResolvedProject
impl Clone for ResolvedProject
Source§fn clone(&self) -> ResolvedProject
fn clone(&self) -> ResolvedProject
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 ResolvedProject
impl RefUnwindSafe for ResolvedProject
impl Send for ResolvedProject
impl Sync for ResolvedProject
impl Unpin for ResolvedProject
impl UnsafeUnpin for ResolvedProject
impl UnwindSafe for ResolvedProject
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