pub struct PackAnalyticsDetails {
pub created_at: DateTime<Utc>,
pub id: f64,
pub logo_url: Option<String>,
pub name: String,
}
Expand description
Metadata about a Pack relevant to analytics.
JSON schema
{
"description": "Metadata about a Pack relevant to analytics.",
"type": "object",
"required": [
"createdAt",
"id",
"name"
],
"properties": {
"createdAt": {
"description": "Creation time of the Pack.",
"examples": [
"2022-04-11T00:18:57.946Z"
],
"type": "string",
"format": "date-time"
},
"id": {
"description": "ID of the Pack.",
"examples": [
1003
],
"type": "number"
},
"logoUrl": {
"description": "The link to the logo of the Pack.",
"type": "string",
"format": "url"
},
"name": {
"description": "The name of the Pack.",
"examples": [
"Cool Geometry Formulas"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "PackAnalyticsDetails"
}
Fields§
§created_at: DateTime<Utc>
Creation time of the Pack.
id: f64
§logo_url: Option<String>
The link to the logo of the Pack.
name: String
The name of the Pack.
Trait Implementations§
Source§impl Clone for PackAnalyticsDetails
impl Clone for PackAnalyticsDetails
Source§fn clone(&self) -> PackAnalyticsDetails
fn clone(&self) -> PackAnalyticsDetails
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 PackAnalyticsDetails
impl Debug for PackAnalyticsDetails
Source§impl<'de> Deserialize<'de> for PackAnalyticsDetails
impl<'de> Deserialize<'de> for PackAnalyticsDetails
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<&PackAnalyticsDetails> for PackAnalyticsDetails
impl From<&PackAnalyticsDetails> for PackAnalyticsDetails
Source§fn from(value: &PackAnalyticsDetails) -> Self
fn from(value: &PackAnalyticsDetails) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackAnalyticsDetails
impl RefUnwindSafe for PackAnalyticsDetails
impl Send for PackAnalyticsDetails
impl Sync for PackAnalyticsDetails
impl Unpin for PackAnalyticsDetails
impl UnwindSafe for PackAnalyticsDetails
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