Struct azure_devops_rust_api::wiki::models::WikiPageResponse
source · pub struct WikiPageResponse {
pub e_tag: Vec<String>,
pub page: Option<WikiPage>,
}Expand description
Response contract for the Wiki Pages PUT, PATCH and DELETE APIs.
Fields§
§e_tag: Vec<String>Contains the list of ETag values from the response header of the pages API call. The first item in the list contains the version of the wiki page.
page: Option<WikiPage>Defines a page in a wiki.
Implementations§
Trait Implementations§
source§impl Clone for WikiPageResponse
impl Clone for WikiPageResponse
source§fn clone(&self) -> WikiPageResponse
fn clone(&self) -> WikiPageResponse
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 WikiPageResponse
impl Debug for WikiPageResponse
source§impl Default for WikiPageResponse
impl Default for WikiPageResponse
source§fn default() -> WikiPageResponse
fn default() -> WikiPageResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WikiPageResponse
impl<'de> Deserialize<'de> for WikiPageResponse
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 WikiPageResponse
impl PartialEq for WikiPageResponse
source§fn eq(&self, other: &WikiPageResponse) -> bool
fn eq(&self, other: &WikiPageResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for WikiPageResponse
impl Serialize for WikiPageResponse
impl StructuralPartialEq for WikiPageResponse
Auto Trait Implementations§
impl Freeze for WikiPageResponse
impl RefUnwindSafe for WikiPageResponse
impl Send for WikiPageResponse
impl Sync for WikiPageResponse
impl Unpin for WikiPageResponse
impl UnwindSafe for WikiPageResponse
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