pub enum GraphStoreFrameError {
UnsupportedVersion(u32),
RegistryRequired,
RegistryForbidden,
TooManyPages {
len: usize,
max: usize,
},
Malformed {
offset: usize,
reason: &'static str,
},
}Variants§
Trait Implementations§
Source§impl Clone for GraphStoreFrameError
impl Clone for GraphStoreFrameError
Source§fn clone(&self) -> GraphStoreFrameError
fn clone(&self) -> GraphStoreFrameError
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 GraphStoreFrameError
impl Debug for GraphStoreFrameError
Source§impl Display for GraphStoreFrameError
impl Display for GraphStoreFrameError
impl Eq for GraphStoreFrameError
Source§impl Error for GraphStoreFrameError
impl Error for GraphStoreFrameError
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 GraphStoreFrameError
impl PartialEq for GraphStoreFrameError
Source§fn eq(&self, other: &GraphStoreFrameError) -> bool
fn eq(&self, other: &GraphStoreFrameError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphStoreFrameError
Auto Trait Implementations§
impl Freeze for GraphStoreFrameError
impl RefUnwindSafe for GraphStoreFrameError
impl Send for GraphStoreFrameError
impl Sync for GraphStoreFrameError
impl Unpin for GraphStoreFrameError
impl UnsafeUnpin for GraphStoreFrameError
impl UnwindSafe for GraphStoreFrameError
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