pub struct MirNode {
pub calcite: Option<CalciteId>,
pub inputs: Vec<MirInput>,
pub operation: String,
pub outputs: Option<Vec<MirInput>>,
pub persistent_id: Option<String>,
pub positions: Vec<SourcePosition>,
pub table: Option<String>,
pub view: Option<String>,
}Expand description
MirNode
JSON schema
{
"type": "object",
"required": [
"operation"
],
"properties": {
"calcite": {
"allOf": [
{
"$ref": "#/components/schemas/CalciteId"
}
]
},
"inputs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MirInput"
}
},
"operation": {
"type": "string"
},
"outputs": {
"type": [
"array",
"null"
],
"items": {
"allOf": [
{
"$ref": "#/components/schemas/MirInput"
}
]
}
},
"persistent_id": {
"type": [
"string",
"null"
]
},
"positions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SourcePosition"
}
},
"table": {
"type": [
"string",
"null"
]
},
"view": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": {}
}Fields§
§calcite: Option<CalciteId>§inputs: Vec<MirInput>§operation: String§outputs: Option<Vec<MirInput>>§persistent_id: Option<String>§positions: Vec<SourcePosition>§table: Option<String>§view: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MirNode
impl<'de> Deserialize<'de> for MirNode
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 MirNode
impl RefUnwindSafe for MirNode
impl Send for MirNode
impl Sync for MirNode
impl Unpin for MirNode
impl UnwindSafe for MirNode
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