pub struct RealProjectExpectation {
pub schema_version: u32,
pub corpus_id: &'static str,
pub cases: &'static [RealProjectCaseExpectation],
}Expand description
The owner-controlled real-project expectation contract consumed by the harness and downstream conformance tests.
Fields§
§schema_version: u32Contract schema version.
corpus_id: &'static strStable identity of the source corpus.
cases: &'static [RealProjectCaseExpectation]The complete current real-project case inventory and expectations.
Trait Implementations§
Source§impl Clone for RealProjectExpectation
impl Clone for RealProjectExpectation
Source§fn clone(&self) -> RealProjectExpectation
fn clone(&self) -> RealProjectExpectation
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 moreimpl Copy for RealProjectExpectation
Source§impl Debug for RealProjectExpectation
impl Debug for RealProjectExpectation
impl Eq for RealProjectExpectation
Source§impl PartialEq for RealProjectExpectation
impl PartialEq for RealProjectExpectation
impl StructuralPartialEq for RealProjectExpectation
Auto Trait Implementations§
impl Freeze for RealProjectExpectation
impl RefUnwindSafe for RealProjectExpectation
impl Send for RealProjectExpectation
impl Sync for RealProjectExpectation
impl Unpin for RealProjectExpectation
impl UnsafeUnpin for RealProjectExpectation
impl UnwindSafe for RealProjectExpectation
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