Skip to main content

GenericCommand

Trait GenericCommand 

Source
pub trait GenericCommand {
    // Required methods
    fn fee(&self) -> Fee;
    fn forget(&self) -> UserCommand;
}

Required Methods§

Source

fn fee(&self) -> Fee

Source

fn forget(&self) -> UserCommand

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl GenericCommand for mina_tree::scan_state::transaction_logic::valid::UserCommand

Source§

impl GenericCommand for mina_tree::scan_state::transaction_logic::UserCommand

Source§

impl<T> GenericCommand for WithStatus<T>
where T: GenericCommand,