pub struct ArrowLogicalExtensionCodec;
Trait Implementations§
Source§impl Debug for ArrowLogicalExtensionCodec
impl Debug for ArrowLogicalExtensionCodec
Source§impl LogicalExtensionCodec for ArrowLogicalExtensionCodec
impl LogicalExtensionCodec for ArrowLogicalExtensionCodec
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 ArrowLogicalExtensionCodec
impl RefUnwindSafe for ArrowLogicalExtensionCodec
impl Send for ArrowLogicalExtensionCodec
impl Sync for ArrowLogicalExtensionCodec
impl Unpin for ArrowLogicalExtensionCodec
impl UnwindSafe for ArrowLogicalExtensionCodec
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> 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