pub struct PersistedTrace {
pub trace_id: String,
pub circuit: String,
pub events: Vec<PersistenceEnvelope>,
pub resumed_from_step: Option<u64>,
pub completion: Option<CompletionState>,
}Expand description
Stored trace state returned from PersistenceStore::load.
Fields§
§trace_id: String§circuit: String§events: Vec<PersistenceEnvelope>§resumed_from_step: Option<u64>§completion: Option<CompletionState>Trait Implementations§
Source§impl Clone for PersistedTrace
impl Clone for PersistedTrace
Source§fn clone(&self) -> PersistedTrace
fn clone(&self) -> PersistedTrace
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 PersistedTrace
impl Debug for PersistedTrace
Source§impl<'de> Deserialize<'de> for PersistedTrace
impl<'de> Deserialize<'de> for PersistedTrace
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
Source§impl PartialEq for PersistedTrace
impl PartialEq for PersistedTrace
Source§impl Serialize for PersistedTrace
impl Serialize for PersistedTrace
impl Eq for PersistedTrace
impl StructuralPartialEq for PersistedTrace
Auto Trait Implementations§
impl Freeze for PersistedTrace
impl RefUnwindSafe for PersistedTrace
impl Send for PersistedTrace
impl Sync for PersistedTrace
impl Unpin for PersistedTrace
impl UnsafeUnpin for PersistedTrace
impl UnwindSafe for PersistedTrace
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