pub struct EvalFixture {
pub memories: Vec<EvalMemory>,
pub cases: Vec<EvalCase>,
}Expand description
A committed eval fixture: a corpus of memories and a set of query cases.
Fields§
§memories: Vec<EvalMemory>§cases: Vec<EvalCase>Trait Implementations§
Source§impl Clone for EvalFixture
impl Clone for EvalFixture
Source§fn clone(&self) -> EvalFixture
fn clone(&self) -> EvalFixture
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 EvalFixture
impl Debug for EvalFixture
Source§impl<'de> Deserialize<'de> for EvalFixture
impl<'de> Deserialize<'de> for EvalFixture
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
Auto Trait Implementations§
impl Freeze for EvalFixture
impl RefUnwindSafe for EvalFixture
impl Send for EvalFixture
impl Sync for EvalFixture
impl Unpin for EvalFixture
impl UnsafeUnpin for EvalFixture
impl UnwindSafe for EvalFixture
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