pub struct Dataflow {
pub calcite_plan: HashMap<String, CalcitePlan>,
pub mir: HashMap<String, MirNode>,
}Expand description
The JSON representation of a dataflow graph.
JSON schema
{
"description": "The JSON representation of a dataflow graph.",
"type": "object",
"required": [
"calcite_plan",
"mir"
],
"properties": {
"calcite_plan": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/CalcitePlan"
}
},
"mir": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/MirNode"
}
}
}
}Fields§
§calcite_plan: HashMap<String, CalcitePlan>§mir: HashMap<String, MirNode>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dataflow
impl<'de> Deserialize<'de> for Dataflow
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
Auto Trait Implementations§
impl Freeze for Dataflow
impl RefUnwindSafe for Dataflow
impl Send for Dataflow
impl Sync for Dataflow
impl Unpin for Dataflow
impl UnwindSafe for Dataflow
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