pub enum BlobIdIteratorRequest {
Next {
responder: BlobIdIteratorNextResponder,
},
}
Expand description
A chunked iterator of blob IDs, allowing transfer of more blob IDs that can fit in a single FIDL message.
Variants§
Next
Responds with the next chunk of blob IDs. When the iterator is exhausted, responds with an empty vector and closes the connection.
- response
blobs
the next chunk of blob IDs.
Fields
§
responder: BlobIdIteratorNextResponder
Implementations§
Source§impl BlobIdIteratorRequest
impl BlobIdIteratorRequest
pub fn into_next(self) -> Option<BlobIdIteratorNextResponder>
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 BlobIdIteratorRequest
impl !RefUnwindSafe for BlobIdIteratorRequest
impl Send for BlobIdIteratorRequest
impl Sync for BlobIdIteratorRequest
impl Unpin for BlobIdIteratorRequest
impl !UnwindSafe for BlobIdIteratorRequest
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