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