#[repr(u32)]pub enum VipersError {
KeyMismatch = 0,
ATAMismatch = 1,
ProgramIDMismatch = 2,
IntegerOverflow = 3,
OwnerMismatch = 4,
InvalidATA = 5,
InvariantFailed = 6,
OptionUnwrapFailed = 7,
KeysMustNotMatch = 8,
TokenAccountIsNonZero = 9,
UnknownBump = 10,
}Expand description
Vipers validation error.
Variants§
KeyMismatch = 0
ATAMismatch = 1
ProgramIDMismatch = 2
IntegerOverflow = 3
OwnerMismatch = 4
InvalidATA = 5
InvariantFailed = 6
OptionUnwrapFailed = 7
KeysMustNotMatch = 8
TokenAccountIsNonZero = 9
UnknownBump = 10
Implementations§
Trait Implementations§
Source§impl Clone for VipersError
impl Clone for VipersError
Source§fn clone(&self) -> VipersError
fn clone(&self) -> VipersError
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 VipersError
impl Debug for VipersError
Source§impl Display for VipersError
impl Display for VipersError
Source§impl From<VipersError> for Error
impl From<VipersError> for Error
Source§fn from(error_code: VipersError) -> Error
fn from(error_code: VipersError) -> Error
Converts to this type from the input type.
Source§impl From<VipersError> for u32
impl From<VipersError> for u32
Source§fn from(e: VipersError) -> u32
fn from(e: VipersError) -> u32
Converts to this type from the input type.
impl Copy for VipersError
Auto Trait Implementations§
impl Freeze for VipersError
impl RefUnwindSafe for VipersError
impl Send for VipersError
impl Sync for VipersError
impl Unpin for VipersError
impl UnwindSafe for VipersError
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