pub enum RuntimeEventStoreError {
Append {
message: String,
},
NotFound {
run_id: RunId,
},
}Expand description
Errors raised by a RuntimeEventStore.
Variants§
Trait Implementations§
Source§impl Debug for RuntimeEventStoreError
impl Debug for RuntimeEventStoreError
Source§impl Display for RuntimeEventStoreError
impl Display for RuntimeEventStoreError
Source§impl Error for RuntimeEventStoreError
impl Error for RuntimeEventStoreError
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 From<RuntimeEventStoreError> for RuntimeSubscriptionError
impl From<RuntimeEventStoreError> for RuntimeSubscriptionError
Source§fn from(source: RuntimeEventStoreError) -> Self
fn from(source: RuntimeEventStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RuntimeEventStoreError
impl RefUnwindSafe for RuntimeEventStoreError
impl Send for RuntimeEventStoreError
impl Sync for RuntimeEventStoreError
impl Unpin for RuntimeEventStoreError
impl UnsafeUnpin for RuntimeEventStoreError
impl UnwindSafe for RuntimeEventStoreError
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