pub enum RoutineStoreError {
InvalidRoutineId {
routine_id: String,
},
InvalidSchedule {
detail: String,
},
PersistFailed {
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for RoutineStoreError
impl Clone for RoutineStoreError
Source§fn clone(&self) -> RoutineStoreError
fn clone(&self) -> RoutineStoreError
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 RoutineStoreError
impl Debug for RoutineStoreError
Auto Trait Implementations§
impl Freeze for RoutineStoreError
impl RefUnwindSafe for RoutineStoreError
impl Send for RoutineStoreError
impl Sync for RoutineStoreError
impl Unpin for RoutineStoreError
impl UnsafeUnpin for RoutineStoreError
impl UnwindSafe for RoutineStoreError
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