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

pub enum MapError {
Show 15 variants MapNotFound { name: String, }, InvalidMapType { map_type: u32, }, InvalidName { name: String, }, NotCreated { name: String, }, AlreadyCreated { name: String, }, CreateError { name: String, code: c_long, 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: c_long, io_error: Error, }, BorrowError { name: String, }, BorrowMutError { name: String, },
}

Variants

MapNotFound

Fields of MapNotFound

name: String
InvalidMapType

Fields of InvalidMapType

map_type: u32
InvalidName

Fields of InvalidName

name: String
NotCreated

Fields of NotCreated

name: String
AlreadyCreated

Fields of AlreadyCreated

name: String
CreateError

Fields of CreateError

name: Stringcode: c_longio_error: Error
InvalidKeySize

Fields of InvalidKeySize

size: usizeexpected: usize
InvalidValueSize

Fields of InvalidValueSize

size: usizeexpected: usize
OutOfBounds

Fields of OutOfBounds

index: u32max_entries: u32
KeyNotFound
ElementNotFound
ProgramNotLoaded
SyscallError

Fields of SyscallError

call: Stringcode: c_longio_error: Error
BorrowError

Fields of BorrowError

name: String
BorrowMutError

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.