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