Struct azure_devops_rust_api::wiki::models::WikiPageDetail
source · pub struct WikiPageDetail {
pub id: Option<i32>,
pub path: Option<String>,
pub view_stats: Vec<WikiPageStat>,
}Expand description
Defines a page with its metedata in a wiki.
Fields§
§id: Option<i32>When present, permanent identifier for the wiki page
path: Option<String>Path of the wiki page.
view_stats: Vec<WikiPageStat>Path of the wiki page.
Implementations§
Trait Implementations§
source§impl Clone for WikiPageDetail
impl Clone for WikiPageDetail
source§fn clone(&self) -> WikiPageDetail
fn clone(&self) -> WikiPageDetail
Returns a copy 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 WikiPageDetail
impl Debug for WikiPageDetail
source§impl Default for WikiPageDetail
impl Default for WikiPageDetail
source§fn default() -> WikiPageDetail
fn default() -> WikiPageDetail
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WikiPageDetail
impl<'de> Deserialize<'de> for WikiPageDetail
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 PartialEq<WikiPageDetail> for WikiPageDetail
impl PartialEq<WikiPageDetail> for WikiPageDetail
source§fn eq(&self, other: &WikiPageDetail) -> bool
fn eq(&self, other: &WikiPageDetail) -> bool
This method tests for
self and other values to be equal, and is used
by ==.