pub struct FileCommitResponse {
pub author: Option<Box<CommitUser>>,
pub committer: Option<Box<CommitUser>>,
pub created: Option<String>,
pub html_url: Option<String>,
pub message: Option<String>,
pub parents: Option<Vec<CommitMeta>>,
pub sha: Option<String>,
pub tree: Option<Box<CommitMeta>>,
pub url: Option<String>,
}
Fields§
§committer: Option<Box<CommitUser>>
§created: Option<String>
§html_url: Option<String>
§message: Option<String>
§parents: Option<Vec<CommitMeta>>
§sha: Option<String>
§tree: Option<Box<CommitMeta>>
§url: Option<String>
Implementations§
Source§impl FileCommitResponse
impl FileCommitResponse
pub fn new() -> FileCommitResponse
Trait Implementations§
Source§impl Clone for FileCommitResponse
impl Clone for FileCommitResponse
Source§fn clone(&self) -> FileCommitResponse
fn clone(&self) -> FileCommitResponse
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 FileCommitResponse
impl Debug for FileCommitResponse
Source§impl Default for FileCommitResponse
impl Default for FileCommitResponse
Source§fn default() -> FileCommitResponse
fn default() -> FileCommitResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileCommitResponse
impl<'de> Deserialize<'de> for FileCommitResponse
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 FileCommitResponse
impl PartialEq for FileCommitResponse
Source§impl Serialize for FileCommitResponse
impl Serialize for FileCommitResponse
impl StructuralPartialEq for FileCommitResponse
Auto Trait Implementations§
impl Freeze for FileCommitResponse
impl RefUnwindSafe for FileCommitResponse
impl Send for FileCommitResponse
impl Sync for FileCommitResponse
impl Unpin for FileCommitResponse
impl UnwindSafe for FileCommitResponse
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