pub enum SchemaInvariantError {
InvalidMapValue(MapValueError),
}Expand description
SchemaInvariantError
Invariant violations encountered while materializing schema/runtime values.
Variants§
InvalidMapValue(MapValueError)
Trait Implementations§
Source§impl Clone for SchemaInvariantError
impl Clone for SchemaInvariantError
Source§fn clone(&self) -> SchemaInvariantError
fn clone(&self) -> SchemaInvariantError
Returns a duplicate of the value. Read more
1.0.0 · 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 SchemaInvariantError
impl Debug for SchemaInvariantError
Source§impl Display for SchemaInvariantError
impl Display for SchemaInvariantError
Source§impl Error for SchemaInvariantError
impl Error for SchemaInvariantError
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<MapValueError> for SchemaInvariantError
impl From<MapValueError> for SchemaInvariantError
Source§fn from(value: MapValueError) -> Self
fn from(value: MapValueError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SchemaInvariantError
impl PartialEq for SchemaInvariantError
impl Eq for SchemaInvariantError
impl StructuralPartialEq for SchemaInvariantError
Auto Trait Implementations§
impl Freeze for SchemaInvariantError
impl RefUnwindSafe for SchemaInvariantError
impl Send for SchemaInvariantError
impl Sync for SchemaInvariantError
impl Unpin for SchemaInvariantError
impl UnsafeUnpin for SchemaInvariantError
impl UnwindSafe for SchemaInvariantError
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