ErrorCode

Enum ErrorCode 

Source
#[repr(i32)]
pub enum ErrorCode {
Show 74 variants OperationSucceed = 0, PublicAbnormal = 9_999, InternalError = 500, SystemBusy = 501, Unauthorized = 401, ApiKeyExpired = 402, NotFound = 404, AccessedIpNotInWhitelist = 406, UnknownSourceOfRequest = 506, ExcessiveFrequencyOfRequests = 510, EndpointInaccessible = 511, InvalidRequest = 513, ParameterError = 600, DataDecodingError = 601, VerifyFailed = 602, RepeatedRequests = 603, AccountReadPermissionRequired = 701, AccountModifyPermissionRequired = 702, TradeInformationReadPermissionRequired = 703, TransactionInformationModifyPermissionRequired = 704, AccountDoesNotExist = 1_000, ContractDoesNotExist = 1_001, ContractNotActivated = 1_002, ErrorInRiskLimitLevel = 1_003, AmountError = 1_004, WrongOrderDirection = 2_001, WrongOpeningType = 2_002, OverpricedToPay = 2_003, LowPriceForSelling = 2_004, BalanceInsufficient = 2_005, LeverageRatioError = 2_006, OrderPriceError = 2_007, QuantityInsufficient = 2_008, PositionsDoNotExistOrHaveBeenClosed = 2_009, UnknownOrderSent = 2_011, OrderQuantityError = 2_012, CancelOrdersOverMaximumLimit = 2_013, QuantityOfBatchOrderExceedsLimit = 2_014, PriceOrQuantityAccuracyError = 2_015, TriggerVolumeOverMaximum = 2_016, ExceedingMaximumAvailableMargin = 2_018, ThereIsActiveOpenPosition = 2_019, SingleLeverageIsNotConsistentWithExistingPositionLeverage = 2_021, WrongPositionType = 2_022, PositionsOverMaximumLeverage = 2_023, OrdersWithLeverageOverMaximum = 2_024, HoldingPositionsOverMaximumAllowablePositions = 2_025, ModificationOfLeverageIsNotSupportedForCross = 2_026, ThereIsOnlyOneCrossOrIsolatedInTheSameDirection = 2_027, MaximumOrderQuantityExceeded = 2_028, ErrorOrderType = 2_029, ExternalOrderIdIsTooLong = 2_030, AllowableHoldingPositionExceedCurrentRiskLimit = 2_031, OrderPriceIsLessThanLongPositionForceLiquidatePrice = 2_032, OrderPriceIsMoreThanShortPositionForceLiquidatePrice = 2_033, BatchQueryQuantityLimitExceeded = 2_034, UnsupportedMarketPriceTier = 2_035, TriggerPriceTypeError = 3_001, TriggerTypeError = 3_002, ExecutiveCycleError = 3_003, TriggerPriceError = 3_004, UnsupportedCurrency = 4_001, OrdersMoreThanLimit = 2_036, FrequentTransactions = 2_037, MaximumAllowablePositionQuantityExceeded = 2_038, TakePriceAndStopLossPriceCannotBeNoneAtTheSameTime = 5_001, StopLimitOrderDoesNotExistOrHasClosed = 5_002, TakeProfitAndStopLossPriceSettingIsWrong = 5_003, TakeProfitAndStopLossOrderVolumeIsMoreThanHoldingPositionsCanBeLiquidated = 5_004, TradingForbidden = 6_001, OpenForbidden = 6_002, TimeRangeError = 6_003, TradingPairAndStatusShouldBeFillIn = 6_004, TradingPairIsNotAvailable = 6_005,
}

Variants§

§

OperationSucceed = 0

§

PublicAbnormal = 9_999

§

InternalError = 500

§

SystemBusy = 501

§

Unauthorized = 401

§

ApiKeyExpired = 402

§

NotFound = 404

§

AccessedIpNotInWhitelist = 406

§

UnknownSourceOfRequest = 506

§

ExcessiveFrequencyOfRequests = 510

§

EndpointInaccessible = 511

§

InvalidRequest = 513

§

ParameterError = 600

§

DataDecodingError = 601

§

VerifyFailed = 602

§

RepeatedRequests = 603

§

AccountReadPermissionRequired = 701

§

AccountModifyPermissionRequired = 702

§

TradeInformationReadPermissionRequired = 703

§

TransactionInformationModifyPermissionRequired = 704

§

AccountDoesNotExist = 1_000

§

ContractDoesNotExist = 1_001

§

ContractNotActivated = 1_002

§

ErrorInRiskLimitLevel = 1_003

§

AmountError = 1_004

§

WrongOrderDirection = 2_001

§

WrongOpeningType = 2_002

§

OverpricedToPay = 2_003

§

LowPriceForSelling = 2_004

§

BalanceInsufficient = 2_005

§

LeverageRatioError = 2_006

§

OrderPriceError = 2_007

§

QuantityInsufficient = 2_008

§

PositionsDoNotExistOrHaveBeenClosed = 2_009

§

UnknownOrderSent = 2_011

§

OrderQuantityError = 2_012

§

CancelOrdersOverMaximumLimit = 2_013

§

QuantityOfBatchOrderExceedsLimit = 2_014

§

PriceOrQuantityAccuracyError = 2_015

§

TriggerVolumeOverMaximum = 2_016

§

ExceedingMaximumAvailableMargin = 2_018

§

ThereIsActiveOpenPosition = 2_019

§

SingleLeverageIsNotConsistentWithExistingPositionLeverage = 2_021

§

WrongPositionType = 2_022

§

PositionsOverMaximumLeverage = 2_023

§

OrdersWithLeverageOverMaximum = 2_024

§

HoldingPositionsOverMaximumAllowablePositions = 2_025

§

ModificationOfLeverageIsNotSupportedForCross = 2_026

§

ThereIsOnlyOneCrossOrIsolatedInTheSameDirection = 2_027

§

MaximumOrderQuantityExceeded = 2_028

§

ErrorOrderType = 2_029

§

ExternalOrderIdIsTooLong = 2_030

§

AllowableHoldingPositionExceedCurrentRiskLimit = 2_031

§

OrderPriceIsLessThanLongPositionForceLiquidatePrice = 2_032

§

OrderPriceIsMoreThanShortPositionForceLiquidatePrice = 2_033

§

BatchQueryQuantityLimitExceeded = 2_034

§

UnsupportedMarketPriceTier = 2_035

§

TriggerPriceTypeError = 3_001

§

TriggerTypeError = 3_002

§

ExecutiveCycleError = 3_003

§

TriggerPriceError = 3_004

§

UnsupportedCurrency = 4_001

§

OrdersMoreThanLimit = 2_036

§

FrequentTransactions = 2_037

§

MaximumAllowablePositionQuantityExceeded = 2_038

§

TakePriceAndStopLossPriceCannotBeNoneAtTheSameTime = 5_001

§

StopLimitOrderDoesNotExistOrHasClosed = 5_002

§

TakeProfitAndStopLossPriceSettingIsWrong = 5_003

§

TakeProfitAndStopLossOrderVolumeIsMoreThanHoldingPositionsCanBeLiquidated = 5_004

§

TradingForbidden = 6_001

§

OpenForbidden = 6_002

§

TimeRangeError = 6_003

§

TradingPairAndStatusShouldBeFillIn = 6_004

§

TradingPairIsNotAvailable = 6_005

Trait Implementations§

Source§

impl Debug for ErrorCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ErrorCode

Source§

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 Display for ErrorCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ErrorCode

1.30.0 · Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<'_derivative_strum> From<&'_derivative_strum ErrorCode> for &'static str

Source§

fn from(x: &'_derivative_strum ErrorCode) -> &'static str

Converts to this type from the input type.
Source§

impl From<ErrorCode> for &'static str

Source§

fn from(x: ErrorCode) -> &'static str

Converts to this type from the input type.
Source§

impl Hash for ErrorCode

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for ErrorCode

Source§

fn eq(&self, other: &ErrorCode) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for ErrorCode

Source§

impl StructuralPartialEq for ErrorCode

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,