pub struct Plan {
pub plan: PlanHeader,
}Expand description
Top-level plan — a directed acyclic graph of steps (§4).
Fields§
§plan: PlanHeaderImplementations§
Source§impl Plan
impl Plan
Sourcepub fn validate(&self) -> Vec<PlanValidationError>
pub fn validate(&self) -> Vec<PlanValidationError>
Validate the plan structure. Returns a list of errors (empty = valid).
Sourcepub fn compute_content_sha256(&self) -> String
pub fn compute_content_sha256(&self) -> String
Compute the SHA-256 of the canonical TOML serialization.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Plan
impl<'de> Deserialize<'de> for Plan
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
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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