Trait Action

Source
pub trait Action {
    const MIN_EXECUTION_LAMPORTS: u64;

    // Required method
    fn header(&self) -> &ActionHeader;
}
Expand description

Action.

Required Associated Constants§

Source

const MIN_EXECUTION_LAMPORTS: u64

Min execution lamports.

Required Methods§

Source

fn header(&self) -> &ActionHeader

Get the header.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§