pub struct SystemCallFinding {
pub syscall_name: String,
pub location: CodeLocation,
pub danger_level: SeverityLevel,
pub reason: String,
pub mitigation: Option<String>,
}Fields§
§syscall_name: String§location: CodeLocation§danger_level: SeverityLevel§reason: String§mitigation: Option<String>Trait Implementations§
Source§impl Clone for SystemCallFinding
impl Clone for SystemCallFinding
Source§fn clone(&self) -> SystemCallFinding
fn clone(&self) -> SystemCallFinding
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 SystemCallFinding
impl Debug for SystemCallFinding
Source§impl<'de> Deserialize<'de> for SystemCallFinding
impl<'de> Deserialize<'de> for SystemCallFinding
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 SystemCallFinding
impl RefUnwindSafe for SystemCallFinding
impl Send for SystemCallFinding
impl Sync for SystemCallFinding
impl Unpin for SystemCallFinding
impl UnwindSafe for SystemCallFinding
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