pub struct ProgramIr {
pub mir: HashMap<String, MirNode>,
pub program_schema: ProgramSchema,
}Expand description
Program information included in the pipeline configuration.
JSON schema
{
"description": "Program information included in the pipeline configuration.",
"type": "object",
"required": [
"mir",
"program_schema"
],
"properties": {
"mir": {
"description": "The MIR of the program.",
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/MirNode"
}
},
"program_schema": {
"$ref": "#/components/schemas/ProgramSchema"
}
}
}Fields§
§mir: HashMap<String, MirNode>The MIR of the program.
program_schema: ProgramSchemaImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProgramIr
impl<'de> Deserialize<'de> for ProgramIr
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 ProgramIr
impl RefUnwindSafe for ProgramIr
impl Send for ProgramIr
impl Sync for ProgramIr
impl Unpin for ProgramIr
impl UnwindSafe for ProgramIr
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