pub struct PushEventPayload {
pub ref_field: String,
pub commits: Vec<CommitInfo>,
pub sender: UserInfo,
pub repository: RepositoryInfo,
}Expand description
プッシュイベントペイロード
Fields§
§ref_field: Stringリファレンス
commits: Vec<CommitInfo>コミット
sender: UserInfo送信者
repository: RepositoryInfoリポジトリ
Trait Implementations§
Source§impl Clone for PushEventPayload
impl Clone for PushEventPayload
Source§fn clone(&self) -> PushEventPayload
fn clone(&self) -> PushEventPayload
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 PushEventPayload
impl Debug for PushEventPayload
Source§impl<'de> Deserialize<'de> for PushEventPayload
impl<'de> Deserialize<'de> for PushEventPayload
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 PushEventPayload
impl RefUnwindSafe for PushEventPayload
impl Send for PushEventPayload
impl Sync for PushEventPayload
impl Unpin for PushEventPayload
impl UnwindSafe for PushEventPayload
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