Type Alias OpaqueColumnUdf

pub type OpaqueColumnUdf = LazySerde<SpecialEq<Arc<dyn ColumnsUdf>>>;
Available on crate feature lazy only.

Aliased Type§

enum OpaqueColumnUdf {
    Deserialized(SpecialEq<Arc<dyn ColumnsUdf>>),
    Bytes(Bytes),
}

Variants§

§

Deserialized(SpecialEq<Arc<dyn ColumnsUdf>>)

§

Bytes(Bytes)

Implementations

Trait Implementations

§

impl<T> Clone for LazySerde<T>
where T: Clone,

§

fn clone(&self) -> LazySerde<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<T> Debug for LazySerde<T>
where T: Clone,

§

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

Formats the value using the given formatter. Read more
§

impl<'a, T> Deserialize<'a> for LazySerde<T>
where T: Deserialize<'a> + Clone,

Available on crate feature serde only.
§

fn deserialize<D>( deserializer: D, ) -> Result<LazySerde<T>, <D as Deserializer<'a>>::Error>
where D: Deserializer<'a>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<T> PartialEq for LazySerde<T>
where T: PartialEq + Clone,

§

fn eq(&self, other: &LazySerde<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<T> Serialize for LazySerde<T>
where T: Serialize + Clone,

Available on crate feature serde only.
§

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