pub enum AuditEventDraft {
PolicyDecisionRecorded,
ReservationStatusSuggested,
ConfirmationDraftGenerated,
MessageApprovalRequested,
}Expand description
Classifies audit event draft values that drive the booking-readiness workflow.
Variants§
PolicyDecisionRecorded
Routes booking triage work flagged as policy decision recorded to the right queue, review gate, or agent packet.
ReservationStatusSuggested
Routes booking triage work flagged as reservation status suggested to the right queue, review gate, or agent packet.
ConfirmationDraftGenerated
Routes booking triage work flagged as confirmation draft generated to the right queue, review gate, or agent packet.
MessageApprovalRequested
Routes booking triage work flagged as message approval requested to the right queue, review gate, or agent packet.
Trait Implementations§
Source§impl Clone for AuditEventDraft
impl Clone for AuditEventDraft
Source§fn clone(&self) -> AuditEventDraft
fn clone(&self) -> AuditEventDraft
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 AuditEventDraft
impl Debug for AuditEventDraft
Source§impl<'de> Deserialize<'de> for AuditEventDraft
impl<'de> Deserialize<'de> for AuditEventDraft
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 AuditEventDraft
impl Hash for AuditEventDraft
Source§impl Ord for AuditEventDraft
impl Ord for AuditEventDraft
Source§fn cmp(&self, other: &AuditEventDraft) -> Ordering
fn cmp(&self, other: &AuditEventDraft) -> 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 AuditEventDraft
impl PartialEq for AuditEventDraft
Source§impl PartialOrd for AuditEventDraft
impl PartialOrd for AuditEventDraft
Source§impl Serialize for AuditEventDraft
impl Serialize for AuditEventDraft
impl Copy for AuditEventDraft
impl Eq for AuditEventDraft
impl StructuralPartialEq for AuditEventDraft
Auto Trait Implementations§
impl Freeze for AuditEventDraft
impl RefUnwindSafe for AuditEventDraft
impl Send for AuditEventDraft
impl Sync for AuditEventDraft
impl Unpin for AuditEventDraft
impl UnsafeUnpin for AuditEventDraft
impl UnwindSafe for AuditEventDraft
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