#[non_exhaustive]pub struct BigQuerySource {
pub uri: String,
pub entity_id_columns: Vec<String>,
/* private fields */
}Available on crate feature
feature-online-store-admin-service only.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.uri: StringRequired. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig.
entity_id_columns: Vec<String>Required. Columns to construct entity_id / row keys.
Implementations§
Source§impl BigQuerySource
impl BigQuerySource
Trait Implementations§
Source§impl Clone for BigQuerySource
impl Clone for BigQuerySource
Source§fn clone(&self) -> BigQuerySource
fn clone(&self) -> BigQuerySource
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 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 Message for BigQuerySource
impl Message for BigQuerySource
Source§impl PartialEq for BigQuerySource
impl PartialEq 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