pub enum DevelopmentStageError {
Empty,
}Expand description
Error returned when development stage labels are empty.
Variants§
Empty
The supplied label was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for DevelopmentStageError
impl Clone for DevelopmentStageError
Source§fn clone(&self) -> DevelopmentStageError
fn clone(&self) -> DevelopmentStageError
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 DevelopmentStageError
impl Debug for DevelopmentStageError
Source§impl Display for DevelopmentStageError
impl Display for DevelopmentStageError
Source§impl Error for DevelopmentStageError
impl Error for DevelopmentStageError
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 DevelopmentStageError
impl PartialEq for DevelopmentStageError
Source§fn eq(&self, other: &DevelopmentStageError) -> bool
fn eq(&self, other: &DevelopmentStageError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DevelopmentStageError
impl Eq for DevelopmentStageError
impl StructuralPartialEq for DevelopmentStageError
Auto Trait Implementations§
impl Freeze for DevelopmentStageError
impl RefUnwindSafe for DevelopmentStageError
impl Send for DevelopmentStageError
impl Sync for DevelopmentStageError
impl Unpin for DevelopmentStageError
impl UnsafeUnpin for DevelopmentStageError
impl UnwindSafe for DevelopmentStageError
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