pub struct ReplayVerification {
pub ok: bool,
pub replayed_snapshot_hash: String,
pub materialized_snapshot_hash: String,
pub diffs: Vec<String>,
pub note: String,
}Fields§
§ok: bool§replayed_snapshot_hash: String§materialized_snapshot_hash: String§diffs: Vec<String>§note: StringTrait Implementations§
Source§impl Clone for ReplayVerification
impl Clone for ReplayVerification
Source§fn clone(&self) -> ReplayVerification
fn clone(&self) -> ReplayVerification
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 ReplayVerification
impl RefUnwindSafe for ReplayVerification
impl Send for ReplayVerification
impl Sync for ReplayVerification
impl Unpin for ReplayVerification
impl UnsafeUnpin for ReplayVerification
impl UnwindSafe for ReplayVerification
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