pub struct WikiV2 {
pub wiki_create_base_parameters: WikiCreateBaseParameters,
pub id: Option<String>,
pub is_disabled: Option<bool>,
pub properties: Option<Value>,
pub remote_url: Option<String>,
pub url: Option<String>,
pub versions: Vec<GitVersionDescriptor>,
}Expand description
Defines a wiki resource.
Fields§
§wiki_create_base_parameters: WikiCreateBaseParameters§id: Option<String>ID of the wiki.
is_disabled: Option<bool>Is wiki repository disabled
properties: Option<Value>Properties of the wiki.
remote_url: Option<String>Remote web url to the wiki.
url: Option<String>REST url for this wiki.
versions: Vec<GitVersionDescriptor>Versions of the wiki.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WikiV2
impl<'de> Deserialize<'de> for WikiV2
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
impl StructuralPartialEq for WikiV2
Auto Trait Implementations§
impl Freeze for WikiV2
impl RefUnwindSafe for WikiV2
impl Send for WikiV2
impl Sync for WikiV2
impl Unpin for WikiV2
impl UnwindSafe for WikiV2
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