pub struct DivergenceEntry {
pub key: Vec<u8>,
pub divergence: Divergence,
}Expand description
One log entry: the input that produced the divergence + the divergence itself. We don’t store the full responses — that’s potentially a lot of memory.
Fields§
§key: Vec<u8>Sampling / correlation key used by the call.
divergence: DivergenceThe structured diff.
Trait Implementations§
Source§impl Clone for DivergenceEntry
impl Clone for DivergenceEntry
Source§fn clone(&self) -> DivergenceEntry
fn clone(&self) -> DivergenceEntry
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 DivergenceEntry
impl RefUnwindSafe for DivergenceEntry
impl Send for DivergenceEntry
impl Sync for DivergenceEntry
impl Unpin for DivergenceEntry
impl UnsafeUnpin for DivergenceEntry
impl UnwindSafe for DivergenceEntry
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