pub struct PhysicalPlanNode {
pub physical_plan_type: Option<PhysicalPlanType>,
}Expand description
PhysicalPlanNode is a nested type
Fields§
§physical_plan_type: Option<PhysicalPlanType>Trait Implementations§
Source§impl AsExecutionPlan for PhysicalPlanNode
impl AsExecutionPlan for PhysicalPlanNode
fn try_decode(buf: &[u8]) -> Result<Self>where
Self: Sized,
fn try_encode<B>(&self, buf: &mut B) -> Result<()>
fn try_into_physical_plan( &self, ctx: &TaskContext, codec: &dyn PhysicalExtensionCodec, ) -> Result<Arc<dyn ExecutionPlan>>
fn try_from_physical_plan(
plan: Arc<dyn ExecutionPlan>,
codec: &dyn PhysicalExtensionCodec,
) -> Result<Self>where
Self: Sized,
Source§impl Clone for PhysicalPlanNode
impl Clone for PhysicalPlanNode
Source§fn clone(&self) -> PhysicalPlanNode
fn clone(&self) -> PhysicalPlanNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PhysicalPlanNode
impl Debug for PhysicalPlanNode
Source§impl Default for PhysicalPlanNode
impl Default for PhysicalPlanNode
Source§fn default() -> PhysicalPlanNode
fn default() -> PhysicalPlanNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PhysicalPlanNode
impl<'de> Deserialize<'de> for PhysicalPlanNode
Source§fn deserialize<D>(
deserializer: D,
) -> Result<PhysicalPlanNode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<PhysicalPlanNode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for PhysicalPlanNode
impl Message for PhysicalPlanNode
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for PhysicalPlanNode
impl PartialEq for PhysicalPlanNode
Source§impl PhysicalPlanNodeExt for PhysicalPlanNode
impl PhysicalPlanNodeExt for PhysicalPlanNode
Source§fn node(&self) -> &PhysicalPlanNode
fn node(&self) -> &PhysicalPlanNode
Returns a reference to the underlying
protobuf::PhysicalPlanNode.fn try_into_physical_plan_with_converter( &self, ctx: &TaskContext, codec: &dyn PhysicalExtensionCodec, proto_converter: &dyn PhysicalProtoConverterExtension, ) -> Result<Arc<dyn ExecutionPlan>>
fn try_into_physical_plan_with_context( &self, ctx: &PhysicalPlanDecodeContext<'_>, proto_converter: &dyn PhysicalProtoConverterExtension, ) -> Result<Arc<dyn ExecutionPlan>>
fn try_from_physical_plan_with_converter( plan: Arc<dyn ExecutionPlan>, codec: &dyn PhysicalExtensionCodec, proto_converter: &dyn PhysicalProtoConverterExtension, ) -> Result<PhysicalPlanNode>
fn try_into_extension_physical_plan( &self, extension: &PhysicalExtensionNode, ctx: &PhysicalPlanDecodeContext<'_>, proto_converter: &dyn PhysicalProtoConverterExtension, ) -> Result<Arc<dyn ExecutionPlan>>
fn generate_series_name_to_str(name: GenerateSeriesName) -> &'static str
fn try_into_generate_series_physical_plan( &self, generate_series: &GenerateSeriesNode, ) -> Result<Arc<dyn ExecutionPlan>>
fn str_to_generate_series_name(name: &str) -> Result<GenerateSeriesName>
fn try_from_lazy_memory_exec( exec: &LazyMemoryExec, ) -> Result<Option<PhysicalPlanNode>>
Source§impl Serialize for PhysicalPlanNode
impl Serialize for PhysicalPlanNode
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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
impl StructuralPartialEq for PhysicalPlanNode
Auto Trait Implementations§
impl Freeze for PhysicalPlanNode
impl RefUnwindSafe for PhysicalPlanNode
impl Send for PhysicalPlanNode
impl Sync for PhysicalPlanNode
impl Unpin for PhysicalPlanNode
impl UnsafeUnpin for PhysicalPlanNode
impl UnwindSafe for PhysicalPlanNode
Blanket Implementations§
impl<T> Allocation for T
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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