pub struct DependabotAlertReintroduced {
pub action: DependabotAlertReintroducedAction,
pub alert: DependabotAlert,
pub installation: Option<InstallationLite>,
pub organization: Option<Organization>,
pub repository: Repository,
pub sender: GithubOrg,
}
Expand description
DependabotAlertReintroduced
JSON schema
{
"title": "dependabot_alert reintroduced event",
"type": "object",
"required": [
"action",
"alert",
"repository",
"sender"
],
"properties": {
"action": {
"type": "string",
"enum": [
"reintroduced"
]
},
"alert": {
"$ref": "#/definitions/dependabot-alert"
},
"installation": {
"$ref": "#/definitions/installation-lite"
},
"organization": {
"$ref": "#/definitions/organization"
},
"repository": {
"$ref": "#/definitions/repository"
},
"sender": {
"$ref": "#/definitions/github-org"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema"
}
Fields§
§action: DependabotAlertReintroducedAction
§alert: DependabotAlert
§installation: Option<InstallationLite>
§organization: Option<Organization>
§repository: Repository
§sender: GithubOrg
Implementations§
Trait Implementations§
Source§impl Clone for DependabotAlertReintroduced
impl Clone for DependabotAlertReintroduced
Source§fn clone(&self) -> DependabotAlertReintroduced
fn clone(&self) -> DependabotAlertReintroduced
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 DependabotAlertReintroduced
impl Debug for DependabotAlertReintroduced
Source§impl<'de> Deserialize<'de> for DependabotAlertReintroduced
impl<'de> Deserialize<'de> for DependabotAlertReintroduced
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<&DependabotAlertReintroduced> for DependabotAlertReintroduced
impl From<&DependabotAlertReintroduced> for DependabotAlertReintroduced
Source§fn from(value: &DependabotAlertReintroduced) -> Self
fn from(value: &DependabotAlertReintroduced) -> Self
Converts to this type from the input type.
Source§impl From<DependabotAlertReintroduced> for DependabotAlertEvent
impl From<DependabotAlertReintroduced> for DependabotAlertEvent
Source§fn from(value: DependabotAlertReintroduced) -> Self
fn from(value: DependabotAlertReintroduced) -> Self
Converts to this type from the input type.
Source§impl From<DependabotAlertReintroduced> for DependabotAlertReintroduced
impl From<DependabotAlertReintroduced> for DependabotAlertReintroduced
Source§fn from(value: DependabotAlertReintroduced) -> Self
fn from(value: DependabotAlertReintroduced) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DependabotAlertReintroduced
impl RefUnwindSafe for DependabotAlertReintroduced
impl Send for DependabotAlertReintroduced
impl Sync for DependabotAlertReintroduced
impl Unpin for DependabotAlertReintroduced
impl UnwindSafe for DependabotAlertReintroduced
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