pub trait MaterializedView: View {
const SUPPORTS_CONCURRENT_REFRESH: bool = true;
}Expand description
A materialized view that supports refresh operations.
Provided Associated Constants§
Sourceconst SUPPORTS_CONCURRENT_REFRESH: bool = true
const SUPPORTS_CONCURRENT_REFRESH: bool = true
Whether concurrent refresh is supported.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.