Struct temporal_sdk_core::protos::temporal::api::workflowservice::v1::GetWorkflowExecutionHistoryRequest[][src]

pub struct GetWorkflowExecutionHistoryRequest {
    pub namespace: String,
    pub execution: Option<WorkflowExecution>,
    pub maximum_page_size: i32,
    pub next_page_token: Vec<u8>,
    pub wait_new_event: bool,
    pub history_event_filter_type: i32,
    pub skip_archival: bool,
}

Fields

namespace: Stringexecution: Option<WorkflowExecution>maximum_page_size: i32next_page_token: Vec<u8>wait_new_event: boolhistory_event_filter_type: i32

Default: HISTORY_EVENT_FILTER_TYPE_ALL_EVENT.

skip_archival: bool

Implementations

impl GetWorkflowExecutionHistoryRequest[src]

pub fn history_event_filter_type(&self) -> HistoryEventFilterType[src]

Returns the enum value of history_event_filter_type, or the default if the field is set to an invalid enum value.

pub fn set_history_event_filter_type(&mut self, value: HistoryEventFilterType)[src]

Sets history_event_filter_type to the provided enum value.

Trait Implementations

impl Clone for GetWorkflowExecutionHistoryRequest[src]

impl Debug for GetWorkflowExecutionHistoryRequest[src]

impl Default for GetWorkflowExecutionHistoryRequest[src]

impl Message for GetWorkflowExecutionHistoryRequest[src]

impl PartialEq<GetWorkflowExecutionHistoryRequest> for GetWorkflowExecutionHistoryRequest[src]

impl StructuralPartialEq for GetWorkflowExecutionHistoryRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]