pub struct ArchiveRuleSummary {
pub created_at: f64,
pub filter: HashMap<String, Criterion>,
pub rule_name: String,
pub updated_at: f64,
}
Expand description
Contains information about an archive rule.
Fields§
§created_at: f64
The time at which the archive rule was created.
filter: HashMap<String, Criterion>
A filter used to define the archive rule.
rule_name: String
The name of the archive rule.
updated_at: f64
The time at which the archive rule was last updated.
Trait Implementations§
Source§impl Clone for ArchiveRuleSummary
impl Clone for ArchiveRuleSummary
Source§fn clone(&self) -> ArchiveRuleSummary
fn clone(&self) -> ArchiveRuleSummary
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 ArchiveRuleSummary
impl Debug for ArchiveRuleSummary
Source§impl Default for ArchiveRuleSummary
impl Default for ArchiveRuleSummary
Source§fn default() -> ArchiveRuleSummary
fn default() -> ArchiveRuleSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArchiveRuleSummary
impl<'de> Deserialize<'de> for ArchiveRuleSummary
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 ArchiveRuleSummary
impl PartialEq for ArchiveRuleSummary
impl StructuralPartialEq for ArchiveRuleSummary
Auto Trait Implementations§
impl Freeze for ArchiveRuleSummary
impl RefUnwindSafe for ArchiveRuleSummary
impl Send for ArchiveRuleSummary
impl Sync for ArchiveRuleSummary
impl Unpin for ArchiveRuleSummary
impl UnwindSafe for ArchiveRuleSummary
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