pub enum Concurrency {
Serial,
ModuleManaged,
StatelessParallel,
}Expand description
How subc may deliver concurrent in-flight calls to the provider.
subc honors these semantics per FR16; the dispatcher that acts on them is Epic 2, while the manifest contract is frozen here.
Variants§
Serial
One in-flight call at a time with strict submission and response order.
ModuleManaged
Concurrent in-flight calls may span channels, while subc preserves FIFO submission within each channel; the module schedules internally.
StatelessParallel
Fully parallel delivery with no ordering guarantee across or within channels.
Trait Implementations§
Source§impl Clone for Concurrency
impl Clone for Concurrency
Source§fn clone(&self) -> Concurrency
fn clone(&self) -> Concurrency
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 Concurrency
impl Debug for Concurrency
Source§impl<'de> Deserialize<'de> for Concurrency
impl<'de> Deserialize<'de> for Concurrency
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Concurrency
impl PartialEq for Concurrency
Source§fn eq(&self, other: &Concurrency) -> bool
fn eq(&self, other: &Concurrency) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Concurrency
impl Serialize for Concurrency
impl StructuralPartialEq for Concurrency
Auto Trait Implementations§
impl Freeze for Concurrency
impl RefUnwindSafe for Concurrency
impl Send for Concurrency
impl Sync for Concurrency
impl Unpin for Concurrency
impl UnsafeUnpin for Concurrency
impl UnwindSafe for Concurrency
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