pub enum LabelError {
NonStandardizedName {
name: String,
},
EmptyName,
}Expand description
Label error types.
Variants§
Trait Implementations§
Source§impl Debug for LabelError
impl Debug for LabelError
Source§impl Display for LabelError
impl Display for LabelError
Source§impl PartialEq for LabelError
impl PartialEq for LabelError
Source§fn eq(&self, other: &LabelError) -> bool
fn eq(&self, other: &LabelError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LabelError
Auto Trait Implementations§
impl Freeze for LabelError
impl RefUnwindSafe for LabelError
impl Send for LabelError
impl Sync for LabelError
impl Unpin for LabelError
impl UnsafeUnpin for LabelError
impl UnwindSafe for LabelError
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