pub enum ReviewVerdict {
Approve,
Reject,
RequestChanges,
}Expand description
The decision a AttestationKind::Review carries (#836 G4).
Variants§
Approve
This candidate should win / this stage is good to promote.
Reject
This candidate should not win / this stage should not advance.
RequestChanges
Not a veto, but changes are wanted before it advances.
Trait Implementations§
Source§impl Clone for ReviewVerdict
impl Clone for ReviewVerdict
Source§fn clone(&self) -> ReviewVerdict
fn clone(&self) -> ReviewVerdict
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 moreSource§impl Debug for ReviewVerdict
impl Debug for ReviewVerdict
Source§impl<'de> Deserialize<'de> for ReviewVerdict
impl<'de> Deserialize<'de> for ReviewVerdict
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
impl Eq for ReviewVerdict
Source§impl PartialEq for ReviewVerdict
impl PartialEq for ReviewVerdict
Source§impl Serialize for ReviewVerdict
impl Serialize for ReviewVerdict
impl StructuralPartialEq for ReviewVerdict
Auto Trait Implementations§
impl Freeze for ReviewVerdict
impl RefUnwindSafe for ReviewVerdict
impl Send for ReviewVerdict
impl Sync for ReviewVerdict
impl Unpin for ReviewVerdict
impl UnsafeUnpin for ReviewVerdict
impl UnwindSafe for ReviewVerdict
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.