pub enum ClobError {
Show 16 variants
HttpError(Error),
JsonError(Error),
L1AuthUnavailable,
L2AuthNotAvailable,
BuilderAuthNotAvailable,
BuilderAuthFailed,
InvalidPrice {
price: f64,
min: f64,
max: f64,
},
InvalidTickSize {
tick_size: String,
min_tick_size: String,
},
NoOrderbook,
NoMatch,
WalletError(String),
SigningError(String),
Base64Error(DecodeError),
ConfigError(String),
ApiError {
message: String,
status: u16,
},
Other(String),
}Expand description
Errors that can occur when using the CLOB client
Variants§
HttpError(Error)
HTTP request error
JsonError(Error)
JSON serialization/deserialization error
Authentication error - L1 (wallet signature required)
L2AuthNotAvailable
Authentication error - L2 (API credentials required)
BuilderAuthNotAvailable
Builder authentication error
BuilderAuthFailed
Builder authentication failed
InvalidPrice
Invalid price
InvalidTickSize
Invalid tick size
NoOrderbook
No orderbook available
NoMatch
No match in orderbook
WalletError(String)
Ethereum wallet error
SigningError(String)
EIP-712 signing error
Base64Error(DecodeError)
Base64 decoding error
ConfigError(String)
Invalid configuration
ApiError
API error response
Other(String)
Generic error
Trait Implementations§
Source§impl Error for ClobError
impl Error for ClobError
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 From<DecodeError> for ClobError
impl From<DecodeError> for ClobError
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClobError
impl !RefUnwindSafe for ClobError
impl Send for ClobError
impl Sync for ClobError
impl Unpin for ClobError
impl UnsafeUnpin for ClobError
impl !UnwindSafe for ClobError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more