#[non_exhaustive]pub struct Table {
pub created_time: Option<i64>,
pub created_time_dt: Option<String>,
pub desc: Option<String>,
pub groups: Option<Vec<Group>>,
pub modified_time: Option<i64>,
pub modified_time_dt: Option<String>,
pub name: Option<String>,
pub size: Option<i64>,
pub uid: Option<String>,
}Expand description
Table
The table object represents a table within a structured relational database or datastore, which contains columns and rows of data that are able to be create, updated, deleted and queried.
[] Category: | Name: table
Constraints:
- at_least_one:
[name,uid]
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.created_time: Option<i64>Created Time
The time when the table was known to have been created.
optional
created_time_dt: Option<String>Created Time
The time when the table was known to have been created.
optional
desc: Option<String>Description
The description of the table.
optional
groups: Option<Vec<Group>>Groups
The group names to which the table belongs.
optional
modified_time: Option<i64>Modified Time
The most recent time when any changes, updates, or modifications were made within the table.
optional
modified_time_dt: Option<String>Modified Time
The most recent time when any changes, updates, or modifications were made within the table.
optional
name: Option<String>Name
The table name, ordinarily as assigned by a database administrator.
recommended
size: Option<i64>Size
The size of the data table in bytes.
optional
uid: Option<String>Unique ID
The unique identifier of the table.
recommended