Enum vortex_common::error::ContractError
source · [−]pub enum ContractError {
Show 21 variants
Std(StdError),
Unauthorized {},
SemVer(String),
InsufficientFundsSend {},
UnexpectedError {},
InsufficientCollateral {},
PrematureLiquidation {},
DuplicatedLiquidation {},
FailedLiquidation {},
InsufficientBalance {},
InsufficientBalanceForFundingPayment {},
InvalidCoinType {},
InvalidPositionEffect {},
InvalidPositionDirection {},
Invalidcw20token {},
InvalidOrderData {},
InsufficientOpenPositionToClose {
intended_close_amount: Decimal,
can_be_closed: Decimal,
},
InvalidDenom {
unsupported_denom: String,
},
TwapNotExist {},
OrderNotFound {},
UnwhitelistedUser {},
}Variants
Std(StdError)
Unauthorized
Fields
SemVer(String)
InsufficientFundsSend
Fields
UnexpectedError
Fields
InsufficientCollateral
Fields
PrematureLiquidation
Fields
DuplicatedLiquidation
Fields
FailedLiquidation
Fields
InsufficientBalance
Fields
InsufficientBalanceForFundingPayment
Fields
InvalidCoinType
Fields
InvalidPositionEffect
Fields
InvalidPositionDirection
Fields
Invalidcw20token
Fields
InvalidOrderData
Fields
InsufficientOpenPositionToClose
InvalidDenom
Fields
unsupported_denom: StringTwapNotExist
Fields
OrderNotFound
Fields
UnwhitelistedUser
Fields
Trait Implementations
sourceimpl Debug for ContractError
impl Debug for ContractError
sourceimpl Display for ContractError
impl Display for ContractError
sourceimpl Error for ContractError
impl Error for ContractError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<Error> for ContractError
impl From<Error> for ContractError
sourceimpl From<StdError> for ContractError
impl From<StdError> for ContractError
sourceimpl PartialEq<ContractError> for ContractError
impl PartialEq<ContractError> for ContractError
sourcefn eq(&self, other: &ContractError) -> bool
fn eq(&self, other: &ContractError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ContractError) -> bool
fn ne(&self, other: &ContractError) -> bool
This method tests for !=.
impl StructuralPartialEq for ContractError
Auto Trait Implementations
impl RefUnwindSafe for ContractError
impl Send for ContractError
impl Sync for ContractError
impl Unpin for ContractError
impl UnwindSafe for ContractError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more