pub enum PuppetRequest {
StartProfiling {
responder: PuppetStartProfilingResponder,
},
StopProfiling {
responder: PuppetStopProfilingResponder,
},
RunProfiledFunction {
responder: PuppetRunProfiledFunctionResponder,
},
}
Variants§
StartProfiling
Fields
§
responder: PuppetStartProfilingResponder
StopProfiling
Fields
§
responder: PuppetStopProfilingResponder
RunProfiledFunction
Fields
§
responder: PuppetRunProfiledFunctionResponder
Implementations§
Source§impl PuppetRequest
impl PuppetRequest
pub fn into_start_profiling(self) -> Option<PuppetStartProfilingResponder>
pub fn into_stop_profiling(self) -> Option<PuppetStopProfilingResponder>
pub fn into_run_profiled_function( self, ) -> Option<PuppetRunProfiledFunctionResponder>
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 PuppetRequest
impl !RefUnwindSafe for PuppetRequest
impl Send for PuppetRequest
impl Sync for PuppetRequest
impl Unpin for PuppetRequest
impl !UnwindSafe for PuppetRequest
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