pub struct LogTimeseriesGetResponseMeta {
pub service_id: Option<String>,
pub start: Option<String>,
pub end: Option<String>,
pub granularity: Option<String>,
pub filters: Option<Box<LogTimeseriesGetResponseMetaFilters>>,
}
Fields§
§service_id: Option<String>
ID of the service for which data was returned.
start: Option<String>
Start time for the query as supplied in the request.
end: Option<String>
End time for the query as supplied in the request.
granularity: Option<String>
The granularity of the time buckets in the response.
filters: Option<Box<LogTimeseriesGetResponseMetaFilters>>
Implementations§
Source§impl LogTimeseriesGetResponseMeta
impl LogTimeseriesGetResponseMeta
pub fn new() -> LogTimeseriesGetResponseMeta
Trait Implementations§
Source§impl Clone for LogTimeseriesGetResponseMeta
impl Clone for LogTimeseriesGetResponseMeta
Source§fn clone(&self) -> LogTimeseriesGetResponseMeta
fn clone(&self) -> LogTimeseriesGetResponseMeta
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 LogTimeseriesGetResponseMeta
impl Debug for LogTimeseriesGetResponseMeta
Source§impl Default for LogTimeseriesGetResponseMeta
impl Default for LogTimeseriesGetResponseMeta
Source§fn default() -> LogTimeseriesGetResponseMeta
fn default() -> LogTimeseriesGetResponseMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogTimeseriesGetResponseMeta
impl<'de> Deserialize<'de> for LogTimeseriesGetResponseMeta
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 LogTimeseriesGetResponseMeta
impl PartialEq for LogTimeseriesGetResponseMeta
Source§fn eq(&self, other: &LogTimeseriesGetResponseMeta) -> bool
fn eq(&self, other: &LogTimeseriesGetResponseMeta) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LogTimeseriesGetResponseMeta
Auto Trait Implementations§
impl Freeze for LogTimeseriesGetResponseMeta
impl RefUnwindSafe for LogTimeseriesGetResponseMeta
impl Send for LogTimeseriesGetResponseMeta
impl Sync for LogTimeseriesGetResponseMeta
impl Unpin for LogTimeseriesGetResponseMeta
impl UnwindSafe for LogTimeseriesGetResponseMeta
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