#[non_exhaustive]pub struct BigQuerySource {
pub input_uri: String,
/* private fields */
}Expand description
The BigQuery location for the input 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.input_uri: StringRequired. BigQuery URI to a table, up to 2000 characters long. Accepted forms:
- BigQuery path. For example:
bq://projectId.bqDatasetId.bqTableId.
Implementations§
Trait Implementations§
Source§impl Clone for BigQuerySource
impl Clone for BigQuerySource
Source§fn clone(&self) -> BigQuerySource
fn clone(&self) -> BigQuerySource
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 BigQuerySource
impl Debug for BigQuerySource
Source§impl Default for BigQuerySource
impl Default for BigQuerySource
Source§fn default() -> BigQuerySource
fn default() -> BigQuerySource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BigQuerySourcewhere
BigQuerySource: Default,
impl<'de> Deserialize<'de> for BigQuerySourcewhere
BigQuerySource: 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 BigQuerySource
impl Message for BigQuerySource
Source§impl PartialEq for BigQuerySource
impl PartialEq for BigQuerySource
Source§impl Serialize for BigQuerySource
impl Serialize for BigQuerySource
impl StructuralPartialEq for BigQuerySource
Auto Trait Implementations§
impl Freeze for BigQuerySource
impl RefUnwindSafe for BigQuerySource
impl Send for BigQuerySource
impl Sync for BigQuerySource
impl Unpin for BigQuerySource
impl UnwindSafe for BigQuerySource
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