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