pub struct ReadFramesArgs {
pub execution_id: ExecutionId,
pub attempt_index: AttemptIndex,
pub from_id: String,
pub to_id: String,
pub count_limit: u64,
}Expand description
Inputs to ff_read_attempt_stream (XRANGE wrapper).
Fields§
§execution_id: ExecutionId§attempt_index: AttemptIndex§from_id: StringXRANGE start ID. Use “-” for earliest.
to_id: StringXRANGE end ID. Use “+” for latest.
count_limit: u64XRANGE COUNT limit. MUST be >= 1. The REST and SDK layers reject
0 at the boundary; the Lua side rejects it too. STREAM_READ_HARD_CAP
is the upper bound.
Trait Implementations§
Source§impl Clone for ReadFramesArgs
impl Clone for ReadFramesArgs
Source§fn clone(&self) -> ReadFramesArgs
fn clone(&self) -> ReadFramesArgs
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 ReadFramesArgs
impl Debug for ReadFramesArgs
Source§impl<'de> Deserialize<'de> for ReadFramesArgs
impl<'de> Deserialize<'de> for ReadFramesArgs
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
Auto Trait Implementations§
impl Freeze for ReadFramesArgs
impl RefUnwindSafe for ReadFramesArgs
impl Send for ReadFramesArgs
impl Sync for ReadFramesArgs
impl Unpin for ReadFramesArgs
impl UnsafeUnpin for ReadFramesArgs
impl UnwindSafe for ReadFramesArgs
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