pub enum TickerError {
InvalidFormat(String),
}Expand description
Errors from parsing a Ticker from a string.
Variants§
Trait Implementations§
Source§impl Debug for TickerError
impl Debug for TickerError
Source§impl Display for TickerError
impl Display for TickerError
Source§impl Error for TickerError
impl Error for TickerError
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 TickerError
impl PartialEq for TickerError
impl Eq for TickerError
impl StructuralPartialEq for TickerError
Auto Trait Implementations§
impl Freeze for TickerError
impl RefUnwindSafe for TickerError
impl Send for TickerError
impl Sync for TickerError
impl Unpin for TickerError
impl UnsafeUnpin for TickerError
impl UnwindSafe for TickerError
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