Struct azure_devops_rust_api::wiki::models::WikiPageViewStats
source · pub struct WikiPageViewStats {
pub count: Option<i32>,
pub last_viewed_time: Option<OffsetDateTime>,
pub path: Option<String>,
}
Expand description
Defines properties for wiki page view stats.
Fields§
§count: Option<i32>
Wiki page view count.
last_viewed_time: Option<OffsetDateTime>
Wiki page last viewed time.
path: Option<String>
Wiki page path.
Implementations§
Trait Implementations§
source§impl Clone for WikiPageViewStats
impl Clone for WikiPageViewStats
source§fn clone(&self) -> WikiPageViewStats
fn clone(&self) -> WikiPageViewStats
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 WikiPageViewStats
impl Debug for WikiPageViewStats
source§impl Default for WikiPageViewStats
impl Default for WikiPageViewStats
source§fn default() -> WikiPageViewStats
fn default() -> WikiPageViewStats
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WikiPageViewStats
impl<'de> Deserialize<'de> for WikiPageViewStats
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 for WikiPageViewStats
impl PartialEq for WikiPageViewStats
source§fn eq(&self, other: &WikiPageViewStats) -> bool
fn eq(&self, other: &WikiPageViewStats) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WikiPageViewStats
impl Serialize for WikiPageViewStats
impl StructuralPartialEq for WikiPageViewStats
Auto Trait Implementations§
impl RefUnwindSafe for WikiPageViewStats
impl Send for WikiPageViewStats
impl Sync for WikiPageViewStats
impl Unpin for WikiPageViewStats
impl UnwindSafe for WikiPageViewStats
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