DefaultTransform

Struct DefaultTransform 

Source
pub struct DefaultTransform {}

Trait Implementations§

Source§

impl Debug for DefaultTransform

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Transform for DefaultTransform

Source§

fn as_any(&self) -> &dyn Any

Source§

fn transform_null( &self, array: &NullArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_boolean( &self, array: &BooleanArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_int8( &self, array: &Int8Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_int16( &self, array: &Int16Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_int32( &self, array: &Int32Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_int64( &self, array: &Int64Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_uint8( &self, array: &UInt8Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_uint16( &self, array: &UInt16Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_uint32( &self, array: &UInt32Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_uint64( &self, array: &UInt64Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_float16( &self, array: &Float16Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_float32( &self, array: &Float32Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_float64( &self, array: &Float64Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_binary( &self, array: &BinaryArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_fixed_size_binary( &self, array: &FixedSizeBinaryArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_large_binary( &self, array: &LargeBinaryArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_binary_view( &self, array: &BinaryViewArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_utf8( &self, array: &StringArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_large_utf8( &self, array: &LargeStringArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_utf8_view( &self, array: &StringViewArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_timestamp_second( &self, array: &TimestampSecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_timestamp_millisecond( &self, array: &TimestampMillisecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_timestamp_microsecond( &self, array: &TimestampMicrosecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_timestamp_nanosecond( &self, array: &TimestampNanosecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_date32( &self, array: &Date32Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_date64( &self, array: &Date64Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_time32_second( &self, array: &Time32SecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_time32_millisecond( &self, array: &Time32MillisecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_time64_microsecond( &self, array: &Time64MicrosecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_time64_nanosecond( &self, array: &Time64NanosecondArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_interval_year_month( &self, array: &IntervalYearMonthArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_interval_day_time( &self, array: &IntervalDayTimeArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_interval_month_day_nano( &self, array: &IntervalMonthDayNanoArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_list( &self, array: &ListArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_list_view( &self, array: &ListViewArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_fixed_size_list( &self, array: &FixedSizeListArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_large_list( &self, array: &LargeListArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_large_list_view( &self, array: &LargeListViewArray, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_decimal128( &self, array: &Decimal128Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Source§

fn transform_decimal256( &self, array: &Decimal256Array, args: TransformArgs<'_>, ) -> Result<(ArrayRef, Field)>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> ErasedDestructor for T
where T: 'static,