#[non_exhaustive]pub enum ApiError<AssetKey = AssetIndex, InstrumentKey = InstrumentIndex> {
AssetInvalid(AssetKey, String),
InstrumentInvalid(InstrumentKey, String),
RateLimit,
Unauthenticated(String),
BalanceInsufficient(AssetKey, String),
OrderRejected(String),
OrderAlreadyCancelled,
OrderAlreadyFullyFilled,
}Expand description
Represents all API errors generated by an exchange.
These typically indicate a request is invalid for some reason (eg/ BalanceInsufficient).
Most variants are not transient — the same request will fail identically on retry.
The exception is RateLimit, which is transient.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AssetInvalid(AssetKey, String)
Provided asset identifier is invalid or not supported.
For example:
- The
AssetNameExchangewas an invalid format.
Not transient — do not retry. The asset identifier must be corrected.
InstrumentInvalid(InstrumentKey, String)
Provided instrument identifier is invalid or not supported.
For example:
- The exchange does not have a market for an instrument.
- The
InstrumentNameExchangewas an invalid format.
Not transient — do not retry. The instrument identifier must be corrected.
RateLimit
Request was rejected due to rate limiting.
The exchange enforces request quotas and the caller has exceeded them.
Some exchanges provide a Retry-After header or similar hint; the client
may incorporate this into internal retry logic before surfacing this error.
Transient — retry with backoff. Typical backoff is 10-60 seconds, but respect exchange-specific guidance if available.
Unauthenticated(String)
Authentication failed (invalid credentials, expired key, bad signature).
Unlike other API errors which affect a single request, authentication failures indicate that all subsequent requests will fail until credentials are corrected. Callers should halt trading and alert operators.
Not transient — do not retry. Fix credentials and restart.
BalanceInsufficient(AssetKey, String)
Balance of an asset is insufficient to execute the requested operation.
§Warning: AssetKey field may hold an instrument name, not an asset name
Some ExecutionClient implementations (e.g. BinanceSpot) populate the
AssetKey field with the instrument name (e.g. "BTCUSDT") rather than
the specific low-balance asset (e.g. "BTC" or "USDT"), because splitting
a symbol into base/quote requires exchange symbol-info metadata not available
at error-parse time. Do not pattern-match on the AssetKey value to
identify the specific low-balance asset — use the String field for
diagnostics only.
Not transient — do not retry the same request. Reduce order size or deposit additional funds.
OrderRejected(String)
Order was rejected by the exchange for a business rule violation.
Common causes include: price outside allowed range, quantity below minimum, post-only order would cross, reduce-only with no position.
Not transient — do not retry the same request. Adjust order parameters.
OrderAlreadyCancelled
Cancel request failed because the order was already cancelled.
This is a state conflict, not an error per se — the desired end state (order cancelled) has already been achieved.
Not transient — do not retry. The order is already in the cancelled state.
OrderAlreadyFullyFilled
Cancel request failed because the order was already fully filled.
This is a state conflict — the order completed before the cancel arrived. The caller should reconcile their local state with the fill.
Not transient — do not retry. The order no longer exists to cancel.
Trait Implementations§
Source§impl<'de, AssetKey, InstrumentKey> Deserialize<'de> for ApiError<AssetKey, InstrumentKey>where
AssetKey: Deserialize<'de>,
InstrumentKey: Deserialize<'de>,
impl<'de, AssetKey, InstrumentKey> Deserialize<'de> for ApiError<AssetKey, InstrumentKey>where
AssetKey: Deserialize<'de>,
InstrumentKey: Deserialize<'de>,
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>,
Source§impl<AssetKey, InstrumentKey> Error for ApiError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> Error for ApiError<AssetKey, InstrumentKey>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl<AssetKey, InstrumentKey> From<ApiError<AssetKey, InstrumentKey>> for ClientError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> From<ApiError<AssetKey, InstrumentKey>> for ClientError<AssetKey, InstrumentKey>
Source§impl<AssetKey, InstrumentKey> From<ApiError<AssetKey, InstrumentKey>> for OrderError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> From<ApiError<AssetKey, InstrumentKey>> for OrderError<AssetKey, InstrumentKey>
Source§impl<AssetKey: Ord, InstrumentKey: Ord> Ord for ApiError<AssetKey, InstrumentKey>
impl<AssetKey: Ord, InstrumentKey: Ord> Ord for ApiError<AssetKey, InstrumentKey>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<AssetKey: PartialEq, InstrumentKey: PartialEq> PartialEq for ApiError<AssetKey, InstrumentKey>
impl<AssetKey: PartialEq, InstrumentKey: PartialEq> PartialEq for ApiError<AssetKey, InstrumentKey>
Source§impl<AssetKey: PartialOrd, InstrumentKey: PartialOrd> PartialOrd for ApiError<AssetKey, InstrumentKey>
impl<AssetKey: PartialOrd, InstrumentKey: PartialOrd> PartialOrd for ApiError<AssetKey, InstrumentKey>
impl<AssetKey: Eq, InstrumentKey: Eq> Eq for ApiError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> StructuralPartialEq for ApiError<AssetKey, InstrumentKey>
Auto Trait Implementations§
impl<AssetKey, InstrumentKey> Freeze for ApiError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> RefUnwindSafe for ApiError<AssetKey, InstrumentKey>where
AssetKey: RefUnwindSafe,
InstrumentKey: RefUnwindSafe,
impl<AssetKey, InstrumentKey> Send for ApiError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> Sync for ApiError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> Unpin for ApiError<AssetKey, InstrumentKey>
impl<AssetKey, InstrumentKey> UnsafeUnpin for ApiError<AssetKey, InstrumentKey>where
AssetKey: UnsafeUnpin,
InstrumentKey: UnsafeUnpin,
impl<AssetKey, InstrumentKey> UnwindSafe for ApiError<AssetKey, InstrumentKey>where
AssetKey: UnwindSafe,
InstrumentKey: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.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>
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>
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 moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.