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