pub struct ResumableJobAdvance {
pub continuation: Option<String>,
pub application_state: Vec<u8>,
pub application_receipt: Vec<u8>,
}Expand description
Bounded temporary next state produced by one synchronous page operation.
Fields§
§continuation: Option<String>Opaque continuation for the next page, or None after exhaustion.
application_state: Vec<u8>Complete next application accumulator or phase state.
application_receipt: Vec<u8>Bounded application receipt returned and retained for replay.
Implementations§
Trait Implementations§
Source§impl CandidType for ResumableJobAdvance
impl CandidType for ResumableJobAdvance
Source§impl Clone for ResumableJobAdvance
impl Clone for ResumableJobAdvance
Source§fn clone(&self) -> ResumableJobAdvance
fn clone(&self) -> ResumableJobAdvance
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 ResumableJobAdvance
impl Debug for ResumableJobAdvance
Source§impl<'de> Deserialize<'de> for ResumableJobAdvance
impl<'de> Deserialize<'de> for ResumableJobAdvance
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
impl Eq for ResumableJobAdvance
Source§impl PartialEq for ResumableJobAdvance
impl PartialEq for ResumableJobAdvance
impl StructuralPartialEq for ResumableJobAdvance
Auto Trait Implementations§
impl Freeze for ResumableJobAdvance
impl RefUnwindSafe for ResumableJobAdvance
impl Send for ResumableJobAdvance
impl Sync for ResumableJobAdvance
impl Unpin for ResumableJobAdvance
impl UnsafeUnpin for ResumableJobAdvance
impl UnwindSafe for ResumableJobAdvance
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