Struct gcp_bigquery_client::model::materialized_view_definition::MaterializedViewDefinition
source · [−]pub struct MaterializedViewDefinition {
pub enable_refresh: Option<bool>,
pub last_refresh_time: Option<String>,
pub query: String,
pub refresh_interval_ms: Option<String>,
}
Fields
enable_refresh: Option<bool>
[Optional] [TrustedTester] Enable automatic refresh of the materialized view when the base table is updated. The default value is "true".
last_refresh_time: Option<String>
[Output-only] [TrustedTester] The time when this materialized view was last modified, in milliseconds since the epoch.
query: String
[Required] A query whose result is persisted.
refresh_interval_ms: Option<String>
[Optional] [TrustedTester] The maximum frequency at which this materialized view will be refreshed. The default value is "1800000" (30 minutes).
Trait Implementations
sourceimpl Clone for MaterializedViewDefinition
impl Clone for MaterializedViewDefinition
sourcefn clone(&self) -> MaterializedViewDefinition
fn clone(&self) -> MaterializedViewDefinition
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MaterializedViewDefinition
impl Debug for MaterializedViewDefinition
sourceimpl Default for MaterializedViewDefinition
impl Default for MaterializedViewDefinition
sourcefn default() -> MaterializedViewDefinition
fn default() -> MaterializedViewDefinition
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MaterializedViewDefinition
impl<'de> Deserialize<'de> for MaterializedViewDefinition
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<MaterializedViewDefinition> for MaterializedViewDefinition
impl PartialEq<MaterializedViewDefinition> for MaterializedViewDefinition
sourcefn eq(&self, other: &MaterializedViewDefinition) -> bool
fn eq(&self, other: &MaterializedViewDefinition) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MaterializedViewDefinition) -> bool
fn ne(&self, other: &MaterializedViewDefinition) -> bool
This method tests for !=
.
impl StructuralPartialEq for MaterializedViewDefinition
Auto Trait Implementations
impl RefUnwindSafe for MaterializedViewDefinition
impl Send for MaterializedViewDefinition
impl Sync for MaterializedViewDefinition
impl Unpin for MaterializedViewDefinition
impl UnwindSafe for MaterializedViewDefinition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more