Struct gcp_bigquery_client::model::table_field_schema::TableFieldSchema [−][src]
pub struct TableFieldSchema {
pub categories: Option<TableFieldSchemaCategories>,
pub description: Option<String>,
pub fields: Option<Vec<TableFieldSchema>>,
pub mode: Option<String>,
pub name: String,
pub policy_tags: Option<TableFieldSchemaPolicyTags>,
pub type: FieldType,
}Fields
categories: Option<TableFieldSchemaCategories>description: Option<String>[Optional] The field description. The maximum length is 1,024 characters.
fields: Option<Vec<TableFieldSchema>>[Optional] Describes the nested schema fields if the type property is set to RECORD.
mode: Option<String>[Optional] The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE.
name: String[Required] The field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 128 characters.
type: FieldType[Required] The field data type. Possible values include STRING, BYTES, INTEGER, INT64 (same as INTEGER), FLOAT, FLOAT64 (same as FLOAT), NUMERIC, BIGNUMERIC, BOOLEAN, BOOL (same as BOOLEAN), TIMESTAMP, DATE, TIME, DATETIME, RECORD (where RECORD indicates that the field contains a nested schema) or STRUCT (same as RECORD).
Implementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for TableFieldSchema
impl Send for TableFieldSchema
impl Sync for TableFieldSchema
impl Unpin for TableFieldSchema
impl UnwindSafe for TableFieldSchema
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more