pub struct UpdateWorkflow {
pub enabled: Option<bool>,
pub name: Option<String>,
pub order: Option<Option<i32>>,
}Fields§
§enabled: Option<bool>Whether the workflow is enabled.
name: Option<String>Name of the workflow.
order: Option<Option<i32>>Order of the workflow in the list.
Trait Implementations§
Source§impl Clone for UpdateWorkflow
impl Clone for UpdateWorkflow
Source§fn clone(&self) -> UpdateWorkflow
fn clone(&self) -> UpdateWorkflow
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 UpdateWorkflow
impl Debug for UpdateWorkflow
Source§impl Default for UpdateWorkflow
impl Default for UpdateWorkflow
Source§fn default() -> UpdateWorkflow
fn default() -> UpdateWorkflow
Returns the “default value” for a type. Read more
Source§impl Serialize for UpdateWorkflow
impl Serialize for UpdateWorkflow
impl UpdateDtoObject for UpdateWorkflow
Auto Trait Implementations§
impl Freeze for UpdateWorkflow
impl RefUnwindSafe for UpdateWorkflow
impl Send for UpdateWorkflow
impl Sync for UpdateWorkflow
impl Unpin for UpdateWorkflow
impl UnsafeUnpin for UpdateWorkflow
impl UnwindSafe for UpdateWorkflow
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