pub enum SchemaMigrationEventError {
Payload(SchemaMigrationPayloadError),
}Expand description
Boundary event construction failures.
Variants§
Payload(SchemaMigrationPayloadError)
The typed payload is invalid.
Trait Implementations§
Source§impl Clone for SchemaMigrationEventError
impl Clone for SchemaMigrationEventError
Source§fn clone(&self) -> SchemaMigrationEventError
fn clone(&self) -> SchemaMigrationEventError
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 SchemaMigrationEventError
impl Debug for SchemaMigrationEventError
Source§impl Display for SchemaMigrationEventError
impl Display for SchemaMigrationEventError
Source§impl Error for SchemaMigrationEventError
impl Error for SchemaMigrationEventError
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<SchemaMigrationPayloadError> for SchemaMigrationEventError
impl From<SchemaMigrationPayloadError> for SchemaMigrationEventError
Source§fn from(source: SchemaMigrationPayloadError) -> Self
fn from(source: SchemaMigrationPayloadError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SchemaMigrationEventError
impl PartialEq for SchemaMigrationEventError
Source§fn eq(&self, other: &SchemaMigrationEventError) -> bool
fn eq(&self, other: &SchemaMigrationEventError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SchemaMigrationEventError
impl StructuralPartialEq for SchemaMigrationEventError
Auto Trait Implementations§
impl Freeze for SchemaMigrationEventError
impl RefUnwindSafe for SchemaMigrationEventError
impl Send for SchemaMigrationEventError
impl Sync for SchemaMigrationEventError
impl Unpin for SchemaMigrationEventError
impl UnsafeUnpin for SchemaMigrationEventError
impl UnwindSafe for SchemaMigrationEventError
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