pub struct AssertionCandidate {
pub language: String,
pub target_id: String,
pub finding_id: Option<String>,
pub source: AssertionSource,
pub domain: AssertionDomain,
pub semantic_packs: Vec<String>,
pub title: String,
pub seed_inputs: Vec<String>,
pub expected_behavior: String,
pub replay_command: Option<String>,
}Fields§
§language: String§target_id: String§finding_id: Option<String>§source: AssertionSource§domain: AssertionDomain§semantic_packs: Vec<String>§title: String§seed_inputs: Vec<String>§expected_behavior: String§replay_command: Option<String>Trait Implementations§
Source§impl Clone for AssertionCandidate
impl Clone for AssertionCandidate
Source§fn clone(&self) -> AssertionCandidate
fn clone(&self) -> AssertionCandidate
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 AssertionCandidate
impl Debug for AssertionCandidate
Source§impl<'de> Deserialize<'de> for AssertionCandidate
impl<'de> Deserialize<'de> for AssertionCandidate
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 AssertionCandidate
impl PartialEq for AssertionCandidate
Source§fn eq(&self, other: &AssertionCandidate) -> bool
fn eq(&self, other: &AssertionCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AssertionCandidate
impl Serialize for AssertionCandidate
impl Eq for AssertionCandidate
impl StructuralPartialEq for AssertionCandidate
Auto Trait Implementations§
impl Freeze for AssertionCandidate
impl RefUnwindSafe for AssertionCandidate
impl Send for AssertionCandidate
impl Sync for AssertionCandidate
impl Unpin for AssertionCandidate
impl UnsafeUnpin for AssertionCandidate
impl UnwindSafe for AssertionCandidate
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