pub struct EventsMeta {
pub page: Option<EventsPage>,
pub status: Option<String>,
pub request_id: Option<String>,
pub elapsed: Option<i64>,
pub warnings: Option<Value>,
}Expand description
Search-level metadata returned by GET /api/v2/events.
Fields§
§page: Option<EventsPage>Cursor pagination block.
status: Option<String>Search status reported by Datadog.
request_id: Option<String>Datadog request id.
elapsed: Option<i64>Elapsed query time as reported by Datadog, in milliseconds.
warnings: Option<Value>Optional non-fatal warnings emitted by the search.
Trait Implementations§
Source§impl Clone for EventsMeta
impl Clone for EventsMeta
Source§fn clone(&self) -> EventsMeta
fn clone(&self) -> EventsMeta
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 EventsMeta
impl Debug for EventsMeta
Source§impl Default for EventsMeta
impl Default for EventsMeta
Source§fn default() -> EventsMeta
fn default() -> EventsMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventsMeta
impl<'de> Deserialize<'de> for EventsMeta
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 EventsMeta
impl PartialEq for EventsMeta
Source§impl Serialize for EventsMeta
impl Serialize for EventsMeta
impl Eq for EventsMeta
impl StructuralPartialEq for EventsMeta
Auto Trait Implementations§
impl Freeze for EventsMeta
impl RefUnwindSafe for EventsMeta
impl Send for EventsMeta
impl Sync for EventsMeta
impl Unpin for EventsMeta
impl UnsafeUnpin for EventsMeta
impl UnwindSafe for EventsMeta
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.