Struct aws_sdk_apigatewayv2::types::ParameterConstraints
source · #[non_exhaustive]pub struct ParameterConstraints {
pub required: Option<bool>,
}
Expand description
Validation constraints imposed on parameters of a request (path, query string, headers).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.required: Option<bool>
Whether or not the parameter is required.
Implementations§
source§impl ParameterConstraints
impl ParameterConstraints
sourcepub fn builder() -> ParameterConstraintsBuilder
pub fn builder() -> ParameterConstraintsBuilder
Creates a new builder-style object to manufacture ParameterConstraints
.
Trait Implementations§
source§impl Clone for ParameterConstraints
impl Clone for ParameterConstraints
source§fn clone(&self) -> ParameterConstraints
fn clone(&self) -> ParameterConstraints
Returns a copy 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 ParameterConstraints
impl Debug for ParameterConstraints
source§impl PartialEq for ParameterConstraints
impl PartialEq for ParameterConstraints
source§fn eq(&self, other: &ParameterConstraints) -> bool
fn eq(&self, other: &ParameterConstraints) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParameterConstraints
Auto Trait Implementations§
impl Freeze for ParameterConstraints
impl RefUnwindSafe for ParameterConstraints
impl Send for ParameterConstraints
impl Sync for ParameterConstraints
impl Unpin for ParameterConstraints
impl UnwindSafe for ParameterConstraints
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> 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>
Creates a shared type from an unshared type.