pub struct AutomateWorkflowAction {
pub id: String,
pub type: AutomateWorkflowActionType,
pub action_type: AutomateWorkflowActionActionType,
pub description: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub created_by: Option<UserMini>,
pub updated_by: Option<UserMini>,
pub workflow: AutomateWorkflowReference,
}Fields§
§id: String§type: AutomateWorkflowActionType§action_type: AutomateWorkflowActionActionType§description: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§created_by: Option<UserMini>§updated_by: Option<UserMini>§workflow: AutomateWorkflowReferenceTrait Implementations§
Source§impl Clone for AutomateWorkflowAction
impl Clone for AutomateWorkflowAction
Source§fn clone(&self) -> AutomateWorkflowAction
fn clone(&self) -> AutomateWorkflowAction
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 AutomateWorkflowAction
impl Debug for AutomateWorkflowAction
Source§impl Default for AutomateWorkflowAction
impl Default for AutomateWorkflowAction
Source§fn default() -> AutomateWorkflowAction
fn default() -> AutomateWorkflowAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomateWorkflowAction
impl<'de> Deserialize<'de> for AutomateWorkflowAction
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 AutomateWorkflowAction
impl PartialEq for AutomateWorkflowAction
Source§impl Serialize for AutomateWorkflowAction
impl Serialize for AutomateWorkflowAction
impl StructuralPartialEq for AutomateWorkflowAction
Auto Trait Implementations§
impl Freeze for AutomateWorkflowAction
impl RefUnwindSafe for AutomateWorkflowAction
impl Send for AutomateWorkflowAction
impl Sync for AutomateWorkflowAction
impl Unpin for AutomateWorkflowAction
impl UnsafeUnpin for AutomateWorkflowAction
impl UnwindSafe for AutomateWorkflowAction
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