pub struct GitHubEvent {
pub event_type: String,
pub payload: Value,
pub received_at: SystemTime,
pub signature: Option<String>,
}Expand description
GitHubイベント
Fields§
§event_type: Stringイベントタイプ
payload: Valueペイロード
received_at: SystemTime受信時刻
signature: Option<String>署名
Trait Implementations§
Source§impl Clone for GitHubEvent
impl Clone for GitHubEvent
Source§fn clone(&self) -> GitHubEvent
fn clone(&self) -> GitHubEvent
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 moreAuto Trait Implementations§
impl Freeze for GitHubEvent
impl RefUnwindSafe for GitHubEvent
impl Send for GitHubEvent
impl Sync for GitHubEvent
impl Unpin for GitHubEvent
impl UnwindSafe for GitHubEvent
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