#[non_exhaustive]pub struct GetSizeConstraintSetOutput {
pub size_constraint_set: Option<SizeConstraintSet>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.size_constraint_set: Option<SizeConstraintSet>
Information about the SizeConstraintSet
that you specified in the GetSizeConstraintSet
request. For more information, see the following topics:
-
SizeConstraintSet
: ContainsSizeConstraintSetId
,SizeConstraints
, andName
-
SizeConstraints
: Contains an array ofSizeConstraint
objects. EachSizeConstraint
object containsFieldToMatch
,TextTransformation
,ComparisonOperator
, andSize
-
FieldToMatch
: ContainsData
andType
Implementations§
source§impl GetSizeConstraintSetOutput
impl GetSizeConstraintSetOutput
sourcepub fn size_constraint_set(&self) -> Option<&SizeConstraintSet>
pub fn size_constraint_set(&self) -> Option<&SizeConstraintSet>
Information about the SizeConstraintSet
that you specified in the GetSizeConstraintSet
request. For more information, see the following topics:
-
SizeConstraintSet
: ContainsSizeConstraintSetId
,SizeConstraints
, andName
-
SizeConstraints
: Contains an array ofSizeConstraint
objects. EachSizeConstraint
object containsFieldToMatch
,TextTransformation
,ComparisonOperator
, andSize
-
FieldToMatch
: ContainsData
andType
source§impl GetSizeConstraintSetOutput
impl GetSizeConstraintSetOutput
sourcepub fn builder() -> GetSizeConstraintSetOutputBuilder
pub fn builder() -> GetSizeConstraintSetOutputBuilder
Creates a new builder-style object to manufacture GetSizeConstraintSetOutput
.
Trait Implementations§
source§impl Clone for GetSizeConstraintSetOutput
impl Clone for GetSizeConstraintSetOutput
source§fn clone(&self) -> GetSizeConstraintSetOutput
fn clone(&self) -> GetSizeConstraintSetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSizeConstraintSetOutput
impl Debug for GetSizeConstraintSetOutput
source§impl PartialEq for GetSizeConstraintSetOutput
impl PartialEq for GetSizeConstraintSetOutput
source§fn eq(&self, other: &GetSizeConstraintSetOutput) -> bool
fn eq(&self, other: &GetSizeConstraintSetOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSizeConstraintSetOutput
impl RequestId for GetSizeConstraintSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetSizeConstraintSetOutput
Auto Trait Implementations§
impl Freeze for GetSizeConstraintSetOutput
impl RefUnwindSafe for GetSizeConstraintSetOutput
impl Send for GetSizeConstraintSetOutput
impl Sync for GetSizeConstraintSetOutput
impl Unpin for GetSizeConstraintSetOutput
impl UnwindSafe for GetSizeConstraintSetOutput
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
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>
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>
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