pub struct SecretScanningAlertReopenedAlert {
pub number: i64,
pub resolution: (),
pub resolved_at: (),
pub resolved_by: (),
pub secret_type: String,
}
Expand description
The secret scanning alert involved in the event.
JSON schema
{
"description": "The secret scanning alert involved in the event.",
"type": "object",
"required": [
"number",
"resolution",
"resolved_at",
"resolved_by",
"secret_type"
],
"properties": {
"number": {
"type": "integer"
},
"resolution": {
"type": "null"
},
"resolved_at": {
"type": "null"
},
"resolved_by": {
"type": "null"
},
"secret_type": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§number: i64
§resolution: ()
§resolved_at: ()
§resolved_by: ()
§secret_type: String
Implementations§
Trait Implementations§
Source§impl Clone for SecretScanningAlertReopenedAlert
impl Clone for SecretScanningAlertReopenedAlert
Source§fn clone(&self) -> SecretScanningAlertReopenedAlert
fn clone(&self) -> SecretScanningAlertReopenedAlert
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<'de> Deserialize<'de> for SecretScanningAlertReopenedAlert
impl<'de> Deserialize<'de> for SecretScanningAlertReopenedAlert
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 From<&SecretScanningAlertReopenedAlert> for SecretScanningAlertReopenedAlert
impl From<&SecretScanningAlertReopenedAlert> for SecretScanningAlertReopenedAlert
Source§fn from(value: &SecretScanningAlertReopenedAlert) -> Self
fn from(value: &SecretScanningAlertReopenedAlert) -> Self
Converts to this type from the input type.
Source§impl From<SecretScanningAlertReopenedAlert> for SecretScanningAlertReopenedAlert
impl From<SecretScanningAlertReopenedAlert> for SecretScanningAlertReopenedAlert
Source§fn from(value: SecretScanningAlertReopenedAlert) -> Self
fn from(value: SecretScanningAlertReopenedAlert) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SecretScanningAlertReopenedAlert
impl RefUnwindSafe for SecretScanningAlertReopenedAlert
impl Send for SecretScanningAlertReopenedAlert
impl Sync for SecretScanningAlertReopenedAlert
impl Unpin for SecretScanningAlertReopenedAlert
impl UnwindSafe for SecretScanningAlertReopenedAlert
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