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