pub enum Decision {
AssignmentDrafted,
Waitlist {
reason: WaitlistReason,
gate: ReviewGate,
},
ReviewRequired {
reason: ReviewReason,
gate: ReviewGate,
},
}Expand description
Assignment decision showing whether to draft, waitlist, or require review before mutating provider schedules.
Variants§
AssignmentDrafted
Assignment drafted training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
Waitlist
Waitlist training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
Fields
§
reason: WaitlistReasonBusiness reason staff should review before proceeding.
§
gate: ReviewGateSource-derived gate carried by this training contract.
ReviewRequired
Review required training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
Fields
§
reason: ReviewReasonBusiness reason staff should review before proceeding.
§
gate: ReviewGateSource-derived gate carried by this training contract.
Implementations§
Source§impl Decision
impl Decision
Sourcepub fn provider_mutation_gate(&self) -> Option<ReviewGate>
pub fn provider_mutation_gate(&self) -> Option<ReviewGate>
Returns the provider mutation review gate recorded on this training contract.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Decision
impl<'de> Deserialize<'de> for Decision
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
impl Eq for Decision
impl StructuralPartialEq for Decision
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
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