Struct vegafusion_sql::dialect::transforms::str_to_utc_timestamp::StrToUtcTimestampWithCastAndAtTimeZoneTransformer
source · pub struct StrToUtcTimestampWithCastAndAtTimeZoneTransformer { /* private fields */ }Expand description
Convert str_to_utc_timestamp(ts, tz) -> CAST(ts as TIMESTAMP) AT TIME ZONE tz AT TIME ZONE ‘UTC’ or if tz = ‘UTC’ CAST(ts as TIMESTAMP)
Implementations§
source§impl StrToUtcTimestampWithCastAndAtTimeZoneTransformer
impl StrToUtcTimestampWithCastAndAtTimeZoneTransformer
pub fn new_dyn(timestamp_type: SqlDataType) -> Arc<dyn FunctionTransformer>
Trait Implementations§
source§impl Clone for StrToUtcTimestampWithCastAndAtTimeZoneTransformer
impl Clone for StrToUtcTimestampWithCastAndAtTimeZoneTransformer
source§fn clone(&self) -> StrToUtcTimestampWithCastAndAtTimeZoneTransformer
fn clone(&self) -> StrToUtcTimestampWithCastAndAtTimeZoneTransformer
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 StrToUtcTimestampWithCastAndAtTimeZoneTransformer
impl Send for StrToUtcTimestampWithCastAndAtTimeZoneTransformer
impl Sync for StrToUtcTimestampWithCastAndAtTimeZoneTransformer
impl Unpin for StrToUtcTimestampWithCastAndAtTimeZoneTransformer
impl UnwindSafe for StrToUtcTimestampWithCastAndAtTimeZoneTransformer
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