pub enum BelongingsStatus {
ReturnedToCustomer,
NeedsStaffFollowUp,
}Expand description
Decision taxonomy for belongings status in the checkout completion workflow; each value carries operational meaning for source-grounded routing and review.
Variants§
ReturnedToCustomer
Labels work as returned to customer for queueing, review, and downstream agent context.
NeedsStaffFollowUp
Labels work as needs staff follow up for queueing, review, and downstream agent context.
Trait Implementations§
Source§impl Clone for BelongingsStatus
impl Clone for BelongingsStatus
Source§fn clone(&self) -> BelongingsStatus
fn clone(&self) -> BelongingsStatus
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 BelongingsStatus
impl Debug for BelongingsStatus
Source§impl<'de> Deserialize<'de> for BelongingsStatus
impl<'de> Deserialize<'de> for BelongingsStatus
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 BelongingsStatus
impl Hash for BelongingsStatus
Source§impl Ord for BelongingsStatus
impl Ord for BelongingsStatus
Source§fn cmp(&self, other: &BelongingsStatus) -> Ordering
fn cmp(&self, other: &BelongingsStatus) -> 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 BelongingsStatus
impl PartialEq for BelongingsStatus
Source§impl PartialOrd for BelongingsStatus
impl PartialOrd for BelongingsStatus
Source§impl Serialize for BelongingsStatus
impl Serialize for BelongingsStatus
impl Copy for BelongingsStatus
impl Eq for BelongingsStatus
impl StructuralPartialEq for BelongingsStatus
Auto Trait Implementations§
impl Freeze for BelongingsStatus
impl RefUnwindSafe for BelongingsStatus
impl Send for BelongingsStatus
impl Sync for BelongingsStatus
impl Unpin for BelongingsStatus
impl UnsafeUnpin for BelongingsStatus
impl UnwindSafe for BelongingsStatus
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