#[repr(u32)]pub enum StrategyError {
InvalidStrategyParams = 0,
EdgeMustBeNonZero = 1,
InvalidPhoenixProgram = 2,
FailedToDeserializePhoenixMarket = 3,
InvalidArgument = 4,
PythError = 5,
PythOffline = 6,
TryToSerializePriceAccount = 7,
}
Variants§
InvalidStrategyParams = 0
EdgeMustBeNonZero = 1
InvalidPhoenixProgram = 2
FailedToDeserializePhoenixMarket = 3
InvalidArgument = 4
PythError = 5
PythOffline = 6
TryToSerializePriceAccount = 7
Implementations§
Trait Implementations§
Source§impl Clone for StrategyError
impl Clone for StrategyError
Source§fn clone(&self) -> StrategyError
fn clone(&self) -> StrategyError
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 StrategyError
impl Debug for StrategyError
Source§impl Display for StrategyError
impl Display for StrategyError
Source§impl From<StrategyError> for Error
impl From<StrategyError> for Error
Source§fn from(error_code: StrategyError) -> Error
fn from(error_code: StrategyError) -> Error
Converts to this type from the input type.
Source§impl From<StrategyError> for u32
impl From<StrategyError> for u32
Source§fn from(e: StrategyError) -> u32
fn from(e: StrategyError) -> u32
Converts to this type from the input type.
impl Copy for StrategyError
Auto Trait Implementations§
impl Freeze for StrategyError
impl RefUnwindSafe for StrategyError
impl Send for StrategyError
impl Sync for StrategyError
impl Unpin for StrategyError
impl UnwindSafe for StrategyError
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