pub struct BreakdownResponse {
pub results: Vec<Map<String, Value>>,
pub page: Option<u32>,
pub total_pages: Option<u32>,
pub totals: Option<Map<String, Value>>,
}Expand description
Response envelope for breakdown metrics.
Fields§
§results: Vec<Map<String, Value>>§page: Option<u32>§total_pages: Option<u32>§totals: Option<Map<String, Value>>Trait Implementations§
Source§impl Clone for BreakdownResponse
impl Clone for BreakdownResponse
Source§fn clone(&self) -> BreakdownResponse
fn clone(&self) -> BreakdownResponse
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 BreakdownResponse
impl Debug for BreakdownResponse
Source§impl<'de> Deserialize<'de> for BreakdownResponse
impl<'de> Deserialize<'de> for BreakdownResponse
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 BreakdownResponse
impl PartialEq for BreakdownResponse
Source§impl Serialize for BreakdownResponse
impl Serialize for BreakdownResponse
impl StructuralPartialEq for BreakdownResponse
Auto Trait Implementations§
impl Freeze for BreakdownResponse
impl RefUnwindSafe for BreakdownResponse
impl Send for BreakdownResponse
impl Sync for BreakdownResponse
impl Unpin for BreakdownResponse
impl UnwindSafe for BreakdownResponse
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