pub struct CommitCommentCreatedEvent<'a> {
pub comment: CommitCommentCreatedEventComment<'a>,
pub repository: Repository<'a>,
pub sender: User<'a>,
pub installation: Option<InstallationLite<'a>>,
pub organization: Option<Organization<'a>>,
}
Expand description
A commit comment is created. The type of activity is specified in the action
property.
Fields§
§comment: CommitCommentCreatedEventComment<'a>
The commit comment resource.
repository: Repository<'a>
§sender: User<'a>
§installation: Option<InstallationLite<'a>>
§organization: Option<Organization<'a>>
Trait Implementations§
source§impl<'a> Debug for CommitCommentCreatedEvent<'a>
impl<'a> Debug for CommitCommentCreatedEvent<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for CommitCommentCreatedEvent<'a>
impl<'de: 'a, 'a> Deserialize<'de> for CommitCommentCreatedEvent<'a>
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<'a> RefUnwindSafe for CommitCommentCreatedEvent<'a>
impl<'a> Send for CommitCommentCreatedEvent<'a>
impl<'a> Sync for CommitCommentCreatedEvent<'a>
impl<'a> Unpin for CommitCommentCreatedEvent<'a>
impl<'a> UnwindSafe for CommitCommentCreatedEvent<'a>
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