pub struct WafActiveRuleResponseDataAttributes {
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub latest_revision: Option<i32>,
pub outdated: Option<bool>,
}
Fields§
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
latest_revision: Option<i32>
The latest rule revision number that is available for the associated rule revision.
outdated: Option<bool>
Indicates if the associated rule revision is up to date or not.
Implementations§
Trait Implementations§
Source§impl Clone for WafActiveRuleResponseDataAttributes
impl Clone for WafActiveRuleResponseDataAttributes
Source§fn clone(&self) -> WafActiveRuleResponseDataAttributes
fn clone(&self) -> WafActiveRuleResponseDataAttributes
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 Default for WafActiveRuleResponseDataAttributes
impl Default for WafActiveRuleResponseDataAttributes
Source§fn default() -> WafActiveRuleResponseDataAttributes
fn default() -> WafActiveRuleResponseDataAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WafActiveRuleResponseDataAttributes
impl<'de> Deserialize<'de> for WafActiveRuleResponseDataAttributes
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
Source§impl PartialEq for WafActiveRuleResponseDataAttributes
impl PartialEq for WafActiveRuleResponseDataAttributes
Source§fn eq(&self, other: &WafActiveRuleResponseDataAttributes) -> bool
fn eq(&self, other: &WafActiveRuleResponseDataAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WafActiveRuleResponseDataAttributes
Auto Trait Implementations§
impl Freeze for WafActiveRuleResponseDataAttributes
impl RefUnwindSafe for WafActiveRuleResponseDataAttributes
impl Send for WafActiveRuleResponseDataAttributes
impl Sync for WafActiveRuleResponseDataAttributes
impl Unpin for WafActiveRuleResponseDataAttributes
impl UnwindSafe for WafActiveRuleResponseDataAttributes
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