pub struct RemoteExtensionCodec {}Trait Implementations§
Source§impl Clone for RemoteExtensionCodec
impl Clone for RemoteExtensionCodec
Source§fn clone(&self) -> RemoteExtensionCodec
fn clone(&self) -> RemoteExtensionCodec
Returns a copy 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 RemoteExtensionCodec
impl Debug for RemoteExtensionCodec
Source§impl Default for RemoteExtensionCodec
impl Default for RemoteExtensionCodec
Source§fn default() -> RemoteExtensionCodec
fn default() -> RemoteExtensionCodec
Returns the “default value” for a type. Read more
Source§impl LogicalExtensionCodec for RemoteExtensionCodec
impl LogicalExtensionCodec for RemoteExtensionCodec
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], schema: SchemaRef, _ctx: &SessionContext, ) -> Result<Arc<dyn TableProvider>>
fn try_encode_table_provider( &self, node: Arc<dyn TableProvider>, buf: &mut Vec<u8>, ) -> Result<()>
impl Copy for RemoteExtensionCodec
Auto Trait Implementations§
impl Freeze for RemoteExtensionCodec
impl RefUnwindSafe for RemoteExtensionCodec
impl Send for RemoteExtensionCodec
impl Sync for RemoteExtensionCodec
impl Unpin for RemoteExtensionCodec
impl UnwindSafe for RemoteExtensionCodec
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> 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