pub struct AnalyticsQueryDto {
pub queries: Vec<AnalyticsQuery>,
}
Fields§
§queries: Vec<AnalyticsQuery>
This is the list of metric queries you want to perform.
Implementations§
Source§impl AnalyticsQueryDto
impl AnalyticsQueryDto
pub fn new(queries: Vec<AnalyticsQuery>) -> AnalyticsQueryDto
Trait Implementations§
Source§impl Clone for AnalyticsQueryDto
impl Clone for AnalyticsQueryDto
Source§fn clone(&self) -> AnalyticsQueryDto
fn clone(&self) -> AnalyticsQueryDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AnalyticsQueryDto
impl Debug for AnalyticsQueryDto
Source§impl Default for AnalyticsQueryDto
impl Default for AnalyticsQueryDto
Source§fn default() -> AnalyticsQueryDto
fn default() -> AnalyticsQueryDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsQueryDto
impl<'de> Deserialize<'de> for AnalyticsQueryDto
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 AnalyticsQueryDto
impl PartialEq for AnalyticsQueryDto
Source§impl Serialize for AnalyticsQueryDto
impl Serialize for AnalyticsQueryDto
impl StructuralPartialEq for AnalyticsQueryDto
Auto Trait Implementations§
impl Freeze for AnalyticsQueryDto
impl RefUnwindSafe for AnalyticsQueryDto
impl Send for AnalyticsQueryDto
impl Sync for AnalyticsQueryDto
impl Unpin for AnalyticsQueryDto
impl UnwindSafe for AnalyticsQueryDto
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