pub struct RuntimeValidatorConfig {
pub validate_requests: bool,
pub validate_responses: bool,
pub throw_on_error: bool,
pub include_contract_diffs: bool,
pub schemas: HashMap<String, SchemaMetadata>,
}Expand description
Runtime validator configuration
Fields§
§validate_requests: boolWhether to validate requests
validate_responses: boolWhether to validate responses
throw_on_error: boolWhether to throw errors on validation failure (vs. just logging)
include_contract_diffs: boolWhether to include contract diff references in errors
schemas: HashMap<String, SchemaMetadata>Schema registry (schema_id -> SchemaMetadata)
Implementations§
Source§impl RuntimeValidatorConfig
impl RuntimeValidatorConfig
Sourcepub fn with_request_validation(self, enabled: bool) -> Self
pub fn with_request_validation(self, enabled: bool) -> Self
Enable request validation
Sourcepub fn with_response_validation(self, enabled: bool) -> Self
pub fn with_response_validation(self, enabled: bool) -> Self
Enable response validation
Sourcepub fn with_throw_on_error(self, throw: bool) -> Self
pub fn with_throw_on_error(self, throw: bool) -> Self
Configure error throwing behavior
Sourcepub fn add_schema(&mut self, metadata: SchemaMetadata)
pub fn add_schema(&mut self, metadata: SchemaMetadata)
Add a schema to the registry
Trait Implementations§
Source§impl Clone for RuntimeValidatorConfig
impl Clone for RuntimeValidatorConfig
Source§fn clone(&self) -> RuntimeValidatorConfig
fn clone(&self) -> RuntimeValidatorConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 RuntimeValidatorConfig
impl Debug for RuntimeValidatorConfig
Source§impl Default for RuntimeValidatorConfig
impl Default for RuntimeValidatorConfig
Source§impl<'de> Deserialize<'de> for RuntimeValidatorConfig
impl<'de> Deserialize<'de> for RuntimeValidatorConfig
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 RuntimeValidatorConfig
impl RefUnwindSafe for RuntimeValidatorConfig
impl Send for RuntimeValidatorConfig
impl Sync for RuntimeValidatorConfig
impl Unpin for RuntimeValidatorConfig
impl UnwindSafe for RuntimeValidatorConfig
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more