pub struct PatchDependabotUpdateAlert {
pub state: Option<String>,
pub dismissed_reason: Option<String>,
pub dismissed_comment: Option<String>,
}Fields§
§state: Option<String>The state of the Dependabot alert. A dismissed_reason must be provided when setting the state to dismissed.
dismissed_reason: Option<String>Required when state is dismissed. A reason for dismissing the alert.
dismissed_comment: Option<String>An optional comment associated with dismissing the alert.
Trait Implementations§
Source§impl Clone for PatchDependabotUpdateAlert
impl Clone for PatchDependabotUpdateAlert
Source§fn clone(&self) -> PatchDependabotUpdateAlert
fn clone(&self) -> PatchDependabotUpdateAlert
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 PatchDependabotUpdateAlert
impl Debug for PatchDependabotUpdateAlert
Source§impl Default for PatchDependabotUpdateAlert
impl Default for PatchDependabotUpdateAlert
Source§fn default() -> PatchDependabotUpdateAlert
fn default() -> PatchDependabotUpdateAlert
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchDependabotUpdateAlert
impl<'de> Deserialize<'de> for PatchDependabotUpdateAlert
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
impl StructuralPartialEq for PatchDependabotUpdateAlert
Auto Trait Implementations§
impl Freeze for PatchDependabotUpdateAlert
impl RefUnwindSafe for PatchDependabotUpdateAlert
impl Send for PatchDependabotUpdateAlert
impl Sync for PatchDependabotUpdateAlert
impl Unpin for PatchDependabotUpdateAlert
impl UnwindSafe for PatchDependabotUpdateAlert
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