pub struct CeremonyStep { /* private fields */ }Implementations§
Source§impl CeremonyStep
impl CeremonyStep
pub fn new( id: StepId, state_id: StateId, handler_kind: StepHandlerKind, handler_config: StepHandlerConfig, retry_policy: RetryPolicy, timeout: Option<StepTimeout>, ) -> Self
pub fn with_dynamic_role_binding(self, binding: DynamicRoleBinding) -> Self
pub fn with_context_writes(self, writes: ContextWrites) -> Self
pub fn with_repeat_policy(self, repeat_policy: StepRepeatPolicy) -> Self
pub fn with_spawn(self, spawn: CeremonyChildSpawn) -> Self
pub fn with_aggregation(self, aggregation: CeremonyStepAggregation) -> Self
pub fn id(&self) -> &StepId
pub fn state_id(&self) -> &StateId
pub fn handler_kind(&self) -> &StepHandlerKind
pub fn handler_config(&self) -> &StepHandlerConfig
pub fn retry_policy(&self) -> RetryPolicy
pub fn timeout(&self) -> Option<StepTimeout>
pub fn repeat_policy(&self) -> Option<&StepRepeatPolicy>
pub fn dynamic_role_binding(&self) -> Option<&DynamicRoleBinding>
pub fn context_writes(&self) -> &ContextWrites
pub fn spawn(&self) -> Option<&CeremonyChildSpawn>
pub fn aggregation(&self) -> Option<&CeremonyStepAggregation>
Trait Implementations§
Source§impl Clone for CeremonyStep
impl Clone for CeremonyStep
Source§fn clone(&self) -> CeremonyStep
fn clone(&self) -> CeremonyStep
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 CeremonyStep
impl Debug for CeremonyStep
Source§impl<'de> Deserialize<'de> for CeremonyStep
impl<'de> Deserialize<'de> for CeremonyStep
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
impl Eq for CeremonyStep
Source§impl PartialEq for CeremonyStep
impl PartialEq for CeremonyStep
Source§impl Serialize for CeremonyStep
impl Serialize for CeremonyStep
impl StructuralPartialEq for CeremonyStep
Auto Trait Implementations§
impl Freeze for CeremonyStep
impl RefUnwindSafe for CeremonyStep
impl Send for CeremonyStep
impl Sync for CeremonyStep
impl Unpin for CeremonyStep
impl UnsafeUnpin for CeremonyStep
impl UnwindSafe for CeremonyStep
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