Trait linera_views::views::RootView
source · pub trait RootView<C>: View<C> {
// Required method
fn save<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
A View
whose staged modifications can be saved in storage.
Required Methods§
Object Safety§
This trait is not object safe.