pub struct CmeFixtureV0 {
pub schema_version: &'static str,
pub files: Vec<CmeFixtureFileV0>,
pub expectations: Vec<CmeFixtureExpectationV0>,
}Expand description
Parsed reusable fixture.
Fields§
§schema_version: &'static strFixture grammar version.
files: Vec<CmeFixtureFileV0>Parsed files.
expectations: Vec<CmeFixtureExpectationV0>Parsed expectations.
Trait Implementations§
Source§impl Clone for CmeFixtureV0
impl Clone for CmeFixtureV0
Source§fn clone(&self) -> CmeFixtureV0
fn clone(&self) -> CmeFixtureV0
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 CmeFixtureV0
impl Debug for CmeFixtureV0
Source§impl PartialEq for CmeFixtureV0
impl PartialEq for CmeFixtureV0
Source§fn eq(&self, other: &CmeFixtureV0) -> bool
fn eq(&self, other: &CmeFixtureV0) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CmeFixtureV0
impl Serialize for CmeFixtureV0
impl Eq for CmeFixtureV0
impl StructuralPartialEq for CmeFixtureV0
Auto Trait Implementations§
impl Freeze for CmeFixtureV0
impl RefUnwindSafe for CmeFixtureV0
impl Send for CmeFixtureV0
impl Sync for CmeFixtureV0
impl Unpin for CmeFixtureV0
impl UnsafeUnpin for CmeFixtureV0
impl UnwindSafe for CmeFixtureV0
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