pub struct NotCalledEval {
pub mock: String,
pub where: BTreeMap<String, FieldPredicate>,
pub name: Option<String>,
}Expand description
Deterministic: assert the referenced mock/spy observed no matching call.
Fields§
§mock: StringThe mocks: declaration (mock or spy) this asserts on, by name.
where: BTreeMap<String, FieldPredicate>Optional per-field input predicates narrowing which calls count.
name: Option<String>Optional human label for reports.
Trait Implementations§
Source§impl Clone for NotCalledEval
impl Clone for NotCalledEval
Source§fn clone(&self) -> NotCalledEval
fn clone(&self) -> NotCalledEval
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 NotCalledEval
impl Debug for NotCalledEval
Source§impl<'de> Deserialize<'de> for NotCalledEval
impl<'de> Deserialize<'de> for NotCalledEval
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
Source§impl JsonSchema for NotCalledEval
impl JsonSchema for NotCalledEval
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for NotCalledEval
impl PartialEq for NotCalledEval
Source§fn eq(&self, other: &NotCalledEval) -> bool
fn eq(&self, other: &NotCalledEval) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NotCalledEval
impl Serialize for NotCalledEval
impl StructuralPartialEq for NotCalledEval
Auto Trait Implementations§
impl Freeze for NotCalledEval
impl RefUnwindSafe for NotCalledEval
impl Send for NotCalledEval
impl Sync for NotCalledEval
impl Unpin for NotCalledEval
impl UnsafeUnpin for NotCalledEval
impl UnwindSafe for NotCalledEval
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