[][src]Struct solana_rbpf::ebpf::Helper

pub struct Helper {
    pub verifier: Option<HelperVerifier>,
    pub function: HelperFunction,
}

eBPF Helper pair

Includes both the helper function itself, but also an optional helper verification function that if present will be called first to validate the helper parameters. A verification function is not needed if the helper treats its arguments as values but if one of the arguments represent a pointer then that pointer must be verified by the verification function.

Note: native jitted programs do not have the ability to call the verification programs so all helpers provided to a jitted function must treat their arguments as values only.

Fields

verifier: Option<HelperVerifier>

Called first to verify the helper function's arguments

function: HelperFunction

Actual helper function that does the work

Auto Trait Implementations

impl Send for Helper

impl Sync for Helper

Blanket Implementations

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

impl<T> From for T
[src]

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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