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