pub struct CalcitePlan {
pub rels: Vec<Rel>,
}Expand description
The Calcite plan representation of a dataflow graph.
JSON schema
{
"description": "The Calcite plan representation of a dataflow graph.",
"type": "object",
"required": [
"rels"
],
"properties": {
"rels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Rel"
}
}
}
}Fields§
§rels: Vec<Rel>Implementations§
Source§impl CalcitePlan
impl CalcitePlan
pub fn builder() -> CalcitePlan
Trait Implementations§
Source§impl Clone for CalcitePlan
impl Clone for CalcitePlan
Source§fn clone(&self) -> CalcitePlan
fn clone(&self) -> CalcitePlan
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 CalcitePlan
impl Debug for CalcitePlan
Source§impl<'de> Deserialize<'de> for CalcitePlan
impl<'de> Deserialize<'de> for CalcitePlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&CalcitePlan> for CalcitePlan
impl From<&CalcitePlan> for CalcitePlan
Source§fn from(value: &CalcitePlan) -> Self
fn from(value: &CalcitePlan) -> Self
Converts to this type from the input type.
Source§impl From<CalcitePlan> for CalcitePlan
impl From<CalcitePlan> for CalcitePlan
Source§fn from(value: CalcitePlan) -> Self
fn from(value: CalcitePlan) -> Self
Converts to this type from the input type.
Source§impl Serialize for CalcitePlan
impl Serialize for CalcitePlan
Source§impl TryFrom<CalcitePlan> for CalcitePlan
impl TryFrom<CalcitePlan> for CalcitePlan
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: CalcitePlan) -> Result<Self, ConversionError>
fn try_from(value: CalcitePlan) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CalcitePlan
impl RefUnwindSafe for CalcitePlan
impl Send for CalcitePlan
impl Sync for CalcitePlan
impl Unpin for CalcitePlan
impl UnwindSafe for CalcitePlan
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