pub enum RuntimeKind {
NativeTs,
RustEmbedded,
}Expand description
Runtime family used to execute workflow code.
Variants§
NativeTs
TypeScript compiled to a native executable through a native toolchain.
RustEmbedded
Host-provided Rust runtime. Useful for tests and embedded deployments.
Trait Implementations§
Source§impl Clone for RuntimeKind
impl Clone for RuntimeKind
Source§fn clone(&self) -> RuntimeKind
fn clone(&self) -> RuntimeKind
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 RuntimeKind
impl Debug for RuntimeKind
Source§impl<'de> Deserialize<'de> for RuntimeKind
impl<'de> Deserialize<'de> for RuntimeKind
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
impl Eq for RuntimeKind
Source§impl PartialEq for RuntimeKind
impl PartialEq for RuntimeKind
Source§fn eq(&self, other: &RuntimeKind) -> bool
fn eq(&self, other: &RuntimeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeKind
impl Serialize for RuntimeKind
impl StructuralPartialEq for RuntimeKind
Auto Trait Implementations§
impl Freeze for RuntimeKind
impl RefUnwindSafe for RuntimeKind
impl Send for RuntimeKind
impl Sync for RuntimeKind
impl Unpin for RuntimeKind
impl UnsafeUnpin for RuntimeKind
impl UnwindSafe for RuntimeKind
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