pub struct LirNode {
pub id: LirNodeId,
pub operation: String,
pub implements: Vec<MirNodeId>,
}Fields§
§id: LirNodeId§operation: StringNode type, e.g., map, join, etc.
implements: Vec<MirNodeId>The list of Mir node ids that this LIR node implementa completely or partially.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LirNode
impl<'de> Deserialize<'de> for LirNode
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 LirNode
impl RefUnwindSafe for LirNode
impl Send for LirNode
impl Sync for LirNode
impl Unpin for LirNode
impl UnsafeUnpin for LirNode
impl UnwindSafe for LirNode
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