#[repr(u32)]pub enum StakingError {
InvalidAmount = 0,
PoolInactive = 1,
InsufficientStake = 2,
StillLocked = 3,
NoRewardsToClaim = 4,
NoStake = 5,
MathOverflow = 6,
}Variants§
InvalidAmount = 0
PoolInactive = 1
InsufficientStake = 2
StillLocked = 3
NoRewardsToClaim = 4
NoStake = 5
MathOverflow = 6
Implementations§
Trait Implementations§
Source§impl Clone for StakingError
impl Clone for StakingError
Source§fn clone(&self) -> StakingError
fn clone(&self) -> StakingError
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 StakingError
impl Debug for StakingError
Source§impl Display for StakingError
impl Display for StakingError
Source§impl From<StakingError> for Error
impl From<StakingError> for Error
Source§fn from(error_code: StakingError) -> Error
fn from(error_code: StakingError) -> Error
Converts to this type from the input type.
Source§impl From<StakingError> for u32
impl From<StakingError> for u32
Source§fn from(e: StakingError) -> u32
fn from(e: StakingError) -> u32
Converts to this type from the input type.
impl Copy for StakingError
Auto Trait Implementations§
impl Freeze for StakingError
impl RefUnwindSafe for StakingError
impl Send for StakingError
impl Sync for StakingError
impl Unpin for StakingError
impl UnsafeUnpin for StakingError
impl UnwindSafe for StakingError
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