Struct bytecode::stackless_bytecode::AbortAction
source · pub struct AbortAction(pub Label, pub TempIndex);
Expand description
Information about the action to take on abort. The label represents the destination to jump to, and the temporary where to store the abort code before jump.
Tuple Fields§
§0: Label
§1: TempIndex
Trait Implementations§
source§impl Clone for AbortAction
impl Clone for AbortAction
source§fn clone(&self) -> AbortAction
fn clone(&self) -> AbortAction
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 Debug for AbortAction
impl Debug for AbortAction
source§impl PartialEq<AbortAction> for AbortAction
impl PartialEq<AbortAction> for AbortAction
source§fn eq(&self, other: &AbortAction) -> bool
fn eq(&self, other: &AbortAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AbortAction
impl StructuralEq for AbortAction
impl StructuralPartialEq for AbortAction
Auto Trait Implementations§
impl RefUnwindSafe for AbortAction
impl Send for AbortAction
impl Sync for AbortAction
impl Unpin for AbortAction
impl UnwindSafe for AbortAction
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.