pub enum BatchExecution {
Auto,
Sequential,
Parallel,
}Expand description
Preferred execution shape for bridge-emulated multi-image fan-out.
Variants§
Auto
Use provider/session-aware bridge defaults.
Wire value auto.
Sequential
Dispatch one fan-out chunk at a time.
Wire value sequential.
Parallel
Use the provider’s configured bounded parallelism.
Wire value parallel.
Trait Implementations§
Source§impl Clone for BatchExecution
impl Clone for BatchExecution
Source§fn clone(&self) -> BatchExecution
fn clone(&self) -> BatchExecution
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 moreimpl Copy for BatchExecution
Source§impl Debug for BatchExecution
impl Debug for BatchExecution
Source§impl Default for BatchExecution
impl Default for BatchExecution
Source§impl<'de> Deserialize<'de> for BatchExecution
impl<'de> Deserialize<'de> for BatchExecution
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 Display for BatchExecution
impl Display for BatchExecution
impl Eq for BatchExecution
Source§impl Hash for BatchExecution
impl Hash for BatchExecution
Source§impl JsonSchema for BatchExecution
impl JsonSchema for BatchExecution
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Ord for BatchExecution
impl Ord for BatchExecution
Source§fn cmp(&self, other: &BatchExecution) -> Ordering
fn cmp(&self, other: &BatchExecution) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BatchExecution
impl PartialEq for BatchExecution
Source§impl PartialOrd for BatchExecution
impl PartialOrd for BatchExecution
Source§impl Serialize for BatchExecution
impl Serialize for BatchExecution
impl StructuralPartialEq for BatchExecution
Auto Trait Implementations§
impl Freeze for BatchExecution
impl RefUnwindSafe for BatchExecution
impl Send for BatchExecution
impl Sync for BatchExecution
impl Unpin for BatchExecution
impl UnsafeUnpin for BatchExecution
impl UnwindSafe for BatchExecution
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