Struct vegafusion_sql::dialect::transforms::utc_timestamp_to_str::UtcTimestampToStrSnowflakeTransformer
source · pub struct UtcTimestampToStrSnowflakeTransformer;Expand description
Convert utc_timestamp_to_str(ts, tz) -> to_varchar(convert_timezone(‘UTC’, tz, ts), ‘y-MM-dd HH:mm:ss.SSS’) or if tz == ‘UTC’ to_varchar(ts, ‘y-MM-dd HH:mm:ss.SSS’)
Implementations§
source§impl UtcTimestampToStrSnowflakeTransformer
impl UtcTimestampToStrSnowflakeTransformer
pub fn new_dyn() -> Arc<dyn FunctionTransformer>
Trait Implementations§
source§impl Clone for UtcTimestampToStrSnowflakeTransformer
impl Clone for UtcTimestampToStrSnowflakeTransformer
source§fn clone(&self) -> UtcTimestampToStrSnowflakeTransformer
fn clone(&self) -> UtcTimestampToStrSnowflakeTransformer
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 UtcTimestampToStrSnowflakeTransformer
impl RefUnwindSafe for UtcTimestampToStrSnowflakeTransformer
impl Send for UtcTimestampToStrSnowflakeTransformer
impl Sync for UtcTimestampToStrSnowflakeTransformer
impl Unpin for UtcTimestampToStrSnowflakeTransformer
impl UnwindSafe for UtcTimestampToStrSnowflakeTransformer
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