pub struct GistHistory {
pub user: Option<Option<Box<NullableSimpleUser>>>,
pub version: Option<String>,
pub committed_at: Option<String>,
pub change_status: Option<Box<GistHistoryChangeStatus>>,
pub url: Option<String>,
}
Expand description
GistHistory : Gist History
Fields§
§user: Option<Option<Box<NullableSimpleUser>>>
§version: Option<String>
§committed_at: Option<String>
§change_status: Option<Box<GistHistoryChangeStatus>>
§url: Option<String>
Implementations§
Source§impl GistHistory
impl GistHistory
Sourcepub fn new() -> GistHistory
pub fn new() -> GistHistory
Gist History
Trait Implementations§
Source§impl Clone for GistHistory
impl Clone for GistHistory
Source§fn clone(&self) -> GistHistory
fn clone(&self) -> GistHistory
Returns a duplicate 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 GistHistory
impl Debug for GistHistory
Source§impl Default for GistHistory
impl Default for GistHistory
Source§fn default() -> GistHistory
fn default() -> GistHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GistHistory
impl<'de> Deserialize<'de> for GistHistory
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 GistHistory
impl PartialEq for GistHistory
Source§impl Serialize for GistHistory
impl Serialize for GistHistory
impl StructuralPartialEq for GistHistory
Auto Trait Implementations§
impl Freeze for GistHistory
impl RefUnwindSafe for GistHistory
impl Send for GistHistory
impl Sync for GistHistory
impl Unpin for GistHistory
impl UnwindSafe for GistHistory
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