pub enum StorageIteratorRequest {
Next {
responder: StorageIteratorNextResponder,
},
}
Expand description
An iterator protocol for returning a set of components using a storage capability. See |StorageAdmin.ListStorageInRealm| for more information.
Variants§
Next
Retrieve the next set of components using the storage capability. The returned monikers are relative to the component that declares the storage capability. Returns an empty vector after all components have been returned.
Fields
§
responder: StorageIteratorNextResponder
Implementations§
Source§impl StorageIteratorRequest
impl StorageIteratorRequest
pub fn into_next(self) -> Option<StorageIteratorNextResponder>
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 StorageIteratorRequest
impl !RefUnwindSafe for StorageIteratorRequest
impl Send for StorageIteratorRequest
impl Sync for StorageIteratorRequest
impl Unpin for StorageIteratorRequest
impl !UnwindSafe for StorageIteratorRequest
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