pub enum CompletionStatus {
StaffVerifiedCheckout,
NeedsStaffHandoffReview,
SourceNotCheckedOut,
}Expand description
Decision choices for completion status in the checkout completion workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
StaffVerifiedCheckout
Routes the item to staff verified checkout for staff queueing, review, and downstream agent context.
NeedsStaffHandoffReview
Routes the item to needs staff handoff review for staff queueing, review, and downstream agent context.
SourceNotCheckedOut
Routes the item to source not checked out for staff queueing, review, and downstream agent context.
Trait Implementations§
Source§impl Clone for CompletionStatus
impl Clone for CompletionStatus
Source§fn clone(&self) -> CompletionStatus
fn clone(&self) -> CompletionStatus
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 CompletionStatus
impl Debug for CompletionStatus
Source§impl<'de> Deserialize<'de> for CompletionStatus
impl<'de> Deserialize<'de> for CompletionStatus
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 Hash for CompletionStatus
impl Hash for CompletionStatus
Source§impl Ord for CompletionStatus
impl Ord for CompletionStatus
Source§fn cmp(&self, other: &CompletionStatus) -> Ordering
fn cmp(&self, other: &CompletionStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CompletionStatus
impl PartialEq for CompletionStatus
Source§impl PartialOrd for CompletionStatus
impl PartialOrd for CompletionStatus
Source§impl Serialize for CompletionStatus
impl Serialize for CompletionStatus
impl Copy for CompletionStatus
impl Eq for CompletionStatus
impl StructuralPartialEq for CompletionStatus
Auto Trait Implementations§
impl Freeze for CompletionStatus
impl RefUnwindSafe for CompletionStatus
impl Send for CompletionStatus
impl Sync for CompletionStatus
impl Unpin for CompletionStatus
impl UnsafeUnpin for CompletionStatus
impl UnwindSafe for CompletionStatus
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