pub struct PullRequestCreatedEvent {
pub id: usize,
pub title: String,
pub body: String,
pub user: String,
pub from_repo: Repository,
pub from_ref: String,
pub to_ref: String,
}
Fields§
§id: usize
§title: String
§body: String
§user: String
§from_repo: Repository
§from_ref: String
§to_ref: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PullRequestCreatedEvent
impl RefUnwindSafe for PullRequestCreatedEvent
impl Send for PullRequestCreatedEvent
impl Sync for PullRequestCreatedEvent
impl Unpin for PullRequestCreatedEvent
impl UnwindSafe for PullRequestCreatedEvent
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