pub struct WorkflowStreamPage {
pub stream: WorkflowStreamDescription,
pub items: Vec<WorkflowStreamItem>,
pub next_offset: u64,
pub terminal: bool,
}Expand description
One bounded at-least-once subscription page.
Fields§
§stream: WorkflowStreamDescription§items: Vec<WorkflowStreamItem>§next_offset: u64§terminal: boolTrait Implementations§
Source§impl Clone for WorkflowStreamPage
impl Clone for WorkflowStreamPage
Source§fn clone(&self) -> WorkflowStreamPage
fn clone(&self) -> WorkflowStreamPage
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for WorkflowStreamPage
impl RefUnwindSafe for WorkflowStreamPage
impl Send for WorkflowStreamPage
impl Sync for WorkflowStreamPage
impl Unpin for WorkflowStreamPage
impl UnwindSafe for WorkflowStreamPage
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