pub struct ListCommitsResponse {
pub sha: String,
pub commit: Commit,
pub author: Option<GitHubAuthor>,
}Fields§
§sha: String§commit: CommitRaw commit metadata, as reported by git. Isn’t GitHub aware, and just
has things like name and email.
GitHub metadata, as reported by GitHub. This has things like login.
Trait Implementations§
Source§impl Debug for ListCommitsResponse
impl Debug for ListCommitsResponse
Source§impl<'de> Deserialize<'de> for ListCommitsResponse
impl<'de> Deserialize<'de> for ListCommitsResponse
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 ListCommitsResponse
impl RefUnwindSafe for ListCommitsResponse
impl Send for ListCommitsResponse
impl Sync for ListCommitsResponse
impl Unpin for ListCommitsResponse
impl UnwindSafe for ListCommitsResponse
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