pub struct BuildfixApplyRequest {
pub schema: SchemaId,
pub max_auto_apply_safety: SafetyLevel,
pub require_matched_finding: bool,
pub fixes: Vec<FixSummary>,
}Expand description
Structured request sent to a buildfix actuator command on stdin.
Fields§
§schema: SchemaId§max_auto_apply_safety: SafetyLevel§require_matched_finding: bool§fixes: Vec<FixSummary>Trait Implementations§
Source§impl Clone for BuildfixApplyRequest
impl Clone for BuildfixApplyRequest
Source§fn clone(&self) -> BuildfixApplyRequest
fn clone(&self) -> BuildfixApplyRequest
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 BuildfixApplyRequest
impl Debug for BuildfixApplyRequest
Source§impl<'de> Deserialize<'de> for BuildfixApplyRequest
impl<'de> Deserialize<'de> for BuildfixApplyRequest
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 BuildfixApplyRequest
impl PartialEq for BuildfixApplyRequest
Source§impl Serialize for BuildfixApplyRequest
impl Serialize for BuildfixApplyRequest
impl Eq for BuildfixApplyRequest
impl StructuralPartialEq for BuildfixApplyRequest
Auto Trait Implementations§
impl Freeze for BuildfixApplyRequest
impl RefUnwindSafe for BuildfixApplyRequest
impl Send for BuildfixApplyRequest
impl Sync for BuildfixApplyRequest
impl Unpin for BuildfixApplyRequest
impl UnsafeUnpin for BuildfixApplyRequest
impl UnwindSafe for BuildfixApplyRequest
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