pub struct ReplayLeafRecord {
pub trace_id: String,
pub leaf_id: String,
pub input_hash: String,
pub result: LeafResult,
}Fields§
§trace_id: String§leaf_id: String§input_hash: String§result: LeafResultTrait Implementations§
Source§impl Clone for ReplayLeafRecord
impl Clone for ReplayLeafRecord
Source§fn clone(&self) -> ReplayLeafRecord
fn clone(&self) -> ReplayLeafRecord
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 ReplayLeafRecord
impl Debug for ReplayLeafRecord
Source§impl<'de> Deserialize<'de> for ReplayLeafRecord
impl<'de> Deserialize<'de> for ReplayLeafRecord
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 ReplayLeafRecord
Source§impl PartialEq for ReplayLeafRecord
impl PartialEq for ReplayLeafRecord
Source§fn eq(&self, other: &ReplayLeafRecord) -> bool
fn eq(&self, other: &ReplayLeafRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReplayLeafRecord
impl Serialize for ReplayLeafRecord
impl StructuralPartialEq for ReplayLeafRecord
Auto Trait Implementations§
impl Freeze for ReplayLeafRecord
impl RefUnwindSafe for ReplayLeafRecord
impl Send for ReplayLeafRecord
impl Sync for ReplayLeafRecord
impl Unpin for ReplayLeafRecord
impl UnsafeUnpin for ReplayLeafRecord
impl UnwindSafe for ReplayLeafRecord
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