pub struct IssueEventResponse {
pub public: bool,
pub repo: Repository,
pub actor: Actor,
pub org: Option<Organisation>,
pub event: IssueEventType,
pub created_at: String,
pub commit_id: String,
pub id: String,
}Expand description
EventResponse represents the response for
all issue event requests found in activity::events.
Fields§
§public: bool§repo: Repository§actor: Actor§org: Option<Organisation>§event: IssueEventType§created_at: String§commit_id: String§id: StringTrait Implementations§
Source§impl Debug for IssueEventResponse
impl Debug for IssueEventResponse
Auto Trait Implementations§
impl Freeze for IssueEventResponse
impl RefUnwindSafe for IssueEventResponse
impl Send for IssueEventResponse
impl Sync for IssueEventResponse
impl Unpin for IssueEventResponse
impl UnwindSafe for IssueEventResponse
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