pub enum FollowUpCadence {
None,
AfterEachSession,
AfterProgramCompletion,
ThirtyDaysAfterCompletion,
}Expand description
Follow-up cadence that determines whether a progress/homework/re-enrollment message is due.
Variants§
None
No additional workflow gate is required.
AfterEachSession
After each session training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
AfterProgramCompletion
After program completion training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
ThirtyDaysAfterCompletion
Thirty days after completion training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
Trait Implementations§
Source§impl Clone for FollowUpCadence
impl Clone for FollowUpCadence
Source§fn clone(&self) -> FollowUpCadence
fn clone(&self) -> FollowUpCadence
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 FollowUpCadence
impl Debug for FollowUpCadence
Source§impl<'de> Deserialize<'de> for FollowUpCadence
impl<'de> Deserialize<'de> for FollowUpCadence
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 FollowUpCadence
impl PartialEq for FollowUpCadence
Source§impl Serialize for FollowUpCadence
impl Serialize for FollowUpCadence
impl Copy for FollowUpCadence
impl Eq for FollowUpCadence
impl StructuralPartialEq for FollowUpCadence
Auto Trait Implementations§
impl Freeze for FollowUpCadence
impl RefUnwindSafe for FollowUpCadence
impl Send for FollowUpCadence
impl Sync for FollowUpCadence
impl Unpin for FollowUpCadence
impl UnsafeUnpin for FollowUpCadence
impl UnwindSafe for FollowUpCadence
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