pub enum GateShip010Verdict {
Pass,
Fail,
}Expand description
Binary verdict for FALSIFY-GATE-SHIP-010 / GATE-SHIP-010.
Pass iff count == 0. Fail otherwise (any open advisory is a
merge-blocker).
Variants§
Pass
No open security advisories in the workspace dependency tree.
cargo deny check advisories is green. Merge gate is green.
Fail
At least one open security advisory in the workspace
dependency tree. Merge is blocked until every advisory is
resolved (upgrade, replace, or document via [advisories] ignore).
Trait Implementations§
Source§impl Clone for GateShip010Verdict
impl Clone for GateShip010Verdict
Source§fn clone(&self) -> GateShip010Verdict
fn clone(&self) -> GateShip010Verdict
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 moreimpl Copy for GateShip010Verdict
Source§impl Debug for GateShip010Verdict
impl Debug for GateShip010Verdict
impl Eq for GateShip010Verdict
Source§impl PartialEq for GateShip010Verdict
impl PartialEq for GateShip010Verdict
impl StructuralPartialEq for GateShip010Verdict
Auto Trait Implementations§
impl Freeze for GateShip010Verdict
impl RefUnwindSafe for GateShip010Verdict
impl Send for GateShip010Verdict
impl Sync for GateShip010Verdict
impl Unpin for GateShip010Verdict
impl UnsafeUnpin for GateShip010Verdict
impl UnwindSafe for GateShip010Verdict
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more