pub enum DocAnalyticsDetails {}
Expand description
DocAnalyticsDetails
JSON schema
{
"allOf": [
{
"$ref": "#/components/schemas/DocReference"
},
{
"description": "Metadata about a doc relevant to analytics.",
"type": "object",
"required": [
"createdAt",
"title"
],
"properties": {
"createdAt": {
"description": "Creation time of the doc.",
"examples": [
"2022-04-11T00:18:57.946Z"
],
"type": "string",
"format": "date-time"
},
"icon": {
"$ref": "#/components/schemas/Icon"
},
"publishedAt": {
"description": "Published time of the doc.",
"examples": [
"2022-04-12T00:18:57.946Z"
],
"type": "string",
"format": "date-time"
},
"title": {
"description": "The name of the doc.",
"examples": [
"Cool Geometry Formulas"
],
"type": "string"
}
},
"additionalProperties": false
}
]
}
Trait Implementations§
Source§impl Clone for DocAnalyticsDetails
impl Clone for DocAnalyticsDetails
Source§fn clone(&self) -> DocAnalyticsDetails
fn clone(&self) -> DocAnalyticsDetails
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 DocAnalyticsDetails
impl Debug for DocAnalyticsDetails
Source§impl<'de> Deserialize<'de> for DocAnalyticsDetails
impl<'de> Deserialize<'de> for DocAnalyticsDetails
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<&DocAnalyticsDetails> for DocAnalyticsDetails
impl From<&DocAnalyticsDetails> for DocAnalyticsDetails
Source§fn from(value: &DocAnalyticsDetails) -> Self
fn from(value: &DocAnalyticsDetails) -> Self
Converts to this type from the input type.
Source§impl Hash for DocAnalyticsDetails
impl Hash for DocAnalyticsDetails
Source§impl Ord for DocAnalyticsDetails
impl Ord for DocAnalyticsDetails
Source§fn cmp(&self, other: &DocAnalyticsDetails) -> Ordering
fn cmp(&self, other: &DocAnalyticsDetails) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DocAnalyticsDetails
impl PartialEq for DocAnalyticsDetails
Source§impl PartialOrd for DocAnalyticsDetails
impl PartialOrd for DocAnalyticsDetails
Source§impl Serialize for DocAnalyticsDetails
impl Serialize for DocAnalyticsDetails
impl Copy for DocAnalyticsDetails
impl Eq for DocAnalyticsDetails
impl StructuralPartialEq for DocAnalyticsDetails
Auto Trait Implementations§
impl Freeze for DocAnalyticsDetails
impl RefUnwindSafe for DocAnalyticsDetails
impl Send for DocAnalyticsDetails
impl Sync for DocAnalyticsDetails
impl Unpin for DocAnalyticsDetails
impl UnwindSafe for DocAnalyticsDetails
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