pub struct GoogleBigQuerySource {
pub tabular_source: TabularSource,
pub query: Option<Value>,
}Expand description
A copy activity Google BigQuery service source.
Fields§
§tabular_source: TabularSource§query: Option<Value>A query to retrieve data from source. Type: string (or Expression with resultType string).
Implementations§
Source§impl GoogleBigQuerySource
impl GoogleBigQuerySource
pub fn new(tabular_source: TabularSource) -> Self
Trait Implementations§
Source§impl Clone for GoogleBigQuerySource
impl Clone for GoogleBigQuerySource
Source§fn clone(&self) -> GoogleBigQuerySource
fn clone(&self) -> GoogleBigQuerySource
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 GoogleBigQuerySource
impl Debug for GoogleBigQuerySource
Source§impl<'de> Deserialize<'de> for GoogleBigQuerySource
impl<'de> Deserialize<'de> for GoogleBigQuerySource
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 PartialEq for GoogleBigQuerySource
impl PartialEq for GoogleBigQuerySource
Source§impl Serialize for GoogleBigQuerySource
impl Serialize for GoogleBigQuerySource
impl StructuralPartialEq for GoogleBigQuerySource
Auto Trait Implementations§
impl Freeze for GoogleBigQuerySource
impl RefUnwindSafe for GoogleBigQuerySource
impl Send for GoogleBigQuerySource
impl Sync for GoogleBigQuerySource
impl Unpin for GoogleBigQuerySource
impl UnwindSafe for GoogleBigQuerySource
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