pub enum DerivedSnapshotError {
Backend {
message: String,
},
Graph {
message: String,
},
}Expand description
A derived Table access or snapshot export failure.
Variants§
Backend
The selected Table backend rejected an operation.
Graph
The live graph exceeded its explicit persistence bound.
Trait Implementations§
Source§impl Clone for DerivedSnapshotError
impl Clone for DerivedSnapshotError
Source§fn clone(&self) -> DerivedSnapshotError
fn clone(&self) -> DerivedSnapshotError
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 DerivedSnapshotError
impl Debug for DerivedSnapshotError
Source§impl Display for DerivedSnapshotError
impl Display for DerivedSnapshotError
impl Eq for DerivedSnapshotError
Source§impl Error for DerivedSnapshotError
impl Error for DerivedSnapshotError
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 DerivedSnapshotError
impl PartialEq for DerivedSnapshotError
impl StructuralPartialEq for DerivedSnapshotError
Auto Trait Implementations§
impl Freeze for DerivedSnapshotError
impl RefUnwindSafe for DerivedSnapshotError
impl Send for DerivedSnapshotError
impl Sync for DerivedSnapshotError
impl Unpin for DerivedSnapshotError
impl UnsafeUnpin for DerivedSnapshotError
impl UnwindSafe for DerivedSnapshotError
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