#[non_exhaustive]pub struct SingleTargetDataset {
pub dataset_id: String,
/* private fields */
}
Expand description
A single target dataset to which all data will be streamed.
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: String
The dataset ID of the target dataset. DatasetIds allowed characters: https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets#datasetreference.
Implementations§
Source§impl SingleTargetDataset
impl SingleTargetDataset
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 SingleTargetDataset
impl Clone for SingleTargetDataset
Source§fn clone(&self) -> SingleTargetDataset
fn clone(&self) -> SingleTargetDataset
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 SingleTargetDataset
impl Debug for SingleTargetDataset
Source§impl Default for SingleTargetDataset
impl Default for SingleTargetDataset
Source§fn default() -> SingleTargetDataset
fn default() -> SingleTargetDataset
Returns the “default value” for a type. Read more
Source§impl Message for SingleTargetDataset
impl Message for SingleTargetDataset
Source§impl PartialEq for SingleTargetDataset
impl PartialEq for SingleTargetDataset
impl StructuralPartialEq for SingleTargetDataset
Auto Trait Implementations§
impl Freeze for SingleTargetDataset
impl RefUnwindSafe for SingleTargetDataset
impl Send for SingleTargetDataset
impl Sync for SingleTargetDataset
impl Unpin for SingleTargetDataset
impl UnwindSafe for SingleTargetDataset
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