pub struct SectionResult {
pub section_id: String,
pub score: StealthScore,
pub patterns: Vec<Pattern>,
}Expand description
Result for a specific section of code
Fields§
§section_id: StringSection identifier
score: StealthScoreStealth score for this section
patterns: Vec<Pattern>Patterns found in this section
Trait Implementations§
Source§impl Clone for SectionResult
impl Clone for SectionResult
Source§fn clone(&self) -> SectionResult
fn clone(&self) -> SectionResult
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 SectionResult
impl Debug for SectionResult
Source§impl<'de> Deserialize<'de> for SectionResult
impl<'de> Deserialize<'de> for SectionResult
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 SectionResult
impl RefUnwindSafe for SectionResult
impl Send for SectionResult
impl Sync for SectionResult
impl Unpin for SectionResult
impl UnsafeUnpin for SectionResult
impl UnwindSafe for SectionResult
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