pub struct SecretScanningAlert<'a> {
Show 17 fields pub number: usize, pub created_at: &'a str, pub updated_at: Option<&'a str>, pub url: &'a str, pub html_url: &'a str, pub locations_url: Option<&'a str>, pub state: SecretScanningAlertState, pub resolution: Option<SecretScanningAlertResolution>, pub resolved_at: Option<&'a str>, pub resolved_by: Option<User<'a>>, pub resolution_comment: Option<&'a str>, pub secret_type: &'a str, pub secret_type_display_name: Option<&'a str>, pub secret: Option<&'a str>, pub push_protection_bypassed: Option<bool>, pub push_protection_bypassed_by: Option<User<'a>>, pub push_protection_bypassed_at: Option<&'a str>,
}

Fields§

§number: usize

The security alert number.

§created_at: &'a str

The time that the alert was created in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

§updated_at: Option<&'a str>§url: &'a str

The REST API URL of the alert resource.

§html_url: &'a str

The GitHub URL of the alert resource.

§locations_url: Option<&'a str>

The REST API URL of the code locations for this alert.

§state: SecretScanningAlertState§resolution: Option<SecretScanningAlertResolution>

Required when the state is resolved. The reason for resolving the alert.

§resolved_at: Option<&'a str>

The time that the alert was resolved in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

§resolved_by: Option<User<'a>>§resolution_comment: Option<&'a str>

An optional comment to resolve an alert.

§secret_type: &'a str

The type of secret that secret scanning detected.

§secret_type_display_name: Option<&'a str>

User-friendly name for the detected secret, matching the secret_type. For a list of built-in patterns, see “Secret scanning patterns.”

§secret: Option<&'a str>

The secret that was detected.

§push_protection_bypassed: Option<bool>

Whether push protection was bypassed for the detected secret.

§push_protection_bypassed_by: Option<User<'a>>§push_protection_bypassed_at: Option<&'a str>

The time that push protection was bypassed in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

Trait Implementations§

source§

impl<'a> Debug for SecretScanningAlert<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de: 'a, 'a> Deserialize<'de> for SecretScanningAlert<'a>

source§

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§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,