pub enum BarTimeError {
Empty,
}Expand description
Errors returned while constructing bar time labels.
Variants§
Empty
The label was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for BarTimeError
impl Clone for BarTimeError
Source§fn clone(&self) -> BarTimeError
fn clone(&self) -> BarTimeError
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 BarTimeError
impl Debug for BarTimeError
Source§impl Display for BarTimeError
impl Display for BarTimeError
Source§impl Error for BarTimeError
impl Error for BarTimeError
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 BarTimeError
impl PartialEq for BarTimeError
impl Copy for BarTimeError
impl Eq for BarTimeError
impl StructuralPartialEq for BarTimeError
Auto Trait Implementations§
impl Freeze for BarTimeError
impl RefUnwindSafe for BarTimeError
impl Send for BarTimeError
impl Sync for BarTimeError
impl Unpin for BarTimeError
impl UnsafeUnpin for BarTimeError
impl UnwindSafe for BarTimeError
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