#[non_exhaustive]pub struct TableReference {
pub project_id: String,
pub dataset_id: String,
pub table_id: String,
/* private fields */
}Expand description
Fully qualified reference to BigQuery table. Internally stored as google.cloud.bi.v1.BqTableReference.
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.project_id: StringOptional. The assigned project ID of the project.
dataset_id: StringOptional. The ID of the dataset in the above project.
table_id: StringOptional. The ID of the table in the above dataset.
Implementations§
Source§impl TableReference
impl TableReference
Sourcepub fn set_project_id<T: Into<String>>(self, v: T) -> Self
pub fn set_project_id<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_dataset_id<T: Into<String>>(self, v: T) -> Self
pub fn set_dataset_id<T: Into<String>>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for TableReference
impl Clone for TableReference
Source§fn clone(&self) -> TableReference
fn clone(&self) -> TableReference
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TableReference
impl Debug for TableReference
Source§impl Default for TableReference
impl Default for TableReference
Source§fn default() -> TableReference
fn default() -> TableReference
Returns the “default value” for a type. Read more
Source§impl Message for TableReference
impl Message for TableReference
Source§impl PartialEq for TableReference
impl PartialEq for TableReference
impl StructuralPartialEq for TableReference
Auto Trait Implementations§
impl Freeze for TableReference
impl RefUnwindSafe for TableReference
impl Send for TableReference
impl Sync for TableReference
impl Unpin for TableReference
impl UnsafeUnpin for TableReference
impl UnwindSafe for TableReference
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