pub struct RegexPatternSet {
pub id: String,
pub name: String,
pub arn: String,
pub scope: String,
pub description: Option<String>,
pub regular_expressions: Vec<Value>,
pub lock_token: String,
pub created_time: DateTime<Utc>,
}Fields§
§id: String§name: String§arn: String§scope: String§description: Option<String>§regular_expressions: Vec<Value>§lock_token: String§created_time: DateTime<Utc>Trait Implementations§
Source§impl Clone for RegexPatternSet
impl Clone for RegexPatternSet
Source§fn clone(&self) -> RegexPatternSet
fn clone(&self) -> RegexPatternSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RegexPatternSet
impl Debug for RegexPatternSet
Source§impl<'de> Deserialize<'de> for RegexPatternSet
impl<'de> Deserialize<'de> for RegexPatternSet
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 RegexPatternSet
impl RefUnwindSafe for RegexPatternSet
impl Send for RegexPatternSet
impl Sync for RegexPatternSet
impl Unpin for RegexPatternSet
impl UnsafeUnpin for RegexPatternSet
impl UnwindSafe for RegexPatternSet
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