pub struct CodeScanningAnalysisTool {
pub name: Option<String>,
pub version: Option<Option<String>>,
pub guid: Option<Option<String>>,
}
Fields§
§name: Option<String>
The name of the tool used to generate the code scanning analysis.
version: Option<Option<String>>
The version of the tool used to generate the code scanning analysis.
guid: Option<Option<String>>
The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data.
Implementations§
Source§impl CodeScanningAnalysisTool
impl CodeScanningAnalysisTool
pub fn new() -> CodeScanningAnalysisTool
Trait Implementations§
Source§impl Clone for CodeScanningAnalysisTool
impl Clone for CodeScanningAnalysisTool
Source§fn clone(&self) -> CodeScanningAnalysisTool
fn clone(&self) -> CodeScanningAnalysisTool
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 CodeScanningAnalysisTool
impl Debug for CodeScanningAnalysisTool
Source§impl Default for CodeScanningAnalysisTool
impl Default for CodeScanningAnalysisTool
Source§fn default() -> CodeScanningAnalysisTool
fn default() -> CodeScanningAnalysisTool
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeScanningAnalysisTool
impl<'de> Deserialize<'de> for CodeScanningAnalysisTool
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 CodeScanningAnalysisTool
impl PartialEq for CodeScanningAnalysisTool
Source§impl Serialize for CodeScanningAnalysisTool
impl Serialize for CodeScanningAnalysisTool
impl StructuralPartialEq for CodeScanningAnalysisTool
Auto Trait Implementations§
impl Freeze for CodeScanningAnalysisTool
impl RefUnwindSafe for CodeScanningAnalysisTool
impl Send for CodeScanningAnalysisTool
impl Sync for CodeScanningAnalysisTool
impl Unpin for CodeScanningAnalysisTool
impl UnwindSafe for CodeScanningAnalysisTool
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