pub enum DependabotAlertEvent {
Created(DependabotAlertCreated),
Dismissed(DependabotAlertDismissed),
Fixed(DependabotAlertFixed),
Reintroduced(DependabotAlertReintroduced),
Reopened(DependabotAlertReopened),
}
Expand description
DependabotAlertEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/dependabot_alert$created"
},
{
"$ref": "#/definitions/dependabot_alert$dismissed"
},
{
"$ref": "#/definitions/dependabot_alert$fixed"
},
{
"$ref": "#/definitions/dependabot_alert$reintroduced"
},
{
"$ref": "#/definitions/dependabot_alert$reopened"
}
]
}
Variants§
Created(DependabotAlertCreated)
Dismissed(DependabotAlertDismissed)
Fixed(DependabotAlertFixed)
Reintroduced(DependabotAlertReintroduced)
Reopened(DependabotAlertReopened)
Trait Implementations§
Source§impl Clone for DependabotAlertEvent
impl Clone for DependabotAlertEvent
Source§fn clone(&self) -> DependabotAlertEvent
fn clone(&self) -> DependabotAlertEvent
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 DependabotAlertEvent
impl Debug for DependabotAlertEvent
Source§impl<'de> Deserialize<'de> for DependabotAlertEvent
impl<'de> Deserialize<'de> for DependabotAlertEvent
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<&DependabotAlertEvent> for DependabotAlertEvent
impl From<&DependabotAlertEvent> for DependabotAlertEvent
Source§fn from(value: &DependabotAlertEvent) -> Self
fn from(value: &DependabotAlertEvent) -> Self
Converts to this type from the input type.
Source§impl From<DependabotAlertCreated> for DependabotAlertEvent
impl From<DependabotAlertCreated> for DependabotAlertEvent
Source§fn from(value: DependabotAlertCreated) -> Self
fn from(value: DependabotAlertCreated) -> Self
Converts to this type from the input type.
Source§impl From<DependabotAlertDismissed> for DependabotAlertEvent
impl From<DependabotAlertDismissed> for DependabotAlertEvent
Source§fn from(value: DependabotAlertDismissed) -> Self
fn from(value: DependabotAlertDismissed) -> Self
Converts to this type from the input type.
Source§impl From<DependabotAlertFixed> for DependabotAlertEvent
impl From<DependabotAlertFixed> for DependabotAlertEvent
Source§fn from(value: DependabotAlertFixed) -> Self
fn from(value: DependabotAlertFixed) -> 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<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.
Auto Trait Implementations§
impl Freeze for DependabotAlertEvent
impl RefUnwindSafe for DependabotAlertEvent
impl Send for DependabotAlertEvent
impl Sync for DependabotAlertEvent
impl Unpin for DependabotAlertEvent
impl UnwindSafe for DependabotAlertEvent
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