pub struct SuspenseTaskSnapshot {
pub config: SuspenseTaskConfig,
pub boundary_state: SuspenseBoundaryState,
pub error_action: ErrorBoundaryAction,
pub transition_state: Option<TransitionTaskState>,
pub task_handle: Option<WasmHandleRef>,
pub retry_count: u32,
pub is_retrying: bool,
}Expand description
Tracks the state of a task integrated with a Suspense boundary.
Fields§
§config: SuspenseTaskConfigTask configuration.
boundary_state: SuspenseBoundaryStateCurrent Suspense boundary state.
error_action: ErrorBoundaryActionError boundary action (if any).
transition_state: Option<TransitionTaskState>Transition state (if this is a transition task).
task_handle: Option<WasmHandleRef>Handle to the underlying WASM task.
retry_count: u32Number of retries attempted.
is_retrying: boolWhether the task is currently retrying (re-thrown promise).
Trait Implementations§
Source§impl Clone for SuspenseTaskSnapshot
impl Clone for SuspenseTaskSnapshot
Source§fn clone(&self) -> SuspenseTaskSnapshot
fn clone(&self) -> SuspenseTaskSnapshot
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 SuspenseTaskSnapshot
impl Debug for SuspenseTaskSnapshot
Source§impl<'de> Deserialize<'de> for SuspenseTaskSnapshot
impl<'de> Deserialize<'de> for SuspenseTaskSnapshot
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 SuspenseTaskSnapshot
Source§impl PartialEq for SuspenseTaskSnapshot
impl PartialEq for SuspenseTaskSnapshot
Source§impl Serialize for SuspenseTaskSnapshot
impl Serialize for SuspenseTaskSnapshot
impl StructuralPartialEq for SuspenseTaskSnapshot
Auto Trait Implementations§
impl Freeze for SuspenseTaskSnapshot
impl RefUnwindSafe for SuspenseTaskSnapshot
impl Send for SuspenseTaskSnapshot
impl Sync for SuspenseTaskSnapshot
impl Unpin for SuspenseTaskSnapshot
impl UnsafeUnpin for SuspenseTaskSnapshot
impl UnwindSafe for SuspenseTaskSnapshot
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).