pub enum TestCaseControllerRequest {
RunDefaultCycle {
responder: TestCaseControllerRunDefaultCycleResponder,
},
}
Expand description
Tell Detect when to run test cases. Close the protocol to exit test mode. Running a test case (for example, with RunDefaultCycle() does not exit test mode when the test case completes.
Variants§
RunDefaultCycle
Run a single default test case. Returns when the test case completes. Returns an error if the test case exits abnormally.
Fields
§
responder: TestCaseControllerRunDefaultCycleResponder
Implementations§
Source§impl TestCaseControllerRequest
impl TestCaseControllerRequest
pub fn into_run_default_cycle( self, ) -> Option<TestCaseControllerRunDefaultCycleResponder>
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 TestCaseControllerRequest
impl !RefUnwindSafe for TestCaseControllerRequest
impl Send for TestCaseControllerRequest
impl Sync for TestCaseControllerRequest
impl Unpin for TestCaseControllerRequest
impl !UnwindSafe for TestCaseControllerRequest
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