pub trait ChainItemsSource {
// Required method
fn to_chain_items(self) -> ChainItems;
}Expand description
A helper trait to allow Records, SignedActionHasheds, and ActionHasheds to be converted into ChainItems
without needing to know which source type is being operated on.
Required Methods§
Sourcefn to_chain_items(self) -> ChainItems
fn to_chain_items(self) -> ChainItems
Convert a source type into a ChainItems value.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".