pub struct LogAggregationsGetResponseMeta {
pub service_id: Option<String>,
pub start: Option<String>,
pub end: Option<String>,
pub limit: Option<i32>,
pub sort: Option<String>,
pub filters: Option<Box<LogAggregationsGetResponseMetaFilters>>,
}
Fields§
§service_id: Option<String>
Specifies the ID of the service for which data should be 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.
limit: Option<i32>
Number of records per page.
sort: Option<String>
Comma-separated list of the series names whose values were used to sort the results.
filters: Option<Box<LogAggregationsGetResponseMetaFilters>>
Implementations§
Trait Implementations§
Source§impl Clone for LogAggregationsGetResponseMeta
impl Clone for LogAggregationsGetResponseMeta
Source§fn clone(&self) -> LogAggregationsGetResponseMeta
fn clone(&self) -> LogAggregationsGetResponseMeta
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 Default for LogAggregationsGetResponseMeta
impl Default for LogAggregationsGetResponseMeta
Source§fn default() -> LogAggregationsGetResponseMeta
fn default() -> LogAggregationsGetResponseMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogAggregationsGetResponseMeta
impl<'de> Deserialize<'de> for LogAggregationsGetResponseMeta
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 LogAggregationsGetResponseMeta
impl PartialEq for LogAggregationsGetResponseMeta
Source§fn eq(&self, other: &LogAggregationsGetResponseMeta) -> bool
fn eq(&self, other: &LogAggregationsGetResponseMeta) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LogAggregationsGetResponseMeta
Auto Trait Implementations§
impl Freeze for LogAggregationsGetResponseMeta
impl RefUnwindSafe for LogAggregationsGetResponseMeta
impl Send for LogAggregationsGetResponseMeta
impl Sync for LogAggregationsGetResponseMeta
impl Unpin for LogAggregationsGetResponseMeta
impl UnwindSafe for LogAggregationsGetResponseMeta
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