pub struct WikiPage {
pub commit_count: Option<i64>,
pub content_base64: Option<String>,
pub footer: Option<String>,
pub html_url: Option<String>,
pub last_commit: Option<Box<WikiCommit>>,
pub sidebar: Option<String>,
pub sub_url: Option<String>,
pub title: Option<String>,
}
Expand description
WikiPage : WikiPage a wiki page
Fields§
§commit_count: Option<i64>
§content_base64: Option<String>
Page content, base64 encoded
html_url: Option<String>
§last_commit: Option<Box<WikiCommit>>
§sub_url: Option<String>
§title: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WikiPage
impl<'de> Deserialize<'de> for WikiPage
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 WikiPage
Auto Trait Implementations§
impl Freeze for WikiPage
impl RefUnwindSafe for WikiPage
impl Send for WikiPage
impl Sync for WikiPage
impl Unpin for WikiPage
impl UnwindSafe for WikiPage
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