Enum libafl::feedbacks::differential::DiffResult
source · [−]pub enum DiffResult {
Equal,
Diff,
}
Expand description
The result of a differential test between two observers.
Variants
Equal
The two observers report the same outcome.
Diff
The two observers report different outcomes.
Implementations
Trait Implementations
sourceimpl Clone for DiffResult
impl Clone for DiffResult
sourcefn clone(&self) -> DiffResult
fn clone(&self) -> DiffResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DiffResult
impl Debug for DiffResult
sourceimpl<'de> Deserialize<'de> for DiffResult
impl<'de> Deserialize<'de> for DiffResult
sourcefn 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
sourceimpl PartialEq<DiffResult> for DiffResult
impl PartialEq<DiffResult> for DiffResult
sourceimpl Serialize for DiffResult
impl Serialize for DiffResult
impl Copy for DiffResult
impl Eq for DiffResult
impl StructuralEq for DiffResult
impl StructuralPartialEq for DiffResult
Auto Trait Implementations
impl RefUnwindSafe for DiffResult
impl Send for DiffResult
impl Sync for DiffResult
impl Unpin for DiffResult
impl UnwindSafe for DiffResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
type PreprendResult = Tail
type PreprendResult = Tail
The Resulting TupleList
, of an Prepend::prepend()
call,
including the prepended entry. Read more
sourcefn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)
fn prepend(self, value: T) -> (T, <Tail as Prepend<T>>::PreprendResult)
Prepend a value to this tuple, returning a new tuple with prepended value.