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