pub enum ChildIteratorRequest {
Next {
responder: ChildIteratorNextResponder,
},
}
Expand description
A protocol to iterate over the list of children in a realm.
Variants§
Next
Advance the iterator and return the next batch of children.
Returns a vector of ChildRef
. Returns an empty vector when there are
no more children.
Fields
§
responder: ChildIteratorNextResponder
Implementations§
source§impl ChildIteratorRequest
impl ChildIteratorRequest
pub fn into_next(self) -> Option<ChildIteratorNextResponder>
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 ChildIteratorRequest
impl !RefUnwindSafe for ChildIteratorRequest
impl Send for ChildIteratorRequest
impl Sync for ChildIteratorRequest
impl Unpin for ChildIteratorRequest
impl !UnwindSafe for ChildIteratorRequest
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