pub enum DepartureNotesReview {
StaffReviewed,
ManagerReviewRequired,
}Expand description
Decision taxonomy for departure notes review in the checkout completion workflow; each value carries operational meaning for source-grounded routing and review.
Variants§
StaffReviewed
Represents staff reviewed in the checkout completion decision model so the app can choose the correct evidence, review, or draft path without taking live action.
ManagerReviewRequired
Represents manager review required in the checkout completion decision model so the app can choose the correct evidence, review, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for DepartureNotesReview
impl Clone for DepartureNotesReview
Source§fn clone(&self) -> DepartureNotesReview
fn clone(&self) -> DepartureNotesReview
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 DepartureNotesReview
impl Debug for DepartureNotesReview
Source§impl<'de> Deserialize<'de> for DepartureNotesReview
impl<'de> Deserialize<'de> for DepartureNotesReview
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 DepartureNotesReview
impl Hash for DepartureNotesReview
Source§impl Ord for DepartureNotesReview
impl Ord for DepartureNotesReview
Source§fn cmp(&self, other: &DepartureNotesReview) -> Ordering
fn cmp(&self, other: &DepartureNotesReview) -> 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 DepartureNotesReview
impl PartialEq for DepartureNotesReview
Source§impl PartialOrd for DepartureNotesReview
impl PartialOrd for DepartureNotesReview
Source§impl Serialize for DepartureNotesReview
impl Serialize for DepartureNotesReview
impl Copy for DepartureNotesReview
impl Eq for DepartureNotesReview
impl StructuralPartialEq for DepartureNotesReview
Auto Trait Implementations§
impl Freeze for DepartureNotesReview
impl RefUnwindSafe for DepartureNotesReview
impl Send for DepartureNotesReview
impl Sync for DepartureNotesReview
impl Unpin for DepartureNotesReview
impl UnsafeUnpin for DepartureNotesReview
impl UnwindSafe for DepartureNotesReview
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