pub struct WebhookWorkflowJobQueued {
pub action: Action,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Option<Box<SimpleInstallation>>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub repository: Box<RepositoryWebhooks>,
pub sender: Box<SimpleUserWebhooks>,
pub workflow_job: Box<WebhookWorkflowJobQueuedWorkflowJob>,
pub deployment: Option<Box<Deployment>>,
}
Fields§
§action: Action
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Option<Box<SimpleInstallation>>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§repository: Box<RepositoryWebhooks>
§sender: Box<SimpleUserWebhooks>
§workflow_job: Box<WebhookWorkflowJobQueuedWorkflowJob>
§deployment: Option<Box<Deployment>>
Implementations§
Source§impl WebhookWorkflowJobQueued
impl WebhookWorkflowJobQueued
pub fn new( action: Action, repository: RepositoryWebhooks, sender: SimpleUserWebhooks, workflow_job: WebhookWorkflowJobQueuedWorkflowJob, ) -> WebhookWorkflowJobQueued
Trait Implementations§
Source§impl Clone for WebhookWorkflowJobQueued
impl Clone for WebhookWorkflowJobQueued
Source§fn clone(&self) -> WebhookWorkflowJobQueued
fn clone(&self) -> WebhookWorkflowJobQueued
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 WebhookWorkflowJobQueued
impl Debug for WebhookWorkflowJobQueued
Source§impl Default for WebhookWorkflowJobQueued
impl Default for WebhookWorkflowJobQueued
Source§fn default() -> WebhookWorkflowJobQueued
fn default() -> WebhookWorkflowJobQueued
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookWorkflowJobQueued
impl<'de> Deserialize<'de> for WebhookWorkflowJobQueued
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
Source§impl PartialEq for WebhookWorkflowJobQueued
impl PartialEq for WebhookWorkflowJobQueued
Source§impl Serialize for WebhookWorkflowJobQueued
impl Serialize for WebhookWorkflowJobQueued
impl StructuralPartialEq for WebhookWorkflowJobQueued
Auto Trait Implementations§
impl Freeze for WebhookWorkflowJobQueued
impl RefUnwindSafe for WebhookWorkflowJobQueued
impl Send for WebhookWorkflowJobQueued
impl Sync for WebhookWorkflowJobQueued
impl Unpin for WebhookWorkflowJobQueued
impl UnwindSafe for WebhookWorkflowJobQueued
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