pub struct RetryIngress {
pub piece_id: String,
pub expected_version: i64,
pub state: Option<Value>,
}Expand description
Request to retry one transcript piece’s memory ingress.
Fields§
§piece_id: String§expected_version: i64§state: Option<Value>Optional state retained for 0.2 wire compatibility. When supplied, it must exactly equal the current retained Session History state.
Trait Implementations§
Source§impl Clone for RetryIngress
impl Clone for RetryIngress
Source§fn clone(&self) -> RetryIngress
fn clone(&self) -> RetryIngress
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 moreAuto Trait Implementations§
impl Freeze for RetryIngress
impl RefUnwindSafe for RetryIngress
impl Send for RetryIngress
impl Sync for RetryIngress
impl Unpin for RetryIngress
impl UnsafeUnpin for RetryIngress
impl UnwindSafe for RetryIngress
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