pub enum DaysError {
Empty,
}Expand description
Validation errors for recurring daycare attendance weekdays.
Variants§
Empty
No weekdays were supplied, so no attendance could be materialized.
Trait Implementations§
Source§impl Error for DaysError
impl Error for DaysError
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()
impl Copy for DaysError
impl Eq for DaysError
impl StructuralPartialEq for DaysError
Auto Trait Implementations§
impl Freeze for DaysError
impl RefUnwindSafe for DaysError
impl Send for DaysError
impl Sync for DaysError
impl Unpin for DaysError
impl UnsafeUnpin for DaysError
impl UnwindSafe for DaysError
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