pub enum TestCaseIteratorRequest {
GetNext {
responder: TestCaseIteratorGetNextResponder,
},
}
Expand description
Iterator for listing available test cases.
Variants§
GetNext
Returns the next batch of test cases. Returns the empty vector to indicate that the iteration is complete.
Fields
§
responder: TestCaseIteratorGetNextResponder
Implementations§
Source§impl TestCaseIteratorRequest
impl TestCaseIteratorRequest
pub fn into_get_next(self) -> Option<TestCaseIteratorGetNextResponder>
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 TestCaseIteratorRequest
impl !RefUnwindSafe for TestCaseIteratorRequest
impl Send for TestCaseIteratorRequest
impl Sync for TestCaseIteratorRequest
impl Unpin for TestCaseIteratorRequest
impl !UnwindSafe for TestCaseIteratorRequest
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