pub struct CodeScanningAnalysisDeletion {
pub next_analysis_url: Option<String>,
pub confirm_delete_url: Option<String>,
}
Expand description
CodeScanningAnalysisDeletion : Successful deletion of a code scanning analysis
Fields§
§next_analysis_url: Option<String>
Next deletable analysis in chain, without last analysis deletion confirmation
confirm_delete_url: Option<String>
Next deletable analysis in chain, with last analysis deletion confirmation
Implementations§
Trait Implementations§
Source§impl Clone for CodeScanningAnalysisDeletion
impl Clone for CodeScanningAnalysisDeletion
Source§fn clone(&self) -> CodeScanningAnalysisDeletion
fn clone(&self) -> CodeScanningAnalysisDeletion
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 CodeScanningAnalysisDeletion
impl Debug for CodeScanningAnalysisDeletion
Source§impl Default for CodeScanningAnalysisDeletion
impl Default for CodeScanningAnalysisDeletion
Source§fn default() -> CodeScanningAnalysisDeletion
fn default() -> CodeScanningAnalysisDeletion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeScanningAnalysisDeletion
impl<'de> Deserialize<'de> for CodeScanningAnalysisDeletion
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 PartialEq for CodeScanningAnalysisDeletion
impl PartialEq for CodeScanningAnalysisDeletion
Source§fn eq(&self, other: &CodeScanningAnalysisDeletion) -> bool
fn eq(&self, other: &CodeScanningAnalysisDeletion) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CodeScanningAnalysisDeletion
Auto Trait Implementations§
impl Freeze for CodeScanningAnalysisDeletion
impl RefUnwindSafe for CodeScanningAnalysisDeletion
impl Send for CodeScanningAnalysisDeletion
impl Sync for CodeScanningAnalysisDeletion
impl Unpin for CodeScanningAnalysisDeletion
impl UnwindSafe for CodeScanningAnalysisDeletion
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