pub struct RepositoryDispatchEvent<'a> {
pub action: &'a str,
pub branch: &'a str,
pub client_payload: HashMap<&'a str, Value>,
pub repository: Repository<'a>,
pub sender: User<'a>,
pub installation: InstallationLite<'a>,
pub organization: Option<Organization<'a>>,
}
Fields§
§action: &'a str
§branch: &'a str
§client_payload: HashMap<&'a str, Value>
§repository: Repository<'a>
§sender: User<'a>
§installation: InstallationLite<'a>
§organization: Option<Organization<'a>>
Trait Implementations§
source§impl<'a> Debug for RepositoryDispatchEvent<'a>
impl<'a> Debug for RepositoryDispatchEvent<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for RepositoryDispatchEvent<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RepositoryDispatchEvent<'a>
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<'a> RefUnwindSafe for RepositoryDispatchEvent<'a>
impl<'a> Send for RepositoryDispatchEvent<'a>
impl<'a> Sync for RepositoryDispatchEvent<'a>
impl<'a> Unpin for RepositoryDispatchEvent<'a>
impl<'a> UnwindSafe for RepositoryDispatchEvent<'a>
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