pub struct LogsFieldIndex {
pub fields: Vec<String>,
pub created_at: i64,
pub last_used_at: i64,
}Expand description
One Fields entry parsed from a log group’s index policy document.
Fields§
§fields: Vec<String>Fields list from IndexPolicy.policy_document.Fields.
created_at: i64Unix-ms when the policy was created. Mirrors last_updated_time
since fakecloud doesn’t track a separate creation timestamp.
last_used_at: i64Unix-ms when the policy was last touched (PutIndexPolicy updates).
Trait Implementations§
Source§impl Clone for LogsFieldIndex
impl Clone for LogsFieldIndex
Source§fn clone(&self) -> LogsFieldIndex
fn clone(&self) -> LogsFieldIndex
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 LogsFieldIndex
impl Debug for LogsFieldIndex
Source§impl<'de> Deserialize<'de> for LogsFieldIndex
impl<'de> Deserialize<'de> for LogsFieldIndex
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 LogsFieldIndex
impl RefUnwindSafe for LogsFieldIndex
impl Send for LogsFieldIndex
impl Sync for LogsFieldIndex
impl Unpin for LogsFieldIndex
impl UnsafeUnpin for LogsFieldIndex
impl UnwindSafe for LogsFieldIndex
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