Struct github_webhook::payload_types::AlertInstance
source · pub struct AlertInstance<'a> {
pub ref_: &'a str,
pub analysis_key: &'a str,
pub environment: &'a str,
pub state: AlertInstanceState,
pub commit_sha: Option<&'a str>,
pub message: Option<AlertInstanceMessage<'a>>,
pub location: Option<AlertInstanceLocation<'a>>,
pub classifications: Option<Vec<&'a str>>,
}Fields§
§ref_: &'a strThe full Git reference, formatted as refs/heads/<branch name>.
analysis_key: &'a strIdentifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name.
environment: &'a strIdentifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed.
state: AlertInstanceStateState of a code scanning alert.
commit_sha: Option<&'a str>§message: Option<AlertInstanceMessage<'a>>§location: Option<AlertInstanceLocation<'a>>§classifications: Option<Vec<&'a str>>Trait Implementations§
source§impl<'a> Debug for AlertInstance<'a>
impl<'a> Debug for AlertInstance<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for AlertInstance<'a>
impl<'de: 'a, 'a> Deserialize<'de> for AlertInstance<'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 AlertInstance<'a>
impl<'a> Send for AlertInstance<'a>
impl<'a> Sync for AlertInstance<'a>
impl<'a> Unpin for AlertInstance<'a>
impl<'a> UnwindSafe for AlertInstance<'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