pub enum FacadeIteratorRequest {
GetNext {
responder: FacadeIteratorGetNextResponder,
},
}
Expand description
Implemented by a backend component hosting one or more facades. Used to acquire the list of
facades hosted by a FacadeProvider
instance.
Variants§
GetNext
Fields
§
responder: FacadeIteratorGetNextResponder
Implementations§
Source§impl FacadeIteratorRequest
impl FacadeIteratorRequest
pub fn into_get_next(self) -> Option<FacadeIteratorGetNextResponder>
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 FacadeIteratorRequest
impl !RefUnwindSafe for FacadeIteratorRequest
impl Send for FacadeIteratorRequest
impl Sync for FacadeIteratorRequest
impl Unpin for FacadeIteratorRequest
impl !UnwindSafe for FacadeIteratorRequest
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