pub struct WebhookStatusCommitCommit {
pub author: Box<WebhookStatusCommitCommitAuthor>,
pub comment_count: i32,
pub committer: Box<WebhookStatusCommitCommitAuthor>,
pub message: String,
pub tree: Box<ShortBranchCommit>,
pub url: String,
pub verification: Box<WebhookStatusCommitCommitVerification>,
}
Fields§
§comment_count: i32
§committer: Box<WebhookStatusCommitCommitAuthor>
§message: String
§tree: Box<ShortBranchCommit>
§url: String
§verification: Box<WebhookStatusCommitCommitVerification>
Implementations§
Source§impl WebhookStatusCommitCommit
impl WebhookStatusCommitCommit
pub fn new( author: WebhookStatusCommitCommitAuthor, comment_count: i32, committer: WebhookStatusCommitCommitAuthor, message: String, tree: ShortBranchCommit, url: String, verification: WebhookStatusCommitCommitVerification, ) -> WebhookStatusCommitCommit
Trait Implementations§
Source§impl Clone for WebhookStatusCommitCommit
impl Clone for WebhookStatusCommitCommit
Source§fn clone(&self) -> WebhookStatusCommitCommit
fn clone(&self) -> WebhookStatusCommitCommit
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 WebhookStatusCommitCommit
impl Debug for WebhookStatusCommitCommit
Source§impl Default for WebhookStatusCommitCommit
impl Default for WebhookStatusCommitCommit
Source§fn default() -> WebhookStatusCommitCommit
fn default() -> WebhookStatusCommitCommit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookStatusCommitCommit
impl<'de> Deserialize<'de> for WebhookStatusCommitCommit
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
impl StructuralPartialEq for WebhookStatusCommitCommit
Auto Trait Implementations§
impl Freeze for WebhookStatusCommitCommit
impl RefUnwindSafe for WebhookStatusCommitCommit
impl Send for WebhookStatusCommitCommit
impl Sync for WebhookStatusCommitCommit
impl Unpin for WebhookStatusCommitCommit
impl UnwindSafe for WebhookStatusCommitCommit
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