#[non_exhaustive]pub struct BigQueryDestination {
pub output_uri: String,
/* private fields */
}Expand description
The BigQuery location for the output content.
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.output_uri: StringRequired. BigQuery URI to a project or table, up to 2000 characters long.
When only the project is specified, the Dataset and Table is created. When the full table reference is specified, the Dataset must exist and table must not exist.
Accepted forms:
- BigQuery path. For example:
bq://projectIdorbq://projectId.bqDatasetIdorbq://projectId.bqDatasetId.bqTableId.
Implementations§
Source§impl BigQueryDestination
impl BigQueryDestination
pub fn new() -> Self
Sourcepub fn set_output_uri<T: Into<String>>(self, v: T) -> Self
pub fn set_output_uri<T: Into<String>>(self, v: T) -> Self
Sets the value of output_uri.
Trait Implementations§
Source§impl Clone for BigQueryDestination
impl Clone for BigQueryDestination
Source§fn clone(&self) -> BigQueryDestination
fn clone(&self) -> BigQueryDestination
Returns a copy 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 BigQueryDestination
impl Debug for BigQueryDestination
Source§impl Default for BigQueryDestination
impl Default for BigQueryDestination
Source§fn default() -> BigQueryDestination
fn default() -> BigQueryDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BigQueryDestinationwhere
BigQueryDestination: Default,
impl<'de> Deserialize<'de> for BigQueryDestinationwhere
BigQueryDestination: Default,
Source§fn 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
Source§impl Message for BigQueryDestination
impl Message for BigQueryDestination
Source§impl PartialEq for BigQueryDestination
impl PartialEq for BigQueryDestination
Source§impl Serialize for BigQueryDestination
impl Serialize for BigQueryDestination
impl StructuralPartialEq for BigQueryDestination
Auto Trait Implementations§
impl Freeze for BigQueryDestination
impl RefUnwindSafe for BigQueryDestination
impl Send for BigQueryDestination
impl Sync for BigQueryDestination
impl Unpin for BigQueryDestination
impl UnwindSafe for BigQueryDestination
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