pub enum ProgramError {
Show 24 variants
    Custom(u32),
    InvalidArgument,
    InvalidInstructionData,
    InvalidAccountData,
    AccountDataTooSmall,
    InsufficientFunds,
    IncorrectProgramId,
    MissingRequiredSignature,
    AccountAlreadyInitialized,
    UninitializedAccount,
    NotEnoughAccountKeys,
    AccountBorrowFailed,
    MaxSeedLengthExceeded,
    InvalidSeeds,
    BorshIoError(String),
    AccountNotRentExempt,
    UnsupportedSysvar,
    IllegalOwner,
    MaxAccountsDataAllocationsExceeded,
    InvalidRealloc,
    MaxInstructionTraceLengthExceeded,
    BuiltinProgramsMustConsumeComputeUnits,
    InvalidAccountOwner,
    ArithmeticOverflow,
}Expand description
Reasons the program may fail
Variants§
Custom(u32)
Allows on-chain programs to implement program-specific error types and see them returned by the Miraland runtime. A program-specific error may be any type that is represented as or serialized to a u32 integer.
InvalidArgument
InvalidInstructionData
InvalidAccountData
AccountDataTooSmall
InsufficientFunds
IncorrectProgramId
MissingRequiredSignature
AccountAlreadyInitialized
UninitializedAccount
NotEnoughAccountKeys
AccountBorrowFailed
MaxSeedLengthExceeded
InvalidSeeds
BorshIoError(String)
AccountNotRentExempt
UnsupportedSysvar
IllegalOwner
MaxAccountsDataAllocationsExceeded
InvalidRealloc
MaxInstructionTraceLengthExceeded
BuiltinProgramsMustConsumeComputeUnits
InvalidAccountOwner
ArithmeticOverflow
Trait Implementations§
source§impl Clone for ProgramError
 
impl Clone for ProgramError
source§fn clone(&self) -> ProgramError
 
fn clone(&self) -> ProgramError
Returns a copy 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 ProgramError
 
impl Debug for ProgramError
source§impl<'de> Deserialize<'de> for ProgramError
 
impl<'de> Deserialize<'de> for ProgramError
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ProgramError
 
impl Display for ProgramError
source§impl Error for ProgramError
 
impl Error for ProgramError
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for ProgramError
 
impl From<Error> for ProgramError
source§fn from(error: BorshIoError) -> Self
 
fn from(error: BorshIoError) -> Self
Converts to this type from the input type.
source§impl From<ProgramError> for u64
 
impl From<ProgramError> for u64
source§fn from(error: ProgramError) -> Self
 
fn from(error: ProgramError) -> Self
Converts to this type from the input type.
source§impl From<PubkeyError> for ProgramError
 
impl From<PubkeyError> for ProgramError
source§fn from(error: PubkeyError) -> Self
 
fn from(error: PubkeyError) -> Self
Converts to this type from the input type.
source§impl From<u64> for ProgramError
 
impl From<u64> for ProgramError
source§impl PartialEq for ProgramError
 
impl PartialEq for ProgramError
source§fn eq(&self, other: &ProgramError) -> bool
 
fn eq(&self, other: &ProgramError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PrintProgramError for ProgramError
 
impl PrintProgramError for ProgramError
source§impl Serialize for ProgramError
 
impl Serialize for ProgramError
source§impl TryFrom<InstructionError> for ProgramError
 
impl TryFrom<InstructionError> for ProgramError
§type Error = InstructionError
 
type Error = InstructionError
The type returned in the event of a conversion error.
impl Eq for ProgramError
impl StructuralEq for ProgramError
impl StructuralPartialEq for ProgramError
Auto Trait Implementations§
impl RefUnwindSafe for ProgramError
impl Send for ProgramError
impl Sync for ProgramError
impl Unpin for ProgramError
impl UnwindSafe for ProgramError
Blanket Implementations§
source§impl<T> AbiEnumVisitor for T
 
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
source§impl<T> AbiEnumVisitor for T
 
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
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
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more