pub enum ControllerRequest {
Start {
args: StartChildArgs,
execution_controller: ServerEnd<ExecutionControllerMarker>,
responder: ControllerStartResponder,
},
IsStarted {
responder: ControllerIsStartedResponder,
},
GetExposedDict {
dict: ServerEnd<DictMarker>,
control_handle: ControllerControlHandle,
},
}
Variants§
Start
Fields
§
args: StartChildArgs
§
execution_controller: ServerEnd<ExecutionControllerMarker>
§
responder: ControllerStartResponder
Start the component, optionally providing additional handles to be given to the component. Returns INSTANCE_ALREADY_RUNNING if the instance is currently running.
IsStarted
Fields
§
responder: ControllerIsStartedResponder
Returns true if this instance is currently running.
GetExposedDict
Returns the dictionary containing the component’s exposed capabilities.
Implementations§
source§impl ControllerRequest
impl ControllerRequest
pub fn into_start( self ) -> Option<(StartChildArgs, ServerEnd<ExecutionControllerMarker>, ControllerStartResponder)>
pub fn into_is_started(self) -> Option<ControllerIsStartedResponder>
pub fn into_get_exposed_dict( self ) -> Option<(ServerEnd<DictMarker>, ControllerControlHandle)>
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 !RefUnwindSafe for ControllerRequest
impl Send for ControllerRequest
impl Sync for ControllerRequest
impl Unpin for ControllerRequest
impl !UnwindSafe for ControllerRequest
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