pub enum TestsRequest {
Run {
responder: TestsRunResponder,
},
}
Variants§
Run
Run the tests. This function returns when the tests have successfully passed, and is closed without a response when the tests fail.
Fields
§
responder: TestsRunResponder
Implementations§
Source§impl TestsRequest
impl TestsRequest
pub fn into_run(self) -> Option<TestsRunResponder>
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 TestsRequest
impl !RefUnwindSafe for TestsRequest
impl Send for TestsRequest
impl Sync for TestsRequest
impl Unpin for TestsRequest
impl !UnwindSafe for TestsRequest
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