Enum quil_rs::program::graph::ExecutionDependency
source · pub enum ExecutionDependency {
AwaitMemoryAccess(MemoryAccessType),
Scheduled,
StableOrdering,
}
Variants§
AwaitMemoryAccess(MemoryAccessType)
The downstream instruction must wait for the given operation to complete.
Scheduled
The schedule of the downstream instruction depends on the upstream instruction. Per the Quil-T specification, the downstream instruction begins execution at the time that its latest upstream neighbor completes.
StableOrdering
The ordering between these two instructions must remain unchanged
Trait Implementations§
source§impl Clone for ExecutionDependency
impl Clone for ExecutionDependency
source§fn clone(&self) -> ExecutionDependency
fn clone(&self) -> ExecutionDependency
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 ExecutionDependency
impl Debug for ExecutionDependency
source§impl Hash for ExecutionDependency
impl Hash for ExecutionDependency
source§impl PartialEq<ExecutionDependency> for ExecutionDependency
impl PartialEq<ExecutionDependency> for ExecutionDependency
source§fn eq(&self, other: &ExecutionDependency) -> bool
fn eq(&self, other: &ExecutionDependency) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ExecutionDependency
impl StructuralEq for ExecutionDependency
impl StructuralPartialEq for ExecutionDependency
Auto Trait Implementations§
impl RefUnwindSafe for ExecutionDependency
impl Send for ExecutionDependency
impl Sync for ExecutionDependency
impl Unpin for ExecutionDependency
impl UnwindSafe for ExecutionDependency
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<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.