Enum event_store_core::event::error::UnsavedEventError
source · pub enum UnsavedEventError {
SerializeError(Error),
}
Expand description
Errors related to a unsaved event
Variants§
Trait Implementations§
source§impl Debug for UnsavedEventError
impl Debug for UnsavedEventError
source§impl Display for UnsavedEventError
impl Display for UnsavedEventError
source§impl Error for UnsavedEventError
impl Error for UnsavedEventError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 UnsavedEventError
impl From<Error> for UnsavedEventError
source§impl From<UnsavedEventError> for EventStoreError
impl From<UnsavedEventError> for EventStoreError
source§fn from(e: UnsavedEventError) -> Self
fn from(e: UnsavedEventError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for UnsavedEventError
impl Send for UnsavedEventError
impl Sync for UnsavedEventError
impl Unpin for UnsavedEventError
impl !UnwindSafe for UnsavedEventError
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