pub struct RecordedWrite {
pub tag: TagId,
pub value: f32,
}Expand description
A single MV write ReplayDriver observed, in the order Driver::write was called
– what a validation test inspects afterward (via ReplayDriver::writes) to see
exactly what an engine driven through the real Driver trait chose to write, without
needing its own separate bookkeeping alongside the driver’s.
Fields§
§tag: TagId§value: f32Trait Implementations§
Source§impl Clone for RecordedWrite
impl Clone for RecordedWrite
Source§fn clone(&self) -> RecordedWrite
fn clone(&self) -> RecordedWrite
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 RecordedWrite
impl Debug for RecordedWrite
Source§impl PartialEq for RecordedWrite
impl PartialEq for RecordedWrite
Source§fn eq(&self, other: &RecordedWrite) -> bool
fn eq(&self, other: &RecordedWrite) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordedWrite
Auto Trait Implementations§
impl Freeze for RecordedWrite
impl RefUnwindSafe for RecordedWrite
impl Send for RecordedWrite
impl Sync for RecordedWrite
impl Unpin for RecordedWrite
impl UnsafeUnpin for RecordedWrite
impl UnwindSafe for RecordedWrite
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].