#[non_exhaustive]pub struct BigQueryOutputResult {
pub dataset_id: String,
pub table_id: String,
/* private fields */
}Expand description
A BigQuery output result.
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.dataset_id: StringThe ID of a BigQuery Dataset.
table_id: StringThe ID of a BigQuery Table.
Implementations§
Source§impl BigQueryOutputResult
impl BigQueryOutputResult
Sourcepub fn set_dataset_id<T: Into<String>>(self, v: T) -> Self
pub fn set_dataset_id<T: Into<String>>(self, v: T) -> Self
Sets the value of dataset_id.
§Example
ⓘ
let x = BigQueryOutputResult::new().set_dataset_id("example");Trait Implementations§
Source§impl Clone for BigQueryOutputResult
impl Clone for BigQueryOutputResult
Source§fn clone(&self) -> BigQueryOutputResult
fn clone(&self) -> BigQueryOutputResult
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 BigQueryOutputResult
impl Debug for BigQueryOutputResult
Source§impl Default for BigQueryOutputResult
impl Default for BigQueryOutputResult
Source§fn default() -> BigQueryOutputResult
fn default() -> BigQueryOutputResult
Returns the “default value” for a type. Read more
Source§impl Message for BigQueryOutputResult
impl Message for BigQueryOutputResult
Source§impl PartialEq for BigQueryOutputResult
impl PartialEq for BigQueryOutputResult
impl StructuralPartialEq for BigQueryOutputResult
Auto Trait Implementations§
impl Freeze for BigQueryOutputResult
impl RefUnwindSafe for BigQueryOutputResult
impl Send for BigQueryOutputResult
impl Sync for BigQueryOutputResult
impl Unpin for BigQueryOutputResult
impl UnsafeUnpin for BigQueryOutputResult
impl UnwindSafe for BigQueryOutputResult
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