pub struct CommitDetails {
pub url: String,
pub author: UserStamp,
pub committer: Option<UserStamp>,
pub message: String,
pub tree: CommitRef,
pub comment_count: u64,
}Expand description
Representation of a pull request commit details
Fields§
§url: String§committer: Option<UserStamp>§message: String§tree: CommitRef§comment_count: u64Trait Implementations§
Source§impl Debug for CommitDetails
impl Debug for CommitDetails
Source§impl<'de> Deserialize<'de> for CommitDetails
impl<'de> Deserialize<'de> for CommitDetails
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 CommitDetails
impl RefUnwindSafe for CommitDetails
impl Send for CommitDetails
impl Sync for CommitDetails
impl Unpin for CommitDetails
impl UnwindSafe for CommitDetails
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