#[non_exhaustive]pub struct ActivityDescribeOptions {
pub include_input: bool,
pub include_outcome: bool,
pub include_heartbeat_details: bool,
pub include_last_failure: bool,
}Expand description
Controls which optional fields will be requested in
ActivityHandle::describe operation. The fields will be
present in returned ActivityExecutionDescription,
subject to data availability and server support.
Note that these fields contain payloads that can be arbitrarily large. It’s recommended not to include them unless they’re needed.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.include_input: boolIf set and the activity received input, the input will be included.
include_outcome: boolIf set and the activity is closed, the activity outcome will be included.
include_heartbeat_details: boolIf set and the activity sent heartbeat details, the heartbeat details will be included.
include_last_failure: boolIf set and the activity has a failed attempt, the last failure will be included.
Implementations§
Source§impl ActivityDescribeOptions
impl ActivityDescribeOptions
Sourcepub fn builder() -> ActivityDescribeOptionsBuilder
pub fn builder() -> ActivityDescribeOptionsBuilder
Create an instance of ActivityDescribeOptions using the builder syntax
Trait Implementations§
Source§impl Clone for ActivityDescribeOptions
impl Clone for ActivityDescribeOptions
Source§fn clone(&self) -> ActivityDescribeOptions
fn clone(&self) -> ActivityDescribeOptions
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 ActivityDescribeOptions
impl Debug for ActivityDescribeOptions
Source§impl Default for ActivityDescribeOptions
impl Default for ActivityDescribeOptions
Source§fn default() -> ActivityDescribeOptions
fn default() -> ActivityDescribeOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ActivityDescribeOptions
impl RefUnwindSafe for ActivityDescribeOptions
impl Send for ActivityDescribeOptions
impl Sync for ActivityDescribeOptions
impl Unpin for ActivityDescribeOptions
impl UnsafeUnpin for ActivityDescribeOptions
impl UnwindSafe for ActivityDescribeOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request