#[non_exhaustive]pub struct DecisionBuilder { /* private fields */ }
Expand description
A builder for Decision
.
Implementations§
Source§impl DecisionBuilder
impl DecisionBuilder
Sourcepub fn decision_type(self, input: DecisionType) -> Self
pub fn decision_type(self, input: DecisionType) -> Self
Specifies the type of the decision.
This field is required.Sourcepub fn set_decision_type(self, input: Option<DecisionType>) -> Self
pub fn set_decision_type(self, input: Option<DecisionType>) -> Self
Specifies the type of the decision.
Sourcepub fn get_decision_type(&self) -> &Option<DecisionType>
pub fn get_decision_type(&self) -> &Option<DecisionType>
Specifies the type of the decision.
Sourcepub fn schedule_activity_task_decision_attributes(
self,
input: ScheduleActivityTaskDecisionAttributes,
) -> Self
pub fn schedule_activity_task_decision_attributes( self, input: ScheduleActivityTaskDecisionAttributes, ) -> Self
Provides the details of the ScheduleActivityTask
decision. It isn't set for other decision types.
Sourcepub fn set_schedule_activity_task_decision_attributes(
self,
input: Option<ScheduleActivityTaskDecisionAttributes>,
) -> Self
pub fn set_schedule_activity_task_decision_attributes( self, input: Option<ScheduleActivityTaskDecisionAttributes>, ) -> Self
Provides the details of the ScheduleActivityTask
decision. It isn't set for other decision types.
Sourcepub fn get_schedule_activity_task_decision_attributes(
&self,
) -> &Option<ScheduleActivityTaskDecisionAttributes>
pub fn get_schedule_activity_task_decision_attributes( &self, ) -> &Option<ScheduleActivityTaskDecisionAttributes>
Provides the details of the ScheduleActivityTask
decision. It isn't set for other decision types.
Sourcepub fn request_cancel_activity_task_decision_attributes(
self,
input: RequestCancelActivityTaskDecisionAttributes,
) -> Self
pub fn request_cancel_activity_task_decision_attributes( self, input: RequestCancelActivityTaskDecisionAttributes, ) -> Self
Provides the details of the RequestCancelActivityTask
decision. It isn't set for other decision types.
Sourcepub fn set_request_cancel_activity_task_decision_attributes(
self,
input: Option<RequestCancelActivityTaskDecisionAttributes>,
) -> Self
pub fn set_request_cancel_activity_task_decision_attributes( self, input: Option<RequestCancelActivityTaskDecisionAttributes>, ) -> Self
Provides the details of the RequestCancelActivityTask
decision. It isn't set for other decision types.
Sourcepub fn get_request_cancel_activity_task_decision_attributes(
&self,
) -> &Option<RequestCancelActivityTaskDecisionAttributes>
pub fn get_request_cancel_activity_task_decision_attributes( &self, ) -> &Option<RequestCancelActivityTaskDecisionAttributes>
Provides the details of the RequestCancelActivityTask
decision. It isn't set for other decision types.
Sourcepub fn complete_workflow_execution_decision_attributes(
self,
input: CompleteWorkflowExecutionDecisionAttributes,
) -> Self
pub fn complete_workflow_execution_decision_attributes( self, input: CompleteWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the CompleteWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_complete_workflow_execution_decision_attributes(
self,
input: Option<CompleteWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_complete_workflow_execution_decision_attributes( self, input: Option<CompleteWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the CompleteWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_complete_workflow_execution_decision_attributes(
&self,
) -> &Option<CompleteWorkflowExecutionDecisionAttributes>
pub fn get_complete_workflow_execution_decision_attributes( &self, ) -> &Option<CompleteWorkflowExecutionDecisionAttributes>
Provides the details of the CompleteWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn fail_workflow_execution_decision_attributes(
self,
input: FailWorkflowExecutionDecisionAttributes,
) -> Self
pub fn fail_workflow_execution_decision_attributes( self, input: FailWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the FailWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_fail_workflow_execution_decision_attributes(
self,
input: Option<FailWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_fail_workflow_execution_decision_attributes( self, input: Option<FailWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the FailWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_fail_workflow_execution_decision_attributes(
&self,
) -> &Option<FailWorkflowExecutionDecisionAttributes>
pub fn get_fail_workflow_execution_decision_attributes( &self, ) -> &Option<FailWorkflowExecutionDecisionAttributes>
Provides the details of the FailWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn cancel_workflow_execution_decision_attributes(
self,
input: CancelWorkflowExecutionDecisionAttributes,
) -> Self
pub fn cancel_workflow_execution_decision_attributes( self, input: CancelWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the CancelWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_cancel_workflow_execution_decision_attributes(
self,
input: Option<CancelWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_cancel_workflow_execution_decision_attributes( self, input: Option<CancelWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the CancelWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_cancel_workflow_execution_decision_attributes(
&self,
) -> &Option<CancelWorkflowExecutionDecisionAttributes>
pub fn get_cancel_workflow_execution_decision_attributes( &self, ) -> &Option<CancelWorkflowExecutionDecisionAttributes>
Provides the details of the CancelWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn continue_as_new_workflow_execution_decision_attributes(
self,
input: ContinueAsNewWorkflowExecutionDecisionAttributes,
) -> Self
pub fn continue_as_new_workflow_execution_decision_attributes( self, input: ContinueAsNewWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the ContinueAsNewWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_continue_as_new_workflow_execution_decision_attributes(
self,
input: Option<ContinueAsNewWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_continue_as_new_workflow_execution_decision_attributes( self, input: Option<ContinueAsNewWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the ContinueAsNewWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_continue_as_new_workflow_execution_decision_attributes(
&self,
) -> &Option<ContinueAsNewWorkflowExecutionDecisionAttributes>
pub fn get_continue_as_new_workflow_execution_decision_attributes( &self, ) -> &Option<ContinueAsNewWorkflowExecutionDecisionAttributes>
Provides the details of the ContinueAsNewWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn record_marker_decision_attributes(
self,
input: RecordMarkerDecisionAttributes,
) -> Self
pub fn record_marker_decision_attributes( self, input: RecordMarkerDecisionAttributes, ) -> Self
Provides the details of the RecordMarker
decision. It isn't set for other decision types.
Sourcepub fn set_record_marker_decision_attributes(
self,
input: Option<RecordMarkerDecisionAttributes>,
) -> Self
pub fn set_record_marker_decision_attributes( self, input: Option<RecordMarkerDecisionAttributes>, ) -> Self
Provides the details of the RecordMarker
decision. It isn't set for other decision types.
Sourcepub fn get_record_marker_decision_attributes(
&self,
) -> &Option<RecordMarkerDecisionAttributes>
pub fn get_record_marker_decision_attributes( &self, ) -> &Option<RecordMarkerDecisionAttributes>
Provides the details of the RecordMarker
decision. It isn't set for other decision types.
Sourcepub fn start_timer_decision_attributes(
self,
input: StartTimerDecisionAttributes,
) -> Self
pub fn start_timer_decision_attributes( self, input: StartTimerDecisionAttributes, ) -> Self
Provides the details of the StartTimer
decision. It isn't set for other decision types.
Sourcepub fn set_start_timer_decision_attributes(
self,
input: Option<StartTimerDecisionAttributes>,
) -> Self
pub fn set_start_timer_decision_attributes( self, input: Option<StartTimerDecisionAttributes>, ) -> Self
Provides the details of the StartTimer
decision. It isn't set for other decision types.
Sourcepub fn get_start_timer_decision_attributes(
&self,
) -> &Option<StartTimerDecisionAttributes>
pub fn get_start_timer_decision_attributes( &self, ) -> &Option<StartTimerDecisionAttributes>
Provides the details of the StartTimer
decision. It isn't set for other decision types.
Sourcepub fn cancel_timer_decision_attributes(
self,
input: CancelTimerDecisionAttributes,
) -> Self
pub fn cancel_timer_decision_attributes( self, input: CancelTimerDecisionAttributes, ) -> Self
Provides the details of the CancelTimer
decision. It isn't set for other decision types.
Sourcepub fn set_cancel_timer_decision_attributes(
self,
input: Option<CancelTimerDecisionAttributes>,
) -> Self
pub fn set_cancel_timer_decision_attributes( self, input: Option<CancelTimerDecisionAttributes>, ) -> Self
Provides the details of the CancelTimer
decision. It isn't set for other decision types.
Sourcepub fn get_cancel_timer_decision_attributes(
&self,
) -> &Option<CancelTimerDecisionAttributes>
pub fn get_cancel_timer_decision_attributes( &self, ) -> &Option<CancelTimerDecisionAttributes>
Provides the details of the CancelTimer
decision. It isn't set for other decision types.
Sourcepub fn signal_external_workflow_execution_decision_attributes(
self,
input: SignalExternalWorkflowExecutionDecisionAttributes,
) -> Self
pub fn signal_external_workflow_execution_decision_attributes( self, input: SignalExternalWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the SignalExternalWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_signal_external_workflow_execution_decision_attributes(
self,
input: Option<SignalExternalWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_signal_external_workflow_execution_decision_attributes( self, input: Option<SignalExternalWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the SignalExternalWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_signal_external_workflow_execution_decision_attributes(
&self,
) -> &Option<SignalExternalWorkflowExecutionDecisionAttributes>
pub fn get_signal_external_workflow_execution_decision_attributes( &self, ) -> &Option<SignalExternalWorkflowExecutionDecisionAttributes>
Provides the details of the SignalExternalWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn request_cancel_external_workflow_execution_decision_attributes(
self,
input: RequestCancelExternalWorkflowExecutionDecisionAttributes,
) -> Self
pub fn request_cancel_external_workflow_execution_decision_attributes( self, input: RequestCancelExternalWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the RequestCancelExternalWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_request_cancel_external_workflow_execution_decision_attributes(
self,
input: Option<RequestCancelExternalWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_request_cancel_external_workflow_execution_decision_attributes( self, input: Option<RequestCancelExternalWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the RequestCancelExternalWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_request_cancel_external_workflow_execution_decision_attributes(
&self,
) -> &Option<RequestCancelExternalWorkflowExecutionDecisionAttributes>
pub fn get_request_cancel_external_workflow_execution_decision_attributes( &self, ) -> &Option<RequestCancelExternalWorkflowExecutionDecisionAttributes>
Provides the details of the RequestCancelExternalWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn start_child_workflow_execution_decision_attributes(
self,
input: StartChildWorkflowExecutionDecisionAttributes,
) -> Self
pub fn start_child_workflow_execution_decision_attributes( self, input: StartChildWorkflowExecutionDecisionAttributes, ) -> Self
Provides the details of the StartChildWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn set_start_child_workflow_execution_decision_attributes(
self,
input: Option<StartChildWorkflowExecutionDecisionAttributes>,
) -> Self
pub fn set_start_child_workflow_execution_decision_attributes( self, input: Option<StartChildWorkflowExecutionDecisionAttributes>, ) -> Self
Provides the details of the StartChildWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn get_start_child_workflow_execution_decision_attributes(
&self,
) -> &Option<StartChildWorkflowExecutionDecisionAttributes>
pub fn get_start_child_workflow_execution_decision_attributes( &self, ) -> &Option<StartChildWorkflowExecutionDecisionAttributes>
Provides the details of the StartChildWorkflowExecution
decision. It isn't set for other decision types.
Sourcepub fn schedule_lambda_function_decision_attributes(
self,
input: ScheduleLambdaFunctionDecisionAttributes,
) -> Self
pub fn schedule_lambda_function_decision_attributes( self, input: ScheduleLambdaFunctionDecisionAttributes, ) -> Self
Provides the details of the ScheduleLambdaFunction
decision. It isn't set for other decision types.
Sourcepub fn set_schedule_lambda_function_decision_attributes(
self,
input: Option<ScheduleLambdaFunctionDecisionAttributes>,
) -> Self
pub fn set_schedule_lambda_function_decision_attributes( self, input: Option<ScheduleLambdaFunctionDecisionAttributes>, ) -> Self
Provides the details of the ScheduleLambdaFunction
decision. It isn't set for other decision types.
Sourcepub fn get_schedule_lambda_function_decision_attributes(
&self,
) -> &Option<ScheduleLambdaFunctionDecisionAttributes>
pub fn get_schedule_lambda_function_decision_attributes( &self, ) -> &Option<ScheduleLambdaFunctionDecisionAttributes>
Provides the details of the ScheduleLambdaFunction
decision. It isn't set for other decision types.
Trait Implementations§
Source§impl Clone for DecisionBuilder
impl Clone for DecisionBuilder
Source§fn clone(&self) -> DecisionBuilder
fn clone(&self) -> DecisionBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DecisionBuilder
impl Debug for DecisionBuilder
Source§impl Default for DecisionBuilder
impl Default for DecisionBuilder
Source§fn default() -> DecisionBuilder
fn default() -> DecisionBuilder
Source§impl PartialEq for DecisionBuilder
impl PartialEq for DecisionBuilder
impl StructuralPartialEq for DecisionBuilder
Auto Trait Implementations§
impl Freeze for DecisionBuilder
impl RefUnwindSafe for DecisionBuilder
impl Send for DecisionBuilder
impl Sync for DecisionBuilder
impl Unpin for DecisionBuilder
impl UnwindSafe for DecisionBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightBlack
.
§Example
println!("{}", value.bright_black());
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightGreen
.
§Example
println!("{}", value.bright_green());
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightYellow
.
§Example
println!("{}", value.bright_yellow());
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightMagenta
.
§Example
println!("{}", value.bright_magenta());
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Returns self
with the
fg()
set to
Color::BrightWhite
.
§Example
println!("{}", value.bright_white());
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightBlack
.
§Example
println!("{}", value.on_bright_black());
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightGreen
.
§Example
println!("{}", value.on_bright_green());
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightYellow
.
§Example
println!("{}", value.on_bright_yellow());
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightBlue
.
§Example
println!("{}", value.on_bright_blue());
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightMagenta
.
§Example
println!("{}", value.on_bright_magenta());
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightCyan
.
§Example
println!("{}", value.on_bright_cyan());
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Returns self
with the
bg()
set to
Color::BrightWhite
.
§Example
println!("{}", value.on_bright_white());
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn underline(&self) -> Painted<&T>
fn underline(&self) -> Painted<&T>
Returns self
with the
attr()
set to
Attribute::Underline
.
§Example
println!("{}", value.underline());
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Returns self
with the
attr()
set to
Attribute::RapidBlink
.
§Example
println!("{}", value.rapid_blink());
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);