Struct vegafusion_sql::dialect::transforms::utc_timestamp_to_str::UtcTimestampToStrPostgresTransformer
source · pub struct UtcTimestampToStrPostgresTransformer;Expand description
Convert utc_timestamp_to_str(ts, tz) -> to_char(ts AT TIME ZONE ‘UTC’ AT TIME ZONE tz, ‘YYYY-MM-DD“T“HH24:MI:SS.MS’)) or if tz == ‘UTC’ to_char(ts, ‘YYYY-MM-DD“T“HH24:MI:SS.MS’)
Implementations§
source§impl UtcTimestampToStrPostgresTransformer
impl UtcTimestampToStrPostgresTransformer
pub fn new_dyn() -> Arc<dyn FunctionTransformer>
Trait Implementations§
source§impl Clone for UtcTimestampToStrPostgresTransformer
impl Clone for UtcTimestampToStrPostgresTransformer
source§fn clone(&self) -> UtcTimestampToStrPostgresTransformer
fn clone(&self) -> UtcTimestampToStrPostgresTransformer
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 UtcTimestampToStrPostgresTransformer
impl RefUnwindSafe for UtcTimestampToStrPostgresTransformer
impl Send for UtcTimestampToStrPostgresTransformer
impl Sync for UtcTimestampToStrPostgresTransformer
impl Unpin for UtcTimestampToStrPostgresTransformer
impl UnwindSafe for UtcTimestampToStrPostgresTransformer
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