#[repr(u32)]
pub enum AccountResolutionError {
Show 20 variants IncorrectAccount = 2_724_315_840, NotEnoughAccounts = 2724315841, TlvUninitialized = 2724315842, TlvInitialized = 2724315843, TooManyPubkeys = 2724315844, InvalidPubkey = 2724315845, AccountTypeNotAccountMeta = 2724315846, SeedConfigsTooLarge = 2724315847, NotEnoughBytesForSeed = 2724315848, InvalidBytesForSeed = 2724315849, InvalidSeedConfig = 2724315850, InstructionDataTooSmall = 2724315851, AccountNotFound = 2724315852, CalculationFailure = 2724315853, AccountDataNotFound = 2724315854, AccountDataTooSmall = 2724315855, AccountFetchFailed = 2724315856, NotEnoughBytesForPubkeyData = 2724315857, InvalidBytesForPubkeyData = 2724315858, InvalidPubkeyDataConfig = 2724315859,
}
Expand description

Errors that may be returned by the Account Resolution library.

Variants§

§

IncorrectAccount = 2_724_315_840

Incorrect account provided

§

NotEnoughAccounts = 2724315841

Not enough accounts provided

§

TlvUninitialized = 2724315842

No value initialized in TLV data

§

TlvInitialized = 2724315843

Some value initialized in TLV data

§

TooManyPubkeys = 2724315844

Too many pubkeys provided

§

InvalidPubkey = 2724315845

Failed to parse Pubkey from bytes

§

AccountTypeNotAccountMeta = 2724315846

Attempted to deserialize an AccountMeta but the underlying type has PDA configs rather than a fixed address

§

SeedConfigsTooLarge = 2724315847

Provided list of seed configurations too large for a validation account

§

NotEnoughBytesForSeed = 2724315848

Not enough bytes available to pack seed configuration

§

InvalidBytesForSeed = 2724315849

The provided bytes are not valid for a seed configuration

§

InvalidSeedConfig = 2724315850

Tried to pack an invalid seed configuration

§

InstructionDataTooSmall = 2724315851

Instruction data too small for seed configuration

§

AccountNotFound = 2724315852

Could not find account at specified index

§

CalculationFailure = 2724315853

Error in checked math operation

§

AccountDataNotFound = 2724315854

Could not find account data at specified index

§

AccountDataTooSmall = 2724315855

Account data too small for requested seed configuration

§

AccountFetchFailed = 2724315856

Failed to fetch account

§

NotEnoughBytesForPubkeyData = 2724315857

Not enough bytes available to pack pubkey data configuration.

§

InvalidBytesForPubkeyData = 2724315858

The provided bytes are not valid for a pubkey data configuration

§

InvalidPubkeyDataConfig = 2724315859

Tried to pack an invalid pubkey data configuration

Trait Implementations§

source§

impl Clone for AccountResolutionError

source§

fn clone(&self) -> AccountResolutionError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AccountResolutionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> DecodeError<T> for AccountResolutionError

source§

fn type_of() -> &'static str

source§

impl Display for AccountResolutionError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AccountResolutionError

1.30.0 · source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AccountResolutionError> for ProgramError

source§

fn from(e: AccountResolutionError) -> Self

Converts to this type from the input type.
source§

impl FromPrimitive for AccountResolutionError

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl PartialEq for AccountResolutionError

source§

fn eq(&self, other: &AccountResolutionError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PrintProgramError for AccountResolutionError

source§

fn print<E>(&self)
where E: 'static + Error + DecodeError<E> + PrintProgramError + FromPrimitive,

source§

impl Eq for AccountResolutionError

source§

impl StructuralPartialEq for AccountResolutionError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V