#[non_exhaustive]pub struct BigQueryDataset {
pub dataset_id: String,
/* private fields */
}Expand description
Describes a BigQuery dataset that was created by a link.
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: StringOutput only. The full resource name of the BigQuery dataset. The DATASET_ID will match the ID of the link, so the link must match the naming restrictions of BigQuery datasets (alphanumeric characters and underscores only).
The dataset will have a resource path of “bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET_ID]”
Implementations§
Source§impl BigQueryDataset
impl BigQueryDataset
pub fn new() -> Self
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.
Trait Implementations§
Source§impl Clone for BigQueryDataset
impl Clone for BigQueryDataset
Source§fn clone(&self) -> BigQueryDataset
fn clone(&self) -> BigQueryDataset
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 BigQueryDataset
impl Debug for BigQueryDataset
Source§impl Default for BigQueryDataset
impl Default for BigQueryDataset
Source§fn default() -> BigQueryDataset
fn default() -> BigQueryDataset
Returns the “default value” for a type. Read more
Source§impl Message for BigQueryDataset
impl Message for BigQueryDataset
Source§impl PartialEq for BigQueryDataset
impl PartialEq for BigQueryDataset
impl StructuralPartialEq for BigQueryDataset
Auto Trait Implementations§
impl Freeze for BigQueryDataset
impl RefUnwindSafe for BigQueryDataset
impl Send for BigQueryDataset
impl Sync for BigQueryDataset
impl Unpin for BigQueryDataset
impl UnwindSafe for BigQueryDataset
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