pub struct FileCommitResponse {
pub author: Option<CommitUser>,
pub committer: Option<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<CommitMeta>,
pub url: Option<String>,
pub verification: Option<CommitVerification>,
}Fields§
§committer: Option<CommitUser>§created: Option<String>§html_url: Option<String>§message: Option<String>§parents: Option<Vec<CommitMeta>>§sha: Option<String>§tree: Option<CommitMeta>§url: Option<String>§verification: Option<CommitVerification>Trait Implementations§
Source§impl Clone for FileCommitResponse
impl Clone for FileCommitResponse
Source§fn clone(&self) -> FileCommitResponse
fn clone(&self) -> FileCommitResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'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
Auto Trait Implementations§
impl Freeze for FileCommitResponse
impl RefUnwindSafe for FileCommitResponse
impl Send for FileCommitResponse
impl Sync for FileCommitResponse
impl Unpin for FileCommitResponse
impl UnsafeUnpin 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