pub struct PageAnalyticsDetails {
pub icon: Option<Icon>,
pub id: String,
pub name: String,
}
Expand description
Metadata about a page relevant to analytics.
JSON schema
{
"description": "Metadata about a page relevant to analytics.",
"required": [
"id",
"name"
],
"properties": {
"icon": {
"$ref": "#/components/schemas/Icon"
},
"id": {
"description": "ID of the page.",
"examples": [
"section-IjkLmnO"
],
"type": "string"
},
"name": {
"description": "Name of the page.",
"examples": [
"Launch Status"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "PageAnalyticsDetails"
}
Fields§
§icon: Option<Icon>
§id: String
ID of the page.
name: String
Name of the page.
Trait Implementations§
Source§impl Clone for PageAnalyticsDetails
impl Clone for PageAnalyticsDetails
Source§fn clone(&self) -> PageAnalyticsDetails
fn clone(&self) -> PageAnalyticsDetails
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 PageAnalyticsDetails
impl Debug for PageAnalyticsDetails
Source§impl<'de> Deserialize<'de> for PageAnalyticsDetails
impl<'de> Deserialize<'de> for PageAnalyticsDetails
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<&PageAnalyticsDetails> for PageAnalyticsDetails
impl From<&PageAnalyticsDetails> for PageAnalyticsDetails
Source§fn from(value: &PageAnalyticsDetails) -> Self
fn from(value: &PageAnalyticsDetails) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PageAnalyticsDetails
impl RefUnwindSafe for PageAnalyticsDetails
impl Send for PageAnalyticsDetails
impl Sync for PageAnalyticsDetails
impl Unpin for PageAnalyticsDetails
impl UnwindSafe for PageAnalyticsDetails
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