#[non_exhaustive]pub struct BigQueryPublishing {
pub dataset: String,
pub location: String,
/* private fields */
}Expand description
Describes BigQuery publishing configurations.
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: StringOutput only. The BigQuery dataset the discovered tables are published to.
location: StringOutput only. The location of the BigQuery publishing dataset.
Implementations§
Trait Implementations§
Source§impl Clone for BigQueryPublishing
impl Clone for BigQueryPublishing
Source§fn clone(&self) -> BigQueryPublishing
fn clone(&self) -> BigQueryPublishing
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 BigQueryPublishing
impl Debug for BigQueryPublishing
Source§impl Default for BigQueryPublishing
impl Default for BigQueryPublishing
Source§fn default() -> BigQueryPublishing
fn default() -> BigQueryPublishing
Returns the “default value” for a type. Read more
Source§impl Message for BigQueryPublishing
impl Message for BigQueryPublishing
Source§impl PartialEq for BigQueryPublishing
impl PartialEq for BigQueryPublishing
impl StructuralPartialEq for BigQueryPublishing
Auto Trait Implementations§
impl Freeze for BigQueryPublishing
impl RefUnwindSafe for BigQueryPublishing
impl Send for BigQueryPublishing
impl Sync for BigQueryPublishing
impl Unpin for BigQueryPublishing
impl UnwindSafe for BigQueryPublishing
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