pub enum GeneValueError {
Empty,
}Expand description
Error returned when gene vocabulary values are empty.
Variants§
Empty
The supplied value was empty after trimming surrounding whitespace.
Trait Implementations§
Source§impl Clone for GeneValueError
impl Clone for GeneValueError
Source§fn clone(&self) -> GeneValueError
fn clone(&self) -> GeneValueError
Returns a duplicate of the value. Read more
1.0.0 · 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 GeneValueError
impl Debug for GeneValueError
Source§impl Display for GeneValueError
impl Display for GeneValueError
Source§impl Error for GeneValueError
impl Error for GeneValueError
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 GeneValueError
impl PartialEq for GeneValueError
impl Copy for GeneValueError
impl Eq for GeneValueError
impl StructuralPartialEq for GeneValueError
Auto Trait Implementations§
impl Freeze for GeneValueError
impl RefUnwindSafe for GeneValueError
impl Send for GeneValueError
impl Sync for GeneValueError
impl Unpin for GeneValueError
impl UnsafeUnpin for GeneValueError
impl UnwindSafe for GeneValueError
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