pub struct DeltaLogicalCodec {}
Expand description
Does serde on DeltaTables
Trait Implementations§
Source§impl Debug for DeltaLogicalCodec
impl Debug for DeltaLogicalCodec
Source§impl LogicalExtensionCodec for DeltaLogicalCodec
impl LogicalExtensionCodec for DeltaLogicalCodec
fn try_decode( &self, _buf: &[u8], _inputs: &[LogicalPlan], _ctx: &SessionContext, ) -> Result<Extension, DataFusionError>
fn try_encode( &self, _node: &Extension, _buf: &mut Vec<u8>, ) -> Result<(), DataFusionError>
fn try_decode_table_provider( &self, buf: &[u8], _table_ref: &TableReference, _schema: SchemaRef, _ctx: &SessionContext, ) -> Result<Arc<dyn TableProvider>, DataFusionError>
fn try_encode_table_provider( &self, _table_ref: &TableReference, node: Arc<dyn TableProvider>, buf: &mut Vec<u8>, ) -> Result<(), DataFusionError>
fn try_decode_file_format( &self, _buf: &[u8], _ctx: &SessionContext, ) -> Result<Arc<dyn FileFormatFactory>, DataFusionError>
fn try_encode_file_format( &self, _buf: &mut Vec<u8>, _node: Arc<dyn FileFormatFactory>, ) -> Result<(), DataFusionError>
fn try_decode_udf( &self, name: &str, _buf: &[u8], ) -> Result<Arc<ScalarUDF>, DataFusionError>
fn try_encode_udf( &self, _node: &ScalarUDF, _buf: &mut Vec<u8>, ) -> Result<(), DataFusionError>
fn try_decode_udaf( &self, name: &str, _buf: &[u8], ) -> Result<Arc<AggregateUDF>, DataFusionError>
fn try_encode_udaf( &self, _node: &AggregateUDF, _buf: &mut Vec<u8>, ) -> Result<(), DataFusionError>
fn try_decode_udwf( &self, name: &str, _buf: &[u8], ) -> Result<Arc<WindowUDF>, DataFusionError>
fn try_encode_udwf( &self, _node: &WindowUDF, _buf: &mut Vec<u8>, ) -> Result<(), DataFusionError>
Auto Trait Implementations§
impl Freeze for DeltaLogicalCodec
impl RefUnwindSafe for DeltaLogicalCodec
impl Send for DeltaLogicalCodec
impl Sync for DeltaLogicalCodec
impl Unpin for DeltaLogicalCodec
impl UnwindSafe for DeltaLogicalCodec
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> 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 more