pub struct BugSignature {
pub signature_type: SignatureType,
pub confidence: f64,
pub evidence: Vec<String>,
pub location: Option<String>,
}Expand description
Bug signatures detected via logic programming
Fields§
§signature_type: SignatureType§confidence: f64§evidence: Vec<String>§location: Option<String>Trait Implementations§
Source§impl Clone for BugSignature
impl Clone for BugSignature
Source§fn clone(&self) -> BugSignature
fn clone(&self) -> BugSignature
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 BugSignature
impl Debug for BugSignature
Source§impl<'de> Deserialize<'de> for BugSignature
impl<'de> Deserialize<'de> for BugSignature
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 BugSignature
impl RefUnwindSafe for BugSignature
impl Send for BugSignature
impl Sync for BugSignature
impl Unpin for BugSignature
impl UnsafeUnpin for BugSignature
impl UnwindSafe for BugSignature
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