pub struct PublishDraftWorkflowSchemeParams {
pub id: i64,
pub publish_draft_workflow_scheme: PublishDraftWorkflowScheme,
pub validate_only: Option<bool>,
}
Expand description
struct for passing parameters to the method publish_draft_workflow_scheme
Fields§
§id: i64
The ID of the workflow scheme that the draft belongs to.
publish_draft_workflow_scheme: PublishDraftWorkflowScheme
Details of the status mappings.
validate_only: Option<bool>
Whether the request only performs a validation.
Trait Implementations§
Source§impl Clone for PublishDraftWorkflowSchemeParams
impl Clone for PublishDraftWorkflowSchemeParams
Source§fn clone(&self) -> PublishDraftWorkflowSchemeParams
fn clone(&self) -> PublishDraftWorkflowSchemeParams
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 Default for PublishDraftWorkflowSchemeParams
impl Default for PublishDraftWorkflowSchemeParams
Source§fn default() -> PublishDraftWorkflowSchemeParams
fn default() -> PublishDraftWorkflowSchemeParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PublishDraftWorkflowSchemeParams
impl RefUnwindSafe for PublishDraftWorkflowSchemeParams
impl Send for PublishDraftWorkflowSchemeParams
impl Sync for PublishDraftWorkflowSchemeParams
impl Unpin for PublishDraftWorkflowSchemeParams
impl UnwindSafe for PublishDraftWorkflowSchemeParams
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