pub enum ListIteratorRequest {
GetNext {
responder: ListIteratorGetNextResponder,
},
}
Expand description
The iterator returned when a series of keys are being listed. Returns an empty vector when there are no more remaining ListItems.
Variants§
GetNext
Fields
§
responder: ListIteratorGetNextResponder
Implementations§
Source§impl ListIteratorRequest
impl ListIteratorRequest
pub fn into_get_next(self) -> Option<ListIteratorGetNextResponder>
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 ListIteratorRequest
impl !RefUnwindSafe for ListIteratorRequest
impl Send for ListIteratorRequest
impl Sync for ListIteratorRequest
impl Unpin for ListIteratorRequest
impl !UnwindSafe for ListIteratorRequest
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