pub struct ResidueEntry {
pub name: String,
pub p3_classifiable: bool,
pub p2_capable: bool,
}Expand description
One node left on the interpreter.
Fields§
§name: StringThe node’s function name.
p3_classifiable: boolThe P3 classifier can lower this node (it stayed unfused for lifecycle / threshold / boundary reasons).
p2_capable: boolThe node carries a compiled_u64 op, the cheapest P2 form,
so the P2 middle rung could run it even though P3 can’t. A
node with a slot kit runs on P2 too but is not counted here.
Auto Trait Implementations§
impl Freeze for ResidueEntry
impl RefUnwindSafe for ResidueEntry
impl Send for ResidueEntry
impl Sync for ResidueEntry
impl Unpin for ResidueEntry
impl UnsafeUnpin for ResidueEntry
impl UnwindSafe for ResidueEntry
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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