pub struct GraphBuildInput {
pub root: RepoRoot,
pub repo_manifest: RepoManifest,
pub projects: Vec<ProjectManifest>,
}Expand description
Input required to build a repository graph.
Fields§
§root: RepoRootRepository root.
repo_manifest: RepoManifestRepo-level manifest.
projects: Vec<ProjectManifest>Project manifests.
Trait Implementations§
Source§impl Clone for GraphBuildInput
impl Clone for GraphBuildInput
Source§fn clone(&self) -> GraphBuildInput
fn clone(&self) -> GraphBuildInput
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 GraphBuildInput
impl RefUnwindSafe for GraphBuildInput
impl Send for GraphBuildInput
impl Sync for GraphBuildInput
impl Unpin for GraphBuildInput
impl UnsafeUnpin for GraphBuildInput
impl UnwindSafe for GraphBuildInput
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