Struct libafl::feedbacks::LogicFastOr
source · [−]pub struct LogicFastOr {}
Expand description
Fast OR
combination of two feedbacks
Trait Implementations
sourceimpl Clone for LogicFastOr
impl Clone for LogicFastOr
sourcefn clone(&self) -> LogicFastOr
fn clone(&self) -> LogicFastOr
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 LogicFastOr
impl Debug for LogicFastOr
sourceimpl<A, B, I, S> FeedbackLogic<A, B, I, S> for LogicFastOr where
A: Feedback<I, S>,
B: Feedback<I, S>,
I: Input,
S: HasClientPerfMonitor,
impl<A, B, I, S> FeedbackLogic<A, B, I, S> for LogicFastOr where
A: Feedback<I, S>,
B: Feedback<I, S>,
I: Input,
S: HasClientPerfMonitor,
sourcefn is_pair_interesting<EM, OT>(
first: &mut A,
second: &mut B,
state: &mut S,
manager: &mut EM,
input: &I,
observers: &OT,
exit_kind: &ExitKind
) -> Result<bool, Error> where
EM: EventFirer<I>,
OT: ObserversTuple<I, S>,
fn is_pair_interesting<EM, OT>(
first: &mut A,
second: &mut B,
state: &mut S,
manager: &mut EM,
input: &I,
observers: &OT,
exit_kind: &ExitKind
) -> Result<bool, Error> where
EM: EventFirer<I>,
OT: ObserversTuple<I, S>,
If the feedback pair is interesting
Auto Trait Implementations
impl RefUnwindSafe for LogicFastOr
impl Send for LogicFastOr
impl Sync for LogicFastOr
impl Unpin for LogicFastOr
impl UnwindSafe for LogicFastOr
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.