pub struct PackAnalyticsItem {
pub metrics: Vec<PackAnalyticsMetrics>,
pub pack: PackAnalyticsDetails,
}
Expand description
Analytics data for a Coda Pack.
JSON schema
{
"description": "Analytics data for a Coda Pack.",
"type": "object",
"required": [
"metrics",
"pack"
],
"properties": {
"metrics": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackAnalyticsMetrics"
}
},
"pack": {
"$ref": "#/components/schemas/PackAnalyticsDetails"
}
},
"additionalProperties": false,
"x-schema-name": "PackAnalyticsItem"
}
Fields§
§metrics: Vec<PackAnalyticsMetrics>
§pack: PackAnalyticsDetails
Trait Implementations§
Source§impl Clone for PackAnalyticsItem
impl Clone for PackAnalyticsItem
Source§fn clone(&self) -> PackAnalyticsItem
fn clone(&self) -> PackAnalyticsItem
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 PackAnalyticsItem
impl Debug for PackAnalyticsItem
Source§impl<'de> Deserialize<'de> for PackAnalyticsItem
impl<'de> Deserialize<'de> for PackAnalyticsItem
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 From<&PackAnalyticsItem> for PackAnalyticsItem
impl From<&PackAnalyticsItem> for PackAnalyticsItem
Source§fn from(value: &PackAnalyticsItem) -> Self
fn from(value: &PackAnalyticsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackAnalyticsItem
impl RefUnwindSafe for PackAnalyticsItem
impl Send for PackAnalyticsItem
impl Sync for PackAnalyticsItem
impl Unpin for PackAnalyticsItem
impl UnwindSafe for PackAnalyticsItem
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