pub struct RestFinding {
pub issue_id: u32,
pub scan_type: String,
pub description: String,
pub count: u32,
pub context_type: String,
pub context_guid: String,
pub violates_policy: bool,
pub finding_status: FindingStatus,
pub finding_details: FindingDetails,
pub build_id: u64,
}Expand description
A security finding from a Veracode scan
Fields§
§issue_id: u32Unique issue ID
scan_type: StringType of scan that found this issue
description: StringDetailed description of the finding
count: u32Number of occurrences
context_type: StringContext type (SANDBOX, POLICY, etc.)
context_guid: StringContext GUID (sandbox GUID for sandbox scans)
violates_policy: boolWhether this finding violates policy
finding_status: FindingStatusStatus information
finding_details: FindingDetailsDetailed finding information
build_id: u64Build ID where this finding was discovered
Trait Implementations§
Source§impl Clone for RestFinding
impl Clone for RestFinding
Source§fn clone(&self) -> RestFinding
fn clone(&self) -> RestFinding
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 RestFinding
impl Debug for RestFinding
Source§impl<'de> Deserialize<'de> for RestFinding
impl<'de> Deserialize<'de> for RestFinding
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
Auto Trait Implementations§
impl Freeze for RestFinding
impl RefUnwindSafe for RestFinding
impl Send for RestFinding
impl Sync for RestFinding
impl Unpin for RestFinding
impl UnwindSafe for RestFinding
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