pub struct GateCheckResult {
pub passed: bool,
pub violations: Vec<GateViolation>,
}Expand description
Result of checking quality gates.
Fields§
§passed: boolWhether all gates passed
violations: Vec<GateViolation>List of gate violations
Trait Implementations§
Source§impl Clone for GateCheckResult
impl Clone for GateCheckResult
Source§fn clone(&self) -> GateCheckResult
fn clone(&self) -> GateCheckResult
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 moreAuto Trait Implementations§
impl Freeze for GateCheckResult
impl RefUnwindSafe for GateCheckResult
impl Send for GateCheckResult
impl Sync for GateCheckResult
impl Unpin for GateCheckResult
impl UnwindSafe for GateCheckResult
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