pub enum InstanceIteratorRequest {
Next {
responder: InstanceIteratorNextResponder,
},
}
Expand description
An iterator over all instances in the realm
Variants§
Next
Fields
§
responder: InstanceIteratorNextResponder
Implementations§
Source§impl InstanceIteratorRequest
impl InstanceIteratorRequest
pub fn into_next(self) -> Option<InstanceIteratorNextResponder>
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 InstanceIteratorRequest
impl !RefUnwindSafe for InstanceIteratorRequest
impl Send for InstanceIteratorRequest
impl Sync for InstanceIteratorRequest
impl Unpin for InstanceIteratorRequest
impl !UnwindSafe for InstanceIteratorRequest
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