pub struct DocAnalyticsSummary {
pub total_sessions: i64,
}
Expand description
Summarized metrics for Coda docs.
JSON schema
{
"description": "Summarized metrics for Coda docs.",
"type": "object",
"required": [
"totalSessions"
],
"properties": {
"totalSessions": {
"description": "Total number of sessions across all docs.",
"examples": [
1337
],
"type": "integer"
}
},
"additionalProperties": false,
"x-schema-name": "DocAnalyticsSummary"
}
Fields§
§total_sessions: i64
Total number of sessions across all docs.
Trait Implementations§
Source§impl Clone for DocAnalyticsSummary
impl Clone for DocAnalyticsSummary
Source§fn clone(&self) -> DocAnalyticsSummary
fn clone(&self) -> DocAnalyticsSummary
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 DocAnalyticsSummary
impl Debug for DocAnalyticsSummary
Source§impl<'de> Deserialize<'de> for DocAnalyticsSummary
impl<'de> Deserialize<'de> for DocAnalyticsSummary
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<&DocAnalyticsSummary> for DocAnalyticsSummary
impl From<&DocAnalyticsSummary> for DocAnalyticsSummary
Source§fn from(value: &DocAnalyticsSummary) -> Self
fn from(value: &DocAnalyticsSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DocAnalyticsSummary
impl RefUnwindSafe for DocAnalyticsSummary
impl Send for DocAnalyticsSummary
impl Sync for DocAnalyticsSummary
impl Unpin for DocAnalyticsSummary
impl UnwindSafe for DocAnalyticsSummary
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