pub enum TransformKind {
Direct,
Cast,
Aggregation,
Constant,
Expression,
Star,
}Expand description
High-level kind of transformation performed by a projection.
Variants§
Trait Implementations§
Source§impl Clone for TransformKind
impl Clone for TransformKind
Source§fn clone(&self) -> TransformKind
fn clone(&self) -> TransformKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TransformKind
Source§impl Debug for TransformKind
impl Debug for TransformKind
Source§impl<'de> Deserialize<'de> for TransformKind
impl<'de> Deserialize<'de> for TransformKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TransformKind
Source§impl PartialEq for TransformKind
impl PartialEq for TransformKind
Source§fn eq(&self, other: &TransformKind) -> bool
fn eq(&self, other: &TransformKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TransformKind
impl Serialize for TransformKind
impl StructuralPartialEq for TransformKind
Auto Trait Implementations§
impl Freeze for TransformKind
impl RefUnwindSafe for TransformKind
impl Send for TransformKind
impl Sync for TransformKind
impl Unpin for TransformKind
impl UnsafeUnpin for TransformKind
impl UnwindSafe for TransformKind
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