solana-native-programs 0.1.0

Rust transaction builder clients for the Solana Native Programs
Documentation
//! This code was AUTOGENERATED using the kinobi library.
//! Please DO NOT EDIT THIS FILE, instead use visitors
//! to add features, then rerun kinobi to update it.
//!
//! [https://github.com/metaplex-foundation/kinobi]
//!

use num_derive::FromPrimitive;
use thiserror::Error;

#[derive(Clone, Debug, Eq, Error, FromPrimitive, PartialEq)]
pub enum SystemProgramError {
    /// 0 (0x0) - an account with the same address already exists
    #[error("an account with the same address already exists")]
    AccountAlreadyInUse,
    /// 1 (0x1) - account does not have enough SOL to perform the operation
    #[error("account does not have enough SOL to perform the operation")]
    ResultWithNegativeLamports,
    /// 2 (0x2) - cannot assign account to this program id
    #[error("cannot assign account to this program id")]
    InvalidProgramId,
    /// 3 (0x3) - cannot allocate account data of this length
    #[error("cannot allocate account data of this length")]
    InvalidAccountDataLength,
    /// 4 (0x4) - length of requested seed is too long
    #[error("length of requested seed is too long")]
    MaxSeedLengthExceeded,
    /// 5 (0x5) - provided address does not match addressed derived from seed
    #[error("provided address does not match addressed derived from seed")]
    AddressWithSeedMismatch,
    /// 6 (0x6) - advancing stored nonce requires a populated RecentBlockhashes sysvar
    #[error("advancing stored nonce requires a populated RecentBlockhashes sysvar")]
    NonceNoRecentBlockhashes,
    /// 7 (0x7) - stored nonce is still in recent_blockhashes
    #[error("stored nonce is still in recent_blockhashes")]
    NonceBlockhashNotExpired,
    /// 8 (0x8) - specified nonce does not match stored nonce
    #[error("specified nonce does not match stored nonce")]
    NonceUnexpectedBlockhashValue,
}

impl solana_program::program_error::PrintProgramError for SystemProgramError {
    fn print<E>(&self) {
        solana_program::msg!(&self.to_string());
    }
}