pub struct UpdateSizeConstraintSetRequest {
pub change_token: String,
pub size_constraint_set_id: String,
pub updates: Vec<SizeConstraintSetUpdate>,
}Fields§
§change_token: StringThe value returned by the most recent call to GetChangeToken.
size_constraint_set_id: StringThe SizeConstraintSetId of the SizeConstraintSet that you want to update. SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
updates: Vec<SizeConstraintSetUpdate>An array of SizeConstraintSetUpdate objects that you want to insert into or delete from a SizeConstraintSet. For more information, see the applicable data types:
-
SizeConstraintSetUpdate: Contains
ActionandSizeConstraint -
SizeConstraint: Contains
FieldToMatch,TextTransformation,ComparisonOperator, andSize -
FieldToMatch: Contains
DataandType
Trait Implementations§
Source§impl Clone for UpdateSizeConstraintSetRequest
impl Clone for UpdateSizeConstraintSetRequest
Source§fn clone(&self) -> UpdateSizeConstraintSetRequest
fn clone(&self) -> UpdateSizeConstraintSetRequest
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 Default for UpdateSizeConstraintSetRequest
impl Default for UpdateSizeConstraintSetRequest
Source§fn default() -> UpdateSizeConstraintSetRequest
fn default() -> UpdateSizeConstraintSetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateSizeConstraintSetRequest
impl PartialEq for UpdateSizeConstraintSetRequest
Source§fn eq(&self, other: &UpdateSizeConstraintSetRequest) -> bool
fn eq(&self, other: &UpdateSizeConstraintSetRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateSizeConstraintSetRequest
Auto Trait Implementations§
impl Freeze for UpdateSizeConstraintSetRequest
impl RefUnwindSafe for UpdateSizeConstraintSetRequest
impl Send for UpdateSizeConstraintSetRequest
impl Sync for UpdateSizeConstraintSetRequest
impl Unpin for UpdateSizeConstraintSetRequest
impl UnwindSafe for UpdateSizeConstraintSetRequest
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