pub trait Action {
const MIN_EXECUTION_LAMPORTS: u64;
// Required method
fn header(&self) -> &ActionHeader;
}
Expand description
Action.
Required Associated Constants§
Sourceconst MIN_EXECUTION_LAMPORTS: u64
const MIN_EXECUTION_LAMPORTS: u64
Min execution lamports.
Required Methods§
Sourcefn header(&self) -> &ActionHeader
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.