pub struct ExecutionModeInfo {
pub concurrent: String,
pub dependent: String,
}Expand description
Describes the two execution modes and when each is selected.
Fields§
§concurrent: StringWhen the concurrent (parallel) path is used
dependent: StringWhen the dependent (sequential) path is used
Trait Implementations§
Source§impl Debug for ExecutionModeInfo
impl Debug for ExecutionModeInfo
Source§impl<'de> Deserialize<'de> for ExecutionModeInfo
impl<'de> Deserialize<'de> for ExecutionModeInfo
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
Auto Trait Implementations§
impl Freeze for ExecutionModeInfo
impl RefUnwindSafe for ExecutionModeInfo
impl Send for ExecutionModeInfo
impl Sync for ExecutionModeInfo
impl Unpin for ExecutionModeInfo
impl UnsafeUnpin for ExecutionModeInfo
impl UnwindSafe for ExecutionModeInfo
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