pub enum Acceptance {
Accept,
Reject,
}Expand description
The acceptance decision.
Variants§
Accept
The artifact is accepted for this decision context.
Reject
The artifact is rejected for this decision context.
Trait Implementations§
Source§impl Clone for Acceptance
impl Clone for Acceptance
Source§fn clone(&self) -> Acceptance
fn clone(&self) -> Acceptance
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 Acceptance
Source§impl Debug for Acceptance
impl Debug for Acceptance
impl Eq for Acceptance
Source§impl PartialEq for Acceptance
impl PartialEq for Acceptance
Source§fn eq(&self, other: &Acceptance) -> bool
fn eq(&self, other: &Acceptance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Acceptance
Auto Trait Implementations§
impl Freeze for Acceptance
impl RefUnwindSafe for Acceptance
impl Send for Acceptance
impl Sync for Acceptance
impl Unpin for Acceptance
impl UnsafeUnpin for Acceptance
impl UnwindSafe for Acceptance
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