pub struct WorkflowButtonBuilder { /* private fields */ }Expand description
Builder for WorkflowButton object.
Implementations§
Source§impl WorkflowButtonBuilder
impl WorkflowButtonBuilder
Sourcepub fn get_action_id(&self) -> Option<&String>
pub fn get_action_id(&self) -> Option<&String>
get action_id field value.
Sourcepub fn set_action_id(self, value: Option<impl Into<String>>) -> Self
pub fn set_action_id(self, value: Option<impl Into<String>>) -> Self
set action_id field value.
Sourcepub fn get_workflow(&self) -> Option<&Workflow>
pub fn get_workflow(&self) -> Option<&Workflow>
get workflow field value.
Sourcepub fn set_workflow(self, value: Option<impl Into<Workflow>>) -> Self
pub fn set_workflow(self, value: Option<impl Into<Workflow>>) -> Self
set workflow field value.
Sourcepub fn get_accessibility_label(&self) -> Option<&String>
pub fn get_accessibility_label(&self) -> Option<&String>
get accessibility_label field value.
Sourcepub fn set_accessibility_label(self, value: Option<impl Into<String>>) -> Self
pub fn set_accessibility_label(self, value: Option<impl Into<String>>) -> Self
set accessibility_label field value.
Sourcepub fn accessibility_label(self, value: impl Into<String>) -> Self
pub fn accessibility_label(self, value: impl Into<String>) -> Self
set accessibility_label field value.
Sourcepub fn build(self) -> Result<WorkflowButton, ValidationErrors>
pub fn build(self) -> Result<WorkflowButton, ValidationErrors>
build WorkflowButton object.
Trait Implementations§
Source§impl Debug for WorkflowButtonBuilder
impl Debug for WorkflowButtonBuilder
Auto Trait Implementations§
impl Freeze for WorkflowButtonBuilder
impl RefUnwindSafe for WorkflowButtonBuilder
impl Send for WorkflowButtonBuilder
impl Sync for WorkflowButtonBuilder
impl Unpin for WorkflowButtonBuilder
impl UnsafeUnpin for WorkflowButtonBuilder
impl UnwindSafe for WorkflowButtonBuilder
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