pub struct ActivityStreamSummary {
pub key: ActivityStreamKey,
pub head: u64,
}Expand description
One retained transcript stream of a workflow: its key and its head
(the number of durably retained records / the next store_seq).
Fields§
§key: ActivityStreamKeyThe stream’s (workflow, activity, attempt) key.
head: u64Next store_seq to be written == count of retained records.
Trait Implementations§
Source§impl Clone for ActivityStreamSummary
impl Clone for ActivityStreamSummary
Source§fn clone(&self) -> ActivityStreamSummary
fn clone(&self) -> ActivityStreamSummary
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 ActivityStreamSummary
impl Debug for ActivityStreamSummary
impl Eq for ActivityStreamSummary
Source§impl PartialEq for ActivityStreamSummary
impl PartialEq for ActivityStreamSummary
impl StructuralPartialEq for ActivityStreamSummary
Auto Trait Implementations§
impl Freeze for ActivityStreamSummary
impl RefUnwindSafe for ActivityStreamSummary
impl Send for ActivityStreamSummary
impl Sync for ActivityStreamSummary
impl Unpin for ActivityStreamSummary
impl UnsafeUnpin for ActivityStreamSummary
impl UnwindSafe for ActivityStreamSummary
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