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