pub enum TickerError {
ParsingError {
message: Message,
},
SocketError {
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for TickerError
impl Clone for TickerError
Source§fn clone(&self) -> TickerError
fn clone(&self) -> TickerError
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 TickerError
impl Debug for TickerError
Source§impl Display for TickerError
impl Display for TickerError
Source§impl Fail for TickerError
impl Fail for TickerError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreAuto Trait Implementations§
impl Freeze for TickerError
impl RefUnwindSafe for TickerError
impl Send for TickerError
impl Sync for TickerError
impl Unpin 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