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

Implementors§

Source§

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

Source§

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

Source§

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