Struct cairo_lang_lowering::graph_algorithms::concrete_function_node::ConcreteFunctionWithBodyNode
source · pub struct ConcreteFunctionWithBodyNode<'a> {
pub function_id: ConcreteFunctionWithBodyId,
pub db: &'a dyn LoweringGroup,
}
Expand description
A node to use in graph-algorithms.
Fields§
§function_id: ConcreteFunctionWithBodyId
§db: &'a dyn LoweringGroup
Trait Implementations§
source§impl<'a> Clone for ConcreteFunctionWithBodyNode<'a>
impl<'a> Clone for ConcreteFunctionWithBodyNode<'a>
source§fn clone(&self) -> ConcreteFunctionWithBodyNode<'a>
fn clone(&self) -> ConcreteFunctionWithBodyNode<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> ComputeScc for ConcreteFunctionWithBodyNode<'a>
impl<'a> ComputeScc for ConcreteFunctionWithBodyNode<'a>
fn compute_scc(&self) -> Vec<Self::NodeId>
source§impl<'a> GraphNode for ConcreteFunctionWithBodyNode<'a>
impl<'a> GraphNode for ConcreteFunctionWithBodyNode<'a>
§type NodeId = ConcreteFunctionWithBodyId
type NodeId = ConcreteFunctionWithBodyId
The type used to identify the nodes in the graph.
source§fn get_neighbors(&self) -> Vec<Self>
fn get_neighbors(&self) -> Vec<Self>
Returns a list of the node’s neighbors.
Must be stable for the SCC result to be stable. i.e. if the output for a node here doesn’t
change between different runs, the computed SCC of the node is guaranteed to also not
change.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ConcreteFunctionWithBodyNode<'a>
impl<'a> !Send for ConcreteFunctionWithBodyNode<'a>
impl<'a> !Sync for ConcreteFunctionWithBodyNode<'a>
impl<'a> Unpin for ConcreteFunctionWithBodyNode<'a>
impl<'a> !UnwindSafe for ConcreteFunctionWithBodyNode<'a>
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