Enum aya::maps::MapError[][src]

pub enum MapError {
Show variants MapNotFound { name: String, }, InvalidMapType { map_type: u32, }, InvalidName { name: String, }, NotCreated { name: String, }, AlreadyCreated { name: String, }, CreateError { name: String, code: i64, io_error: Error, }, InvalidKeySize { size: usize, expected: usize, }, InvalidValueSize { size: usize, expected: usize, }, OutOfBounds { index: u32, max_entries: u32, }, KeyNotFound, ElementNotFound, ProgramNotLoaded, SyscallError { call: String, code: i64, io_error: Error, }, BorrowError { name: String, }, BorrowMutError { name: String, },
}

Variants

MapNotFound
Show fields

Fields of MapNotFound

name: String
InvalidMapType
Show fields

Fields of InvalidMapType

map_type: u32
InvalidName
Show fields

Fields of InvalidName

name: String
NotCreated
Show fields

Fields of NotCreated

name: String
AlreadyCreated
Show fields

Fields of AlreadyCreated

name: String
CreateError
Show fields

Fields of CreateError

name: Stringcode: i64io_error: Error
InvalidKeySize
Show fields

Fields of InvalidKeySize

size: usizeexpected: usize
InvalidValueSize
Show fields

Fields of InvalidValueSize

size: usizeexpected: usize
OutOfBounds
Show fields

Fields of OutOfBounds

index: u32max_entries: u32
KeyNotFound
ElementNotFound
ProgramNotLoaded
SyscallError
Show fields

Fields of SyscallError

call: Stringcode: i64io_error: Error
BorrowError
Show fields

Fields of BorrowError

name: String
BorrowMutError
Show fields

Fields of BorrowMutError

name: String

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.