pub struct PullRequestEventPayload {
pub action: String,
pub number: u32,
pub pull_request: PullRequestInfo,
pub repository: RepositoryInfo,
}Expand description
プルリクエストイベントペイロード
Fields§
§action: Stringアクション
number: u32プルリクエスト番号
pull_request: PullRequestInfoプルリクエスト
repository: RepositoryInfoリポジトリ
Trait Implementations§
Source§impl Clone for PullRequestEventPayload
impl Clone for PullRequestEventPayload
Source§fn clone(&self) -> PullRequestEventPayload
fn clone(&self) -> PullRequestEventPayload
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 PullRequestEventPayload
impl Debug for PullRequestEventPayload
Source§impl<'de> Deserialize<'de> for PullRequestEventPayload
impl<'de> Deserialize<'de> for PullRequestEventPayload
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 Freeze for PullRequestEventPayload
impl RefUnwindSafe for PullRequestEventPayload
impl Send for PullRequestEventPayload
impl Sync for PullRequestEventPayload
impl Unpin for PullRequestEventPayload
impl UnwindSafe for PullRequestEventPayload
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