pub enum WorkflowVersionSchema {
V1,
}Expand description
Workflow types type
Variants§
V1
Trait Implementations§
Source§impl AsRef<str> for WorkflowVersionSchema
impl AsRef<str> for WorkflowVersionSchema
Source§impl Clone for WorkflowVersionSchema
impl Clone for WorkflowVersionSchema
Source§fn clone(&self) -> WorkflowVersionSchema
fn clone(&self) -> WorkflowVersionSchema
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 WorkflowVersionSchema
impl Debug for WorkflowVersionSchema
Source§impl Default for WorkflowVersionSchema
impl Default for WorkflowVersionSchema
Source§fn default() -> WorkflowVersionSchema
fn default() -> WorkflowVersionSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowVersionSchema
impl<'de> Deserialize<'de> for WorkflowVersionSchema
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 WorkflowVersionSchema
Available on non-crate feature sql only.
impl Display for WorkflowVersionSchema
Available on non-crate feature
sql only.Source§impl<'_derivative_strum> From<&'_derivative_strum WorkflowVersionSchema> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum WorkflowVersionSchema> for &'static str
Source§fn from(x: &'_derivative_strum WorkflowVersionSchema) -> &'static str
fn from(x: &'_derivative_strum WorkflowVersionSchema) -> &'static str
Converts to this type from the input type.
Source§impl From<WorkflowVersionSchema> for &'static str
impl From<WorkflowVersionSchema> for &'static str
Source§fn from(x: WorkflowVersionSchema) -> &'static str
fn from(x: WorkflowVersionSchema) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for WorkflowVersionSchema
impl FromStr for WorkflowVersionSchema
Source§impl PartialEq for WorkflowVersionSchema
impl PartialEq for WorkflowVersionSchema
Source§impl Serialize for WorkflowVersionSchema
impl Serialize for WorkflowVersionSchema
Source§impl TryFrom<&str> for WorkflowVersionSchema
impl TryFrom<&str> for WorkflowVersionSchema
impl Eq for WorkflowVersionSchema
impl StructuralPartialEq for WorkflowVersionSchema
Auto Trait Implementations§
impl Freeze for WorkflowVersionSchema
impl RefUnwindSafe for WorkflowVersionSchema
impl Send for WorkflowVersionSchema
impl Sync for WorkflowVersionSchema
impl Unpin for WorkflowVersionSchema
impl UnwindSafe for WorkflowVersionSchema
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more