Struct fastly_api::models::waf_active_rule_response_data_attributes::WafActiveRuleResponseDataAttributes
source · 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<WafActiveRuleResponseDataAttributes> for WafActiveRuleResponseDataAttributes
impl PartialEq<WafActiveRuleResponseDataAttributes> for WafActiveRuleResponseDataAttributes
source§fn eq(&self, other: &WafActiveRuleResponseDataAttributes) -> bool
fn eq(&self, other: &WafActiveRuleResponseDataAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WafActiveRuleResponseDataAttributes
Auto Trait Implementations§
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