pub struct PackAnalyticsSummary {
pub total_doc_installs: i64,
pub total_invocations: i64,
pub total_workspace_installs: i64,
}
Expand description
Summary analytics for Packs.
JSON schema
{
"description": "Summary analytics for Packs.",
"type": "object",
"required": [
"totalDocInstalls",
"totalInvocations",
"totalWorkspaceInstalls"
],
"properties": {
"totalDocInstalls": {
"description": "The number of times this Pack was installed in
docs.",
"type": "integer"
},
"totalInvocations": {
"description": "The number of times formulas in this Pack were
invoked.",
"type": "integer"
},
"totalWorkspaceInstalls": {
"description": "The number of times this Pack was installed in
workspaces.",
"type": "integer"
}
},
"additionalProperties": false,
"x-schema-name": "PackAnalyticsSummary"
}
Fields§
§total_doc_installs: i64
The number of times this Pack was installed in docs.
total_invocations: i64
The number of times formulas in this Pack were invoked.
total_workspace_installs: i64
The number of times this Pack was installed in workspaces.
Trait Implementations§
Source§impl Clone for PackAnalyticsSummary
impl Clone for PackAnalyticsSummary
Source§fn clone(&self) -> PackAnalyticsSummary
fn clone(&self) -> PackAnalyticsSummary
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 PackAnalyticsSummary
impl Debug for PackAnalyticsSummary
Source§impl<'de> Deserialize<'de> for PackAnalyticsSummary
impl<'de> Deserialize<'de> for PackAnalyticsSummary
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<&PackAnalyticsSummary> for PackAnalyticsSummary
impl From<&PackAnalyticsSummary> for PackAnalyticsSummary
Source§fn from(value: &PackAnalyticsSummary) -> Self
fn from(value: &PackAnalyticsSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackAnalyticsSummary
impl RefUnwindSafe for PackAnalyticsSummary
impl Send for PackAnalyticsSummary
impl Sync for PackAnalyticsSummary
impl Unpin for PackAnalyticsSummary
impl UnwindSafe for PackAnalyticsSummary
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