pub struct TransformColumn {
pub name: Option<String>,
pub transform_sql: Option<String>,
pub type_: Option<StandardSqlDataType>,
}Expand description
Information about a single transform column.
This type is not used in any activity, and only used as part of another schema.
Fields§
§name: Option<String>Output only. Name of the column.
transform_sql: Option<String>Output only. The SQL expression used in the column transform.
type_: Option<StandardSqlDataType>Output only. Data type of the column after the transform.
Trait Implementations§
Source§impl Clone for TransformColumn
impl Clone for TransformColumn
Source§fn clone(&self) -> TransformColumn
fn clone(&self) -> TransformColumn
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 TransformColumn
impl Debug for TransformColumn
Source§impl Default for TransformColumn
impl Default for TransformColumn
Source§fn default() -> TransformColumn
fn default() -> TransformColumn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransformColumn
impl<'de> Deserialize<'de> for TransformColumn
Source§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
Source§impl Serialize for TransformColumn
impl Serialize for TransformColumn
impl Part for TransformColumn
Auto Trait Implementations§
impl Freeze for TransformColumn
impl RefUnwindSafe for TransformColumn
impl Send for TransformColumn
impl Sync for TransformColumn
impl Unpin for TransformColumn
impl UnwindSafe for TransformColumn
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