Struct cranelift_codegen::flowgraph::BlockPredecessor
source · [−]Expand description
A basic block denoted by its enclosing Block and last instruction.
Fields
block: Block
Enclosing Block key.
inst: Inst
Last instruction in the basic block.
Implementations
Trait Implementations
sourceimpl Debug for BlockPredecessor
impl Debug for BlockPredecessor
sourceimpl PartialEq<BlockPredecessor> for BlockPredecessor
impl PartialEq<BlockPredecessor> for BlockPredecessor
sourcefn eq(&self, other: &BlockPredecessor) -> bool
fn eq(&self, other: &BlockPredecessor) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BlockPredecessor) -> bool
fn ne(&self, other: &BlockPredecessor) -> bool
This method tests for !=
.
impl Eq for BlockPredecessor
impl StructuralEq for BlockPredecessor
impl StructuralPartialEq for BlockPredecessor
Auto Trait Implementations
impl RefUnwindSafe for BlockPredecessor
impl Send for BlockPredecessor
impl Sync for BlockPredecessor
impl Unpin for BlockPredecessor
impl UnwindSafe for BlockPredecessor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.