Struct google_bigquery2::TableListTables
source · pub struct TableListTables {
pub kind: Option<String>,
pub view: Option<TableListTablesView>,
pub friendly_name: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub type_: Option<String>,
pub table_reference: Option<TableReference>,
pub id: Option<String>,
}Expand description
Tables in the requested dataset.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>The resource type.
view: Option<TableListTablesView>Additional details for a view.
friendly_name: Option<String>The user-friendly name for this table.
labels: Option<HashMap<String, String>>[Experimental] The labels associated with this table. You can use these to organize and group your tables.
type_: Option<String>The type of table. Possible values are: TABLE, VIEW.
table_reference: Option<TableReference>A reference uniquely identifying the table.
id: Option<String>An opaque ID of the table
Trait Implementations§
source§impl Clone for TableListTables
impl Clone for TableListTables
source§fn clone(&self) -> TableListTables
fn clone(&self) -> TableListTables
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 TableListTables
impl Debug for TableListTables
source§impl Default for TableListTables
impl Default for TableListTables
source§fn default() -> TableListTables
fn default() -> TableListTables
Returns the “default value” for a type. Read more
source§impl Deserialize for TableListTables
impl Deserialize for TableListTables
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for TableListTables
impl Serialize for TableListTables
impl NestedType for TableListTables
impl Part for TableListTables
Auto Trait Implementations§
impl Freeze for TableListTables
impl RefUnwindSafe for TableListTables
impl Send for TableListTables
impl Sync for TableListTables
impl Unpin for TableListTables
impl UnwindSafe for TableListTables
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more