pub enum SendBoundary {
DraftRequiresApproval,
ReadyForApprovedSend,
SuppressedUntilConsent,
}Expand description
Decision vocabulary for send boundary in grooming workflows.
Variants§
DraftRequiresApproval
Draft requires approval grooming operational signal for schedule, estimate, history, or review handling.
ReadyForApprovedSend
Ready for approved send grooming operational signal for schedule, estimate, history, or review handling.
SuppressedUntilConsent
Suppressed until consent grooming operational signal for schedule, estimate, history, or review handling.
Trait Implementations§
Source§impl Clone for SendBoundary
impl Clone for SendBoundary
Source§fn clone(&self) -> SendBoundary
fn clone(&self) -> SendBoundary
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 SendBoundary
impl Debug for SendBoundary
Source§impl<'de> Deserialize<'de> for SendBoundary
impl<'de> Deserialize<'de> for SendBoundary
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 PartialEq for SendBoundary
impl PartialEq for SendBoundary
Source§impl Serialize for SendBoundary
impl Serialize for SendBoundary
impl Copy for SendBoundary
impl Eq for SendBoundary
impl StructuralPartialEq for SendBoundary
Auto Trait Implementations§
impl Freeze for SendBoundary
impl RefUnwindSafe for SendBoundary
impl Send for SendBoundary
impl Sync for SendBoundary
impl Unpin for SendBoundary
impl UnsafeUnpin for SendBoundary
impl UnwindSafe for SendBoundary
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