pub enum RepositoryIteratorRequest {
Next {
responder: RepositoryIteratorNextResponder,
},
}
Expand description
The iterator over all the repositories defined in a PackageResolver
.
Variants§
Next
Advances the iterator and returns the next batch of repositories.
- response
repos
a vector ofRepositoryConfig
repositories. Will return an empty vector when there are no more repositories.
Fields
§
responder: RepositoryIteratorNextResponder
Implementations§
Source§impl RepositoryIteratorRequest
impl RepositoryIteratorRequest
pub fn into_next(self) -> Option<RepositoryIteratorNextResponder>
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 RepositoryIteratorRequest
impl !RefUnwindSafe for RepositoryIteratorRequest
impl Send for RepositoryIteratorRequest
impl Sync for RepositoryIteratorRequest
impl Unpin for RepositoryIteratorRequest
impl !UnwindSafe for RepositoryIteratorRequest
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