pub enum CompletionStatus {
StaffVerifiedCheckout,
NeedsStaffHandoffReview,
SourceNotCheckedOut,
}Expand description
Decision taxonomy for completion status in the checkout completion workflow; each value carries operational meaning for source-grounded routing and review.
Variants§
StaffVerifiedCheckout
Labels work as staff verified checkout for queueing, review, and downstream agent context.
NeedsStaffHandoffReview
Labels work as needs staff handoff review for queueing, review, and downstream agent context.
SourceNotCheckedOut
Labels work as source not checked out for 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