pub struct ConcreteFunctionWithBodyPostPanicNode<'a> {
pub function_id: ConcreteFunctionWithBodyId,
pub db: &'a dyn LoweringGroup,
pub dependency_type: DependencyType,
}
Fields§
§function_id: ConcreteFunctionWithBodyId
§db: &'a dyn LoweringGroup
§dependency_type: DependencyType
Trait Implementations§
source§impl<'a> Clone for ConcreteFunctionWithBodyPostPanicNode<'a>
impl<'a> Clone for ConcreteFunctionWithBodyPostPanicNode<'a>
source§fn clone(&self) -> ConcreteFunctionWithBodyPostPanicNode<'a>
fn clone(&self) -> ConcreteFunctionWithBodyPostPanicNode<'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 ComputeScc for ConcreteFunctionWithBodyPostPanicNode<'_>
impl ComputeScc for ConcreteFunctionWithBodyPostPanicNode<'_>
fn compute_scc(&self) -> Vec<Self::NodeId>
source§impl GraphNode for ConcreteFunctionWithBodyPostPanicNode<'_>
impl GraphNode for ConcreteFunctionWithBodyPostPanicNode<'_>
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 ConcreteFunctionWithBodyPostPanicNode<'a>
impl<'a> !RefUnwindSafe for ConcreteFunctionWithBodyPostPanicNode<'a>
impl<'a> !Send for ConcreteFunctionWithBodyPostPanicNode<'a>
impl<'a> !Sync for ConcreteFunctionWithBodyPostPanicNode<'a>
impl<'a> Unpin for ConcreteFunctionWithBodyPostPanicNode<'a>
impl<'a> !UnwindSafe for ConcreteFunctionWithBodyPostPanicNode<'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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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