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