pub enum RunnableKind {
Script,
Flow,
}
Expand description
Variants§
Trait Implementations§
Source§impl Clone for RunnableKind
impl Clone for RunnableKind
Source§fn clone(&self) -> RunnableKind
fn clone(&self) -> RunnableKind
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 RunnableKind
impl Debug for RunnableKind
Source§impl Default for RunnableKind
impl Default for RunnableKind
Source§fn default() -> RunnableKind
fn default() -> RunnableKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunnableKind
impl<'de> Deserialize<'de> for RunnableKind
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 RunnableKind
impl Display for RunnableKind
Source§impl Hash for RunnableKind
impl Hash for RunnableKind
Source§impl Ord for RunnableKind
impl Ord for RunnableKind
Source§fn cmp(&self, other: &RunnableKind) -> Ordering
fn cmp(&self, other: &RunnableKind) -> Ordering
1.21.0 · 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 RunnableKind
impl PartialEq for RunnableKind
Source§impl PartialOrd for RunnableKind
impl PartialOrd for RunnableKind
Source§impl Serialize for RunnableKind
impl Serialize for RunnableKind
impl Copy for RunnableKind
impl Eq for RunnableKind
impl StructuralPartialEq for RunnableKind
Auto Trait Implementations§
impl Freeze for RunnableKind
impl RefUnwindSafe for RunnableKind
impl Send for RunnableKind
impl Sync for RunnableKind
impl Unpin for RunnableKind
impl UnwindSafe for RunnableKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.