Enum quil_rs::program::graph::BlockTerminator
source · pub enum BlockTerminator {
Conditional {
condition: MemoryReference,
target: String,
jump_if_condition_true: bool,
},
Unconditional {
target: String,
},
Continue,
Halt,
}Variants§
Trait Implementations§
source§impl Clone for BlockTerminator
impl Clone for BlockTerminator
source§fn clone(&self) -> BlockTerminator
fn clone(&self) -> BlockTerminator
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 moreAuto Trait Implementations§
impl RefUnwindSafe for BlockTerminator
impl Send for BlockTerminator
impl Sync for BlockTerminator
impl Unpin for BlockTerminator
impl UnwindSafe for BlockTerminator
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