pub struct BuildfixApply {
pub schema: String,
pub tool: ToolInfo,
pub repo: ApplyRepoInfo,
pub plan_ref: PlanRef,
pub preconditions: ApplyPreconditions,
pub results: Vec<ApplyResult>,
pub summary: ApplySummary,
pub auto_commit: Option<AutoCommitInfo>,
pub errors: Vec<String>,
}Fields§
§schema: String§tool: ToolInfo§repo: ApplyRepoInfo§plan_ref: PlanRef§preconditions: ApplyPreconditions§results: Vec<ApplyResult>§summary: ApplySummary§auto_commit: Option<AutoCommitInfo>§errors: Vec<String>Implementations§
Source§impl BuildfixApply
impl BuildfixApply
pub fn new(tool: ToolInfo, repo: ApplyRepoInfo, plan_ref: PlanRef) -> Self
Trait Implementations§
Source§impl Clone for BuildfixApply
impl Clone for BuildfixApply
Source§fn clone(&self) -> BuildfixApply
fn clone(&self) -> BuildfixApply
Returns a duplicate of the value. Read more
1.0.0 · 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 BuildfixApply
impl Debug for BuildfixApply
Source§impl<'de> Deserialize<'de> for BuildfixApply
impl<'de> Deserialize<'de> for BuildfixApply
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 From<ApplyV1> for BuildfixApply
impl From<ApplyV1> for BuildfixApply
Source§impl Serialize for BuildfixApply
impl Serialize for BuildfixApply
Auto Trait Implementations§
impl Freeze for BuildfixApply
impl RefUnwindSafe for BuildfixApply
impl Send for BuildfixApply
impl Sync for BuildfixApply
impl Unpin for BuildfixApply
impl UnsafeUnpin for BuildfixApply
impl UnwindSafe for BuildfixApply
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