pub struct SkillScanResult {
pub safe: bool,
pub skill_name: String,
pub findings: Vec<String>,
pub dangerous_patterns: Vec<String>,
pub ioc_matches: Vec<String>,
}Expand description
Result of scanning a single skill.
Fields§
§safe: bool§skill_name: String§findings: Vec<String>§dangerous_patterns: Vec<String>§ioc_matches: Vec<String>Trait Implementations§
Source§impl Clone for SkillScanResult
impl Clone for SkillScanResult
Source§fn clone(&self) -> SkillScanResult
fn clone(&self) -> SkillScanResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SkillScanResult
impl Debug for SkillScanResult
Source§impl<'de> Deserialize<'de> for SkillScanResult
impl<'de> Deserialize<'de> for SkillScanResult
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 SkillScanResult
impl PartialEq for SkillScanResult
Source§fn eq(&self, other: &SkillScanResult) -> bool
fn eq(&self, other: &SkillScanResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SkillScanResult
impl Serialize for SkillScanResult
impl StructuralPartialEq for SkillScanResult
Auto Trait Implementations§
impl Freeze for SkillScanResult
impl RefUnwindSafe for SkillScanResult
impl Send for SkillScanResult
impl Sync for SkillScanResult
impl Unpin for SkillScanResult
impl UnsafeUnpin for SkillScanResult
impl UnwindSafe for SkillScanResult
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