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