Skip to main content

OrchardActions

Trait OrchardActions 

Source
pub trait OrchardActions {
    // Required method
    fn actions(&self) -> impl Iterator<Item = &Action> + '_;
}
Expand description

A trait for types that can provide Orchard actions.

Required Methods§

Source

fn actions(&self) -> impl Iterator<Item = &Action> + '_

Returns an iterator over the actions in this type.

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§