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