pub enum ExhaustiveReadError {
Query(QueryError),
Revision(ReadSetRevisionError),
}Expand description
Query/runtime or typed source-proof failure from an exhaustive operation.
Variants§
Query(QueryError)
Query planning, admission, execution, or database authority failed.
Revision(ReadSetRevisionError)
The bounded source proof was invalid or changed.
Trait Implementations§
Source§impl Debug for ExhaustiveReadError
impl Debug for ExhaustiveReadError
Source§impl Display for ExhaustiveReadError
impl Display for ExhaustiveReadError
Source§impl Error for ExhaustiveReadError
impl Error for ExhaustiveReadError
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<InternalError> for ExhaustiveReadError
impl From<InternalError> for ExhaustiveReadError
Source§fn from(error: InternalError) -> Self
fn from(error: InternalError) -> Self
Converts to this type from the input type.
Source§impl From<QueryError> for ExhaustiveReadError
impl From<QueryError> for ExhaustiveReadError
Source§fn from(error: QueryError) -> Self
fn from(error: QueryError) -> Self
Converts to this type from the input type.
Source§impl From<ReadSetRevisionError> for ExhaustiveReadError
impl From<ReadSetRevisionError> for ExhaustiveReadError
Source§fn from(error: ReadSetRevisionError) -> Self
fn from(error: ReadSetRevisionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExhaustiveReadError
impl RefUnwindSafe for ExhaustiveReadError
impl Send for ExhaustiveReadError
impl Sync for ExhaustiveReadError
impl Unpin for ExhaustiveReadError
impl UnsafeUnpin for ExhaustiveReadError
impl UnwindSafe for ExhaustiveReadError
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