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