pub struct UpdateRegexPatternSetRequest {
pub change_token: String,
pub regex_pattern_set_id: String,
pub updates: Vec<RegexPatternSetUpdate>,
}Fields§
§change_token: StringThe value returned by the most recent call to GetChangeToken.
regex_pattern_set_id: StringThe RegexPatternSetId of the RegexPatternSet that you want to update. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.
updates: Vec<RegexPatternSetUpdate>An array of RegexPatternSetUpdate objects that you want to insert into or delete from a RegexPatternSet.
Trait Implementations§
Source§impl Clone for UpdateRegexPatternSetRequest
impl Clone for UpdateRegexPatternSetRequest
Source§fn clone(&self) -> UpdateRegexPatternSetRequest
fn clone(&self) -> UpdateRegexPatternSetRequest
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 UpdateRegexPatternSetRequest
impl Debug for UpdateRegexPatternSetRequest
Source§impl Default for UpdateRegexPatternSetRequest
impl Default for UpdateRegexPatternSetRequest
Source§fn default() -> UpdateRegexPatternSetRequest
fn default() -> UpdateRegexPatternSetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateRegexPatternSetRequest
impl PartialEq for UpdateRegexPatternSetRequest
Source§fn eq(&self, other: &UpdateRegexPatternSetRequest) -> bool
fn eq(&self, other: &UpdateRegexPatternSetRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateRegexPatternSetRequest
Auto Trait Implementations§
impl Freeze for UpdateRegexPatternSetRequest
impl RefUnwindSafe for UpdateRegexPatternSetRequest
impl Send for UpdateRegexPatternSetRequest
impl Sync for UpdateRegexPatternSetRequest
impl Unpin for UpdateRegexPatternSetRequest
impl UnwindSafe for UpdateRegexPatternSetRequest
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