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