Struct azure_devops_rust_api::wiki::models::Wiki
source · pub struct Wiki {
pub wiki_create_parameters: WikiCreateParameters,
pub head_commit: Option<String>,
pub id: Option<String>,
pub repository: Option<GitRepository>,
}Expand description
Defines a wiki repository which encapsulates the git repository backing the wiki.
Fields§
§wiki_create_parameters: WikiCreateParameters§head_commit: Option<String>The head commit associated with the git repository backing up the wiki.
id: Option<String>The ID of the wiki which is same as the ID of the Git repository that it is backed by.
repository: Option<GitRepository>Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Wiki
impl<'de> Deserialize<'de> for Wiki
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 Wiki
impl PartialEq for Wiki
impl StructuralPartialEq for Wiki
Auto Trait Implementations§
impl Freeze for Wiki
impl RefUnwindSafe for Wiki
impl Send for Wiki
impl Sync for Wiki
impl Unpin for Wiki
impl UnwindSafe for Wiki
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