pub enum EngineExecutionEnvelope {
Single(Box<EngineSingleExecution>),
Batch(EngineBatchExecution),
}Variants§
Single(Box<EngineSingleExecution>)
Batch(EngineBatchExecution)
Trait Implementations§
Source§impl Clone for EngineExecutionEnvelope
impl Clone for EngineExecutionEnvelope
Source§fn clone(&self) -> EngineExecutionEnvelope
fn clone(&self) -> EngineExecutionEnvelope
Returns a duplicate 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 EngineExecutionEnvelope
impl Debug for EngineExecutionEnvelope
Source§impl<'de> Deserialize<'de> for EngineExecutionEnvelope
impl<'de> Deserialize<'de> for EngineExecutionEnvelope
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 EngineExecutionEnvelope
impl PartialEq for EngineExecutionEnvelope
Source§impl Serialize for EngineExecutionEnvelope
impl Serialize for EngineExecutionEnvelope
impl StructuralPartialEq for EngineExecutionEnvelope
Auto Trait Implementations§
impl Freeze for EngineExecutionEnvelope
impl RefUnwindSafe for EngineExecutionEnvelope
impl Send for EngineExecutionEnvelope
impl Sync for EngineExecutionEnvelope
impl Unpin for EngineExecutionEnvelope
impl UnsafeUnpin for EngineExecutionEnvelope
impl UnwindSafe for EngineExecutionEnvelope
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