#[non_exhaustive]pub struct QueryAssetsOutputConfig {
pub bigquery_destination: Option<BigQueryDestination>,
/* private fields */
}Expand description
Output configuration query assets.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bigquery_destination: Option<BigQueryDestination>BigQuery destination where the query results will be saved.
Implementations§
Source§impl QueryAssetsOutputConfig
impl QueryAssetsOutputConfig
pub fn new() -> Self
Sourcepub fn set_bigquery_destination<T>(self, v: T) -> Selfwhere
T: Into<BigQueryDestination>,
pub fn set_bigquery_destination<T>(self, v: T) -> Selfwhere
T: Into<BigQueryDestination>,
Sets the value of bigquery_destination.
Sourcepub fn set_or_clear_bigquery_destination<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryDestination>,
pub fn set_or_clear_bigquery_destination<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryDestination>,
Sets or clears the value of bigquery_destination.
Trait Implementations§
Source§impl Clone for QueryAssetsOutputConfig
impl Clone for QueryAssetsOutputConfig
Source§fn clone(&self) -> QueryAssetsOutputConfig
fn clone(&self) -> QueryAssetsOutputConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryAssetsOutputConfig
impl Debug for QueryAssetsOutputConfig
Source§impl Default for QueryAssetsOutputConfig
impl Default for QueryAssetsOutputConfig
Source§fn default() -> QueryAssetsOutputConfig
fn default() -> QueryAssetsOutputConfig
Returns the “default value” for a type. Read more
Source§impl Message for QueryAssetsOutputConfig
impl Message for QueryAssetsOutputConfig
Source§impl PartialEq for QueryAssetsOutputConfig
impl PartialEq for QueryAssetsOutputConfig
impl StructuralPartialEq for QueryAssetsOutputConfig
Auto Trait Implementations§
impl Freeze for QueryAssetsOutputConfig
impl RefUnwindSafe for QueryAssetsOutputConfig
impl Send for QueryAssetsOutputConfig
impl Sync for QueryAssetsOutputConfig
impl Unpin for QueryAssetsOutputConfig
impl UnwindSafe for QueryAssetsOutputConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more