pub enum BlobInfoIteratorRequest {
Next {
responder: BlobInfoIteratorNextResponder,
},
}
Expand description
Variants§
Next
Responds with the next chunk of BlobInfo
s. When the iterator is
exhausted, responds with an empty vector and closes the connection.
- response
blobs
the next chunk ofBlobInfo
s.
Fields
§
responder: BlobInfoIteratorNextResponder
Implementations§
Source§impl BlobInfoIteratorRequest
impl BlobInfoIteratorRequest
pub fn into_next(self) -> Option<BlobInfoIteratorNextResponder>
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 BlobInfoIteratorRequest
impl !RefUnwindSafe for BlobInfoIteratorRequest
impl Send for BlobInfoIteratorRequest
impl Sync for BlobInfoIteratorRequest
impl Unpin for BlobInfoIteratorRequest
impl !UnwindSafe for BlobInfoIteratorRequest
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