pub struct ProgramIr {
pub circuit_ir: Option<Value>,
pub mir: HashMap<String, MirNode>,
pub program_schema: Value,
}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": {
"circuit_ir": {
"description": "The circuit IR (the compiler's JIT `allOperators` form) that the Gen-2\nengine lowers onto the runtime to build the circuit. `None` for\nRust-compiled pipelines, whose circuit is statically linked into the binary."
},
"mir": {
"description": "The MIR of the program.",
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/MirNode"
}
},
"program_schema": {
"description": "Program schema."
}
}
}Fields§
§circuit_ir: Option<Value>The circuit IR (the compiler’s JIT allOperators form) that the Gen-2
engine lowers onto the runtime to build the circuit. None for
Rust-compiled pipelines, whose circuit is statically linked into the binary.
mir: HashMap<String, MirNode>The MIR of the program.
program_schema: ValueProgram schema.
Implementations§
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 UnsafeUnpin 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