pub struct ConcreteFunctionWithBodyNode<'a> {
pub function_id: ConcreteFunctionWithBodyId,
pub db: &'a dyn LoweringGroup,
pub dependency_type: DependencyType,
}
Expand description
A node to use in graph-algorithms.
Fields§
§function_id: ConcreteFunctionWithBodyId
§db: &'a dyn LoweringGroup
§dependency_type: DependencyType
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>
Source§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> Freeze for ConcreteFunctionWithBodyNode<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more