pub enum CorpusReaderRequest {
Next {
test_input: Input,
responder: CorpusReaderNextResponder,
},
}
Expand description
Sends a sequence of test inputs belonging to a fuzzer’s corpus.
Variants§
Next
Sends the next test input from the corpus.
- request
test_input
the byte sequence representing the next test input in a corpus.
- response
result
one of the following:ZX_OK
if the test input was sent.- A socket error if transferring the input failed.
Implementations§
Source§impl CorpusReaderRequest
impl CorpusReaderRequest
pub fn into_next(self) -> Option<(Input, CorpusReaderNextResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CorpusReaderRequest
impl !RefUnwindSafe for CorpusReaderRequest
impl Send for CorpusReaderRequest
impl Sync for CorpusReaderRequest
impl Unpin for CorpusReaderRequest
impl !UnwindSafe for CorpusReaderRequest
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