pub struct MemoryIssueFinding {
pub issue_type: MemoryIssueType,
pub location: CodeLocation,
pub severity: SeverityLevel,
pub description: String,
pub vulnerable_code: Option<String>,
}Fields§
§issue_type: MemoryIssueType§location: CodeLocation§severity: SeverityLevel§description: String§vulnerable_code: Option<String>Trait Implementations§
Source§impl Clone for MemoryIssueFinding
impl Clone for MemoryIssueFinding
Source§fn clone(&self) -> MemoryIssueFinding
fn clone(&self) -> MemoryIssueFinding
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 MemoryIssueFinding
impl Debug for MemoryIssueFinding
Source§impl<'de> Deserialize<'de> for MemoryIssueFinding
impl<'de> Deserialize<'de> for MemoryIssueFinding
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 MemoryIssueFinding
impl RefUnwindSafe for MemoryIssueFinding
impl Send for MemoryIssueFinding
impl Sync for MemoryIssueFinding
impl Unpin for MemoryIssueFinding
impl UnwindSafe for MemoryIssueFinding
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