pub enum EventDomainOperation {
BeginRun,
Enqueue,
Drain,
TransferBridge,
ValidateCompletion,
}Expand description
Classifies the runtime boundary at which event-domain provenance is validated.
The value is semantic control data for EventDomainError; provider function names are deliberately not part of this contract.
§Examples
use tenferro_runtime::EventDomainOperation;
assert_eq!(EventDomainOperation::Enqueue, EventDomainOperation::Enqueue);Variants§
BeginRun
A driver is beginning a run for a frozen domain.
Enqueue
A run is admitting dependencies and a launch.
Drain
A run is being retired after all submitted work.
TransferBridge
The scheduler is host-bridging a source completion for a transfer.
ValidateCompletion
The scheduler is validating a returned completion token.
Trait Implementations§
Source§impl Clone for EventDomainOperation
impl Clone for EventDomainOperation
Source§fn clone(&self) -> EventDomainOperation
fn clone(&self) -> EventDomainOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventDomainOperation
impl Debug for EventDomainOperation
Source§impl Display for EventDomainOperation
impl Display for EventDomainOperation
Source§impl Hash for EventDomainOperation
impl Hash for EventDomainOperation
Source§impl PartialEq for EventDomainOperation
impl PartialEq for EventDomainOperation
Source§fn eq(&self, other: &EventDomainOperation) -> bool
fn eq(&self, other: &EventDomainOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EventDomainOperation
impl Eq for EventDomainOperation
impl StructuralPartialEq for EventDomainOperation
Auto Trait Implementations§
impl Freeze for EventDomainOperation
impl RefUnwindSafe for EventDomainOperation
impl Send for EventDomainOperation
impl Sync for EventDomainOperation
impl Unpin for EventDomainOperation
impl UnsafeUnpin for EventDomainOperation
impl UnwindSafe for EventDomainOperation
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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