pub struct WorkflowExecutionCount {
pub count: i64,
pub truncated: Option<bool>,
}
Expand description
Contains the count of workflow executions returned from CountOpenWorkflowExecutions or CountClosedWorkflowExecutions
Fields§
§count: i64
The number of workflow executions.
truncated: Option<bool>
If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.
Trait Implementations§
Source§impl Clone for WorkflowExecutionCount
impl Clone for WorkflowExecutionCount
Source§fn clone(&self) -> WorkflowExecutionCount
fn clone(&self) -> WorkflowExecutionCount
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 Debug for WorkflowExecutionCount
impl Debug for WorkflowExecutionCount
Source§impl Default for WorkflowExecutionCount
impl Default for WorkflowExecutionCount
Source§fn default() -> WorkflowExecutionCount
fn default() -> WorkflowExecutionCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowExecutionCount
impl<'de> Deserialize<'de> for WorkflowExecutionCount
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
Source§impl PartialEq for WorkflowExecutionCount
impl PartialEq for WorkflowExecutionCount
impl StructuralPartialEq for WorkflowExecutionCount
Auto Trait Implementations§
impl Freeze for WorkflowExecutionCount
impl RefUnwindSafe for WorkflowExecutionCount
impl Send for WorkflowExecutionCount
impl Sync for WorkflowExecutionCount
impl Unpin for WorkflowExecutionCount
impl UnwindSafe for WorkflowExecutionCount
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