Enum sql_migration_sim::ast::CastFormat
source · pub enum CastFormat {
Value(Value),
ValueAtTimeZone(Value, Value),
}
Expand description
Options for CAST
/ TRY_CAST
BigQuery: https://cloud.google.com/bigquery/docs/reference/standard-sql/format-elements#formatting_syntax
Variants§
Trait Implementations§
source§impl Clone for CastFormat
impl Clone for CastFormat
source§fn clone(&self) -> CastFormat
fn clone(&self) -> CastFormat
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 moresource§impl Debug for CastFormat
impl Debug for CastFormat
source§impl Display for CastFormat
impl Display for CastFormat
source§impl Hash for CastFormat
impl Hash for CastFormat
source§impl Ord for CastFormat
impl Ord for CastFormat
source§fn cmp(&self, other: &CastFormat) -> Ordering
fn cmp(&self, other: &CastFormat) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for CastFormat
impl PartialEq for CastFormat
source§fn eq(&self, other: &CastFormat) -> bool
fn eq(&self, other: &CastFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for CastFormat
impl PartialOrd for CastFormat
source§fn partial_cmp(&self, other: &CastFormat) -> Option<Ordering>
fn partial_cmp(&self, other: &CastFormat) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for CastFormat
impl StructuralEq for CastFormat
impl StructuralPartialEq for CastFormat
Auto Trait Implementations§
impl RefUnwindSafe for CastFormat
impl Send for CastFormat
impl Sync for CastFormat
impl Unpin for CastFormat
impl UnwindSafe for CastFormat
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