pub enum RunBuilderEventError {
InvalidEvent {
event: &'static str,
field: &'static str,
reason: String,
},
}Expand description
Validation error returned when a pushed event or snapshot has invalid shape.
Variants§
InvalidEvent
A field value on an event/snapshot failed validation.
Trait Implementations§
Source§impl Clone for RunBuilderEventError
impl Clone for RunBuilderEventError
Source§fn clone(&self) -> RunBuilderEventError
fn clone(&self) -> RunBuilderEventError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunBuilderEventError
impl Debug for RunBuilderEventError
Source§impl Display for RunBuilderEventError
impl Display for RunBuilderEventError
impl Eq for RunBuilderEventError
Source§impl Error for RunBuilderEventError
impl Error for RunBuilderEventError
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 PartialEq for RunBuilderEventError
impl PartialEq for RunBuilderEventError
Source§fn eq(&self, other: &RunBuilderEventError) -> bool
fn eq(&self, other: &RunBuilderEventError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RunBuilderEventError
Auto Trait Implementations§
impl Freeze for RunBuilderEventError
impl RefUnwindSafe for RunBuilderEventError
impl Send for RunBuilderEventError
impl Sync for RunBuilderEventError
impl Unpin for RunBuilderEventError
impl UnsafeUnpin for RunBuilderEventError
impl UnwindSafe for RunBuilderEventError
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