#[repr(u32)]pub enum VaultError {
Show 17 variants
VaultIsDisabled = 0,
ExceededSlippage = 1,
StrategyIsNotExisted = 2,
UnAuthorized = 3,
MathOverflow = 4,
ProtocolIsNotSupported = 5,
UnMatchReserve = 6,
InvalidLockedProfitDegradation = 7,
MaxStrategyReached = 8,
StrategyExisted = 9,
InvalidUnmintAmount = 10,
InvalidAccountsForStrategy = 11,
InvalidBump = 12,
AmountMustGreaterThanZero = 13,
MangoIsNotSupportedAnymore = 14,
StrategyIsNotSupported = 15,
PayAmountIsExeeced = 16,
}
Variants§
VaultIsDisabled = 0
ExceededSlippage = 1
StrategyIsNotExisted = 2
UnAuthorized = 3
MathOverflow = 4
ProtocolIsNotSupported = 5
UnMatchReserve = 6
InvalidLockedProfitDegradation = 7
MaxStrategyReached = 8
StrategyExisted = 9
InvalidUnmintAmount = 10
InvalidAccountsForStrategy = 11
InvalidBump = 12
AmountMustGreaterThanZero = 13
MangoIsNotSupportedAnymore = 14
StrategyIsNotSupported = 15
PayAmountIsExeeced = 16
Implementations§
Trait Implementations§
Source§impl Clone for VaultError
impl Clone for VaultError
Source§fn clone(&self) -> VaultError
fn clone(&self) -> VaultError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VaultError
impl Debug for VaultError
Source§impl Display for VaultError
impl Display for VaultError
Source§impl From<VaultError> for Error
impl From<VaultError> for Error
Source§fn from(error_code: VaultError) -> Error
fn from(error_code: VaultError) -> Error
Converts to this type from the input type.
Source§impl From<VaultError> for u32
impl From<VaultError> for u32
Source§fn from(e: VaultError) -> u32
fn from(e: VaultError) -> u32
Converts to this type from the input type.
impl Copy for VaultError
Auto Trait Implementations§
impl Freeze for VaultError
impl RefUnwindSafe for VaultError
impl Send for VaultError
impl Sync for VaultError
impl Unpin for VaultError
impl UnwindSafe for VaultError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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