pub enum PackageIndexIteratorRequest {
Next {
responder: PackageIndexIteratorNextResponder,
},
}
Expand description
A chunk iterator for the package index. This is required because it is possible for the package index to be too large to send over in a single request (over 64KiB).
Variants§
Next
Returns the next chunk of package index entries. When the iterator is exhausted, this returns an empty vector.
- response
entries
the next chunk of entries in the package index.
Fields
§
responder: PackageIndexIteratorNextResponder
Implementations§
Source§impl PackageIndexIteratorRequest
impl PackageIndexIteratorRequest
pub fn into_next(self) -> Option<PackageIndexIteratorNextResponder>
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 PackageIndexIteratorRequest
impl !RefUnwindSafe for PackageIndexIteratorRequest
impl Send for PackageIndexIteratorRequest
impl Sync for PackageIndexIteratorRequest
impl Unpin for PackageIndexIteratorRequest
impl !UnwindSafe for PackageIndexIteratorRequest
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