pub enum StaffDecisionBoundary {
DraftConfirmationAllowed,
ReviewPacketOnly,
}Expand description
How far the packet may advance before a staff decision is required.
Variants§
DraftConfirmationAllowed
Limits the packet to draft confirmation allowed so agents stay inside the approved handoff boundary.
ReviewPacketOnly
Limits the packet to review packet only so agents stay inside the approved handoff boundary.
Trait Implementations§
Source§impl Clone for StaffDecisionBoundary
impl Clone for StaffDecisionBoundary
Source§fn clone(&self) -> StaffDecisionBoundary
fn clone(&self) -> StaffDecisionBoundary
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 StaffDecisionBoundary
impl Debug for StaffDecisionBoundary
Source§impl<'de> Deserialize<'de> for StaffDecisionBoundary
impl<'de> Deserialize<'de> for StaffDecisionBoundary
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 StaffDecisionBoundary
impl Hash for StaffDecisionBoundary
Source§impl Ord for StaffDecisionBoundary
impl Ord for StaffDecisionBoundary
Source§fn cmp(&self, other: &StaffDecisionBoundary) -> Ordering
fn cmp(&self, other: &StaffDecisionBoundary) -> 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 StaffDecisionBoundary
impl PartialEq for StaffDecisionBoundary
Source§impl PartialOrd for StaffDecisionBoundary
impl PartialOrd for StaffDecisionBoundary
Source§impl Serialize for StaffDecisionBoundary
impl Serialize for StaffDecisionBoundary
impl Copy for StaffDecisionBoundary
impl Eq for StaffDecisionBoundary
impl StructuralPartialEq for StaffDecisionBoundary
Auto Trait Implementations§
impl Freeze for StaffDecisionBoundary
impl RefUnwindSafe for StaffDecisionBoundary
impl Send for StaffDecisionBoundary
impl Sync for StaffDecisionBoundary
impl Unpin for StaffDecisionBoundary
impl UnsafeUnpin for StaffDecisionBoundary
impl UnwindSafe for StaffDecisionBoundary
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