Struct vegafusion_sql::dialect::transforms::str_to_utc_timestamp::StrToUtcTimestampSnowflakeTransformer
source · pub struct StrToUtcTimestampSnowflakeTransformer;Expand description
Convert str_to_utc_timestamp(ts, tz) -> convert_timezone(tz, ‘UTC’, CAST(ts as timestamp_ntz)) or if tz = ‘UTC’ CAST(ts as timestamp_ntz)
Implementations§
source§impl StrToUtcTimestampSnowflakeTransformer
impl StrToUtcTimestampSnowflakeTransformer
pub fn new_dyn() -> Arc<dyn FunctionTransformer>
Trait Implementations§
source§impl Clone for StrToUtcTimestampSnowflakeTransformer
impl Clone for StrToUtcTimestampSnowflakeTransformer
source§fn clone(&self) -> StrToUtcTimestampSnowflakeTransformer
fn clone(&self) -> StrToUtcTimestampSnowflakeTransformer
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 moreAuto Trait Implementations§
impl Freeze for StrToUtcTimestampSnowflakeTransformer
impl RefUnwindSafe for StrToUtcTimestampSnowflakeTransformer
impl Send for StrToUtcTimestampSnowflakeTransformer
impl Sync for StrToUtcTimestampSnowflakeTransformer
impl Unpin for StrToUtcTimestampSnowflakeTransformer
impl UnwindSafe for StrToUtcTimestampSnowflakeTransformer
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