pub struct UtcTimestampToEpochMsDatabricksTransform;Expand description
Convert utc_timestamp_to_epoch_ms(ts) -> unix_timestamp(ts) * 1000 + (date_part(‘second’, ts) % 1) * 1000
Implementations§
Source§impl UtcTimestampToEpochMsDatabricksTransform
impl UtcTimestampToEpochMsDatabricksTransform
pub fn new_dyn() -> Arc<dyn FunctionTransformer>
Trait Implementations§
Source§impl Clone for UtcTimestampToEpochMsDatabricksTransform
impl Clone for UtcTimestampToEpochMsDatabricksTransform
Source§fn clone(&self) -> UtcTimestampToEpochMsDatabricksTransform
fn clone(&self) -> UtcTimestampToEpochMsDatabricksTransform
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 UtcTimestampToEpochMsDatabricksTransform
impl RefUnwindSafe for UtcTimestampToEpochMsDatabricksTransform
impl Send for UtcTimestampToEpochMsDatabricksTransform
impl Sync for UtcTimestampToEpochMsDatabricksTransform
impl Unpin for UtcTimestampToEpochMsDatabricksTransform
impl UnwindSafe for UtcTimestampToEpochMsDatabricksTransform
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