pub enum DataTypeSelector {
Show 23 variants
Union(Arc<DataTypeSelector>, Arc<DataTypeSelector>),
Difference(Arc<DataTypeSelector>, Arc<DataTypeSelector>),
ExclusiveOr(Arc<DataTypeSelector>, Arc<DataTypeSelector>),
Intersect(Arc<DataTypeSelector>, Arc<DataTypeSelector>),
Wildcard,
Empty,
AnyOf(Arc<[DataType]>),
Integer,
UnsignedInteger,
SignedInteger,
Float,
Enum,
Categorical,
Nested,
List(Option<Arc<DataTypeSelector>>),
Array(Option<Arc<DataTypeSelector>>, Option<usize>),
Struct,
Decimal,
Numeric,
Temporal,
Datetime(TimeUnitSet, TimeZoneSet),
Duration(TimeUnitSet),
Object,
}
Variants§
Union(Arc<DataTypeSelector>, Arc<DataTypeSelector>)
Difference(Arc<DataTypeSelector>, Arc<DataTypeSelector>)
ExclusiveOr(Arc<DataTypeSelector>, Arc<DataTypeSelector>)
Intersect(Arc<DataTypeSelector>, Arc<DataTypeSelector>)
Wildcard
Empty
AnyOf(Arc<[DataType]>)
Integer
UnsignedInteger
SignedInteger
Float
Enum
Categorical
Nested
List(Option<Arc<DataTypeSelector>>)
Array(Option<Arc<DataTypeSelector>>, Option<usize>)
Struct
Decimal
Numeric
Temporal
Datetime(TimeUnitSet, TimeZoneSet)
Selector for DataType::Datetime
with optional matching on TimeUnit and TimeZone.
Duration(TimeUnitSet)
Selector for DataType::Duration
with optional matching on TimeUnit.
Object
Implementations§
Trait Implementations§
Source§impl BitAnd for DataTypeSelector
impl BitAnd for DataTypeSelector
Source§type Output = DataTypeSelector
type Output = DataTypeSelector
The resulting type after applying the
&
operator.Source§fn bitand(self, rhs: DataTypeSelector) -> <DataTypeSelector as BitAnd>::Output
fn bitand(self, rhs: DataTypeSelector) -> <DataTypeSelector as BitAnd>::Output
Performs the
&
operation. Read moreSource§impl BitAndAssign for DataTypeSelector
impl BitAndAssign for DataTypeSelector
Source§fn bitand_assign(&mut self, rhs: DataTypeSelector)
fn bitand_assign(&mut self, rhs: DataTypeSelector)
Performs the
&=
operation. Read moreSource§impl BitOr for DataTypeSelector
impl BitOr for DataTypeSelector
Source§type Output = DataTypeSelector
type Output = DataTypeSelector
The resulting type after applying the
|
operator.Source§fn bitor(self, rhs: DataTypeSelector) -> <DataTypeSelector as BitOr>::Output
fn bitor(self, rhs: DataTypeSelector) -> <DataTypeSelector as BitOr>::Output
Performs the
|
operation. Read moreSource§impl BitOrAssign for DataTypeSelector
impl BitOrAssign for DataTypeSelector
Source§fn bitor_assign(&mut self, rhs: DataTypeSelector)
fn bitor_assign(&mut self, rhs: DataTypeSelector)
Performs the
|=
operation. Read moreSource§impl BitXor for DataTypeSelector
impl BitXor for DataTypeSelector
Source§type Output = DataTypeSelector
type Output = DataTypeSelector
The resulting type after applying the
^
operator.Source§fn bitxor(self, rhs: DataTypeSelector) -> <DataTypeSelector as BitXor>::Output
fn bitxor(self, rhs: DataTypeSelector) -> <DataTypeSelector as BitXor>::Output
Performs the
^
operation. Read moreSource§impl BitXorAssign for DataTypeSelector
impl BitXorAssign for DataTypeSelector
Source§fn bitxor_assign(&mut self, rhs: DataTypeSelector)
fn bitxor_assign(&mut self, rhs: DataTypeSelector)
Performs the
^=
operation. Read moreSource§impl Clone for DataTypeSelector
impl Clone for DataTypeSelector
Source§fn clone(&self) -> DataTypeSelector
fn clone(&self) -> DataTypeSelector
Returns a duplicate 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 DataTypeSelector
impl Debug for DataTypeSelector
Source§impl<'de> Deserialize<'de> for DataTypeSelector
impl<'de> Deserialize<'de> for DataTypeSelector
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DataTypeSelector, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DataTypeSelector, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DataTypeSelector
impl Display for DataTypeSelector
Source§impl Hash for DataTypeSelector
impl Hash for DataTypeSelector
Source§impl Not for DataTypeSelector
impl Not for DataTypeSelector
Source§impl PartialEq for DataTypeSelector
impl PartialEq for DataTypeSelector
Source§impl Serialize for DataTypeSelector
impl Serialize for DataTypeSelector
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl Sub for DataTypeSelector
impl Sub for DataTypeSelector
Source§type Output = DataTypeSelector
type Output = DataTypeSelector
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: DataTypeSelector) -> <DataTypeSelector as Sub>::Output
fn sub(self, rhs: DataTypeSelector) -> <DataTypeSelector as Sub>::Output
Performs the
-
operation. Read moreSource§impl SubAssign for DataTypeSelector
impl SubAssign for DataTypeSelector
Source§fn sub_assign(&mut self, rhs: DataTypeSelector)
fn sub_assign(&mut self, rhs: DataTypeSelector)
Performs the
-=
operation. Read moreimpl Eq for DataTypeSelector
impl StructuralPartialEq for DataTypeSelector
Auto Trait Implementations§
impl Freeze for DataTypeSelector
impl RefUnwindSafe for DataTypeSelector
impl Send for DataTypeSelector
impl Sync for DataTypeSelector
impl Unpin for DataTypeSelector
impl UnwindSafe for DataTypeSelector
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Key for Twhere
T: Clone,
impl<T> Key for Twhere
T: Clone,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string()
Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read moreSource§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.