Struct github_webhook::payload_types::CheckRunDeployment
source · pub struct CheckRunDeployment<'a> {
pub url: &'a str,
pub id: usize,
pub node_id: &'a str,
pub task: &'a str,
pub original_environment: &'a str,
pub environment: &'a str,
pub description: Option<&'a str>,
pub created_at: &'a str,
pub updated_at: &'a str,
pub statuses_url: &'a str,
pub repository_url: &'a str,
}
Expand description
A deployment to a repository environment. This will only be populated if the check run was created by a GitHub Actions workflow job that references an environment.
Fields§
§url: &'a str
§id: usize
§node_id: &'a str
§task: &'a str
§original_environment: &'a str
§environment: &'a str
§description: Option<&'a str>
§created_at: &'a str
§updated_at: &'a str
§statuses_url: &'a str
§repository_url: &'a str
Trait Implementations§
source§impl<'a> Debug for CheckRunDeployment<'a>
impl<'a> Debug for CheckRunDeployment<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for CheckRunDeployment<'a>
impl<'de: 'a, 'a> Deserialize<'de> for CheckRunDeployment<'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 CheckRunDeployment<'a>
impl<'a> Send for CheckRunDeployment<'a>
impl<'a> Sync for CheckRunDeployment<'a>
impl<'a> Unpin for CheckRunDeployment<'a>
impl<'a> UnwindSafe for CheckRunDeployment<'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