#[non_exhaustive]pub enum CBError {
Http(Error),
Serde {
error: Error,
data: String,
},
Coinbase(CoinbaseError),
Websocket(WSError),
Null,
}
Expand description
Coinbase-pro-rs error
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Http(Error)
Http error
Serde
Serde error
Coinbase(CoinbaseError)
Coinbase Error
Websocket(WSError)
Websocket error
Null
Null error
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CBError
impl<'de> Deserialize<'de> for CBError
Source§fn deserialize<D>(_deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(_deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Error for CBError
impl Error for CBError
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()
Auto Trait Implementations§
impl Freeze for CBError
impl !RefUnwindSafe for CBError
impl Send for CBError
impl Sync for CBError
impl Unpin for CBError
impl !UnwindSafe for CBError
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