pub struct ProjectView {Show 18 fields
pub schema_version: u32,
pub project: ProjectIdentity,
pub limits: ViewLimits,
pub input_usage: InputUsage,
pub provenance: Vec<SourceProvenance>,
pub nodes: Vec<ProjectNode>,
pub edges: Vec<ProjectEdge>,
pub status_mappings: Vec<StatusMapping>,
pub evidence: BTreeMap<EvidenceLane, Vec<EvidenceItem>>,
pub configuration: Vec<ConfigurationFieldView>,
pub migrations: MigrationCatalog,
pub seeds: SeedCatalog,
pub deployment: DeploymentProjection,
pub costs: CostProjection,
pub task_readiness: Vec<TaskReadiness>,
pub feedback: FeedbackContext,
pub summary: DerivedSummary,
pub diagnostics: Vec<ProjectDiagnostic>,
}Fields§
§schema_version: u32§project: ProjectIdentity§limits: ViewLimits§input_usage: InputUsage§provenance: Vec<SourceProvenance>§nodes: Vec<ProjectNode>§edges: Vec<ProjectEdge>§status_mappings: Vec<StatusMapping>§evidence: BTreeMap<EvidenceLane, Vec<EvidenceItem>>§configuration: Vec<ConfigurationFieldView>§migrations: MigrationCatalog§seeds: SeedCatalog§deployment: DeploymentProjection§costs: CostProjection§task_readiness: Vec<TaskReadiness>§feedback: FeedbackContext§summary: DerivedSummary§diagnostics: Vec<ProjectDiagnostic>Implementations§
Source§impl ProjectView
impl ProjectView
pub fn operation(&self, operation_id: &str) -> Option<&ProjectNode>
pub fn task(&self, task_id: &str) -> Option<&TaskReadiness>
Trait Implementations§
Source§impl Clone for ProjectView
impl Clone for ProjectView
Source§fn clone(&self) -> ProjectView
fn clone(&self) -> ProjectView
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 moreSource§impl Debug for ProjectView
impl Debug for ProjectView
Source§impl<'de> Deserialize<'de> for ProjectView
impl<'de> Deserialize<'de> for ProjectView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProjectView
impl PartialEq for ProjectView
Source§impl Serialize for ProjectView
impl Serialize for ProjectView
impl StructuralPartialEq for ProjectView
Auto Trait Implementations§
impl Freeze for ProjectView
impl RefUnwindSafe for ProjectView
impl Send for ProjectView
impl Sync for ProjectView
impl Unpin for ProjectView
impl UnsafeUnpin for ProjectView
impl UnwindSafe for ProjectView
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