[][src]Enum solana_bpf_loader_program::BPFError

pub enum BPFError {
    VerifierError(VerifierError),
    SyscallError(SyscallError),
}

Errors returned by functions the BPF Loader registers with the VM

Variants

VerifierError(VerifierError)
SyscallError(SyscallError)

Trait Implementations

impl Debug for BPFError[src]

impl Display for BPFError[src]

impl Error for BPFError[src]

impl From<SyscallError> for BPFError[src]

impl From<VerifierError> for BPFError[src]

impl PartialEq<BPFError> for BPFError[src]

impl StructuralPartialEq for BPFError[src]

impl<'a> SyscallObject<BPFError> for SyscallPanic<'a>[src]

impl<'a> SyscallObject<BPFError> for SyscallLog<'a>[src]

impl SyscallObject<BPFError> for SyscallLogU64[src]

impl SyscallObject<BPFError> for SyscallLogBpfComputeUnits[src]

impl<'a> SyscallObject<BPFError> for SyscallLogPubkey<'a>[src]

impl SyscallObject<BPFError> for SyscallAllocFree[src]

impl<'a> SyscallObject<BPFError> for SyscallSha256<'a>[src]

impl<'a> SyscallObject<BPFError> for SyscallRistrettoMul<'a>[src]

impl<'a> SyscallObject<BPFError> for SyscallInvokeSignedRust<'a>[src]

impl<'a> SyscallObject<BPFError> for SyscallInvokeSignedC<'a>[src]

impl UserDefinedError for BPFError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiExample for T

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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