pub struct ActionModel {Show 13 fields
pub created: i64,
pub created_by: i64,
pub description: String,
pub disabled: bool,
pub event: Option<Option<Vec<TriggerEvent>>>,
pub id: i64,
pub name: String,
pub repo_id: i64,
pub seq: i64,
pub updated: i64,
pub version: i64,
pub yaml_path: String,
pub yaml_provider: WorkflowProvider,
}Fields§
§created: i64§created_by: i64§description: String§disabled: bool§event: Option<Option<Vec<TriggerEvent>>>§id: i64§name: String§repo_id: i64§seq: i64§updated: i64§version: i64§yaml_path: String§yaml_provider: WorkflowProviderImplementations§
Trait Implementations§
Source§impl Clone for ActionModel
impl Clone for ActionModel
Source§fn clone(&self) -> ActionModel
fn clone(&self) -> ActionModel
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 ActionModel
impl Debug for ActionModel
Source§impl Default for ActionModel
impl Default for ActionModel
Source§fn default() -> ActionModel
fn default() -> ActionModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionModel
impl<'de> Deserialize<'de> for ActionModel
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 ActionModel
impl PartialEq for ActionModel
Source§impl Serialize for ActionModel
impl Serialize for ActionModel
impl StructuralPartialEq for ActionModel
Auto Trait Implementations§
impl Freeze for ActionModel
impl RefUnwindSafe for ActionModel
impl Send for ActionModel
impl Sync for ActionModel
impl Unpin for ActionModel
impl UnwindSafe for ActionModel
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