pub enum DurationWeeksError {
ZeroWeeks,
}Expand description
Decision vocabulary for duration weeks error in training workflows.
Variants§
ZeroWeeks
Zero weeks training operational signal for enrollment, curriculum, progress, package, or follow-up handling.
Trait Implementations§
Source§impl Clone for DurationWeeksError
impl Clone for DurationWeeksError
Source§fn clone(&self) -> DurationWeeksError
fn clone(&self) -> DurationWeeksError
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 DurationWeeksError
impl Debug for DurationWeeksError
Source§impl Display for DurationWeeksError
impl Display for DurationWeeksError
Source§impl Error for DurationWeeksError
impl Error for DurationWeeksError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for DurationWeeksError
impl PartialEq for DurationWeeksError
impl Copy for DurationWeeksError
impl Eq for DurationWeeksError
impl StructuralPartialEq for DurationWeeksError
Auto Trait Implementations§
impl Freeze for DurationWeeksError
impl RefUnwindSafe for DurationWeeksError
impl Send for DurationWeeksError
impl Sync for DurationWeeksError
impl Unpin for DurationWeeksError
impl UnsafeUnpin for DurationWeeksError
impl UnwindSafe for DurationWeeksError
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