pub struct VerificationStrategy { /* private fields */ }Expand description
Operation used to verify actual runtime state after execution.
Implementations§
Source§impl VerificationStrategy
impl VerificationStrategy
Sourcepub fn new(
operation: OperationName,
description: impl Into<String>,
) -> Result<Self, PlanError>
pub fn new( operation: OperationName, description: impl Into<String>, ) -> Result<Self, PlanError>
Creates a validated verification strategy.
Sourcepub fn operation(&self) -> &OperationName
pub fn operation(&self) -> &OperationName
Returns the verification operation.
Sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns the verification intent.
Trait Implementations§
Source§impl Clone for VerificationStrategy
impl Clone for VerificationStrategy
Source§fn clone(&self) -> VerificationStrategy
fn clone(&self) -> VerificationStrategy
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 VerificationStrategy
impl Debug for VerificationStrategy
Source§impl<'de> Deserialize<'de> for VerificationStrategy
impl<'de> Deserialize<'de> for VerificationStrategy
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 VerificationStrategy
impl JsonSchema for VerificationStrategy
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 VerificationStrategy
impl PartialEq for VerificationStrategy
Source§fn eq(&self, other: &VerificationStrategy) -> bool
fn eq(&self, other: &VerificationStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VerificationStrategy
impl Serialize for VerificationStrategy
impl Eq for VerificationStrategy
impl StructuralPartialEq for VerificationStrategy
Auto Trait Implementations§
impl Freeze for VerificationStrategy
impl RefUnwindSafe for VerificationStrategy
impl Send for VerificationStrategy
impl Sync for VerificationStrategy
impl Unpin for VerificationStrategy
impl UnsafeUnpin for VerificationStrategy
impl UnwindSafe for VerificationStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.