pub enum ScheduleStoreError {
IdempotencyConflict {
task_id: String,
existing_input_hash: String,
incoming_input_hash: String,
},
Io(Error),
Serde(Error),
}Variants§
Trait Implementations§
Source§impl Debug for ScheduleStoreError
impl Debug for ScheduleStoreError
Source§impl Display for ScheduleStoreError
impl Display for ScheduleStoreError
Source§impl Error for ScheduleStoreError
impl Error for ScheduleStoreError
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 From<Error> for ScheduleStoreError
impl From<Error> for ScheduleStoreError
Auto Trait Implementations§
impl !RefUnwindSafe for ScheduleStoreError
impl !UnwindSafe for ScheduleStoreError
impl Freeze for ScheduleStoreError
impl Send for ScheduleStoreError
impl Sync for ScheduleStoreError
impl Unpin for ScheduleStoreError
impl UnsafeUnpin for ScheduleStoreError
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