pub trait MaterializedViewAccessor<E: QueryEngine>: ViewAccessor<E>where
Self::View: MaterializedView,{
// Required method
fn refresh(&self) -> RefreshMaterializedViewOperation<E, Self::View>;
}Expand description
A materialized view accessor with refresh capabilities.
Required Methods§
Sourcefn refresh(&self) -> RefreshMaterializedViewOperation<E, Self::View>
fn refresh(&self) -> RefreshMaterializedViewOperation<E, Self::View>
Refresh the materialized view.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".