pub enum TestOutcomeReportRequest {
Report {
backstop: i64,
current_time: i64,
responder: TestOutcomeReportReportResponder,
},
}
Variants§
Implementations§
Source§impl TestOutcomeReportRequest
impl TestOutcomeReportRequest
pub fn into_report(self) -> Option<(i64, i64, TestOutcomeReportReportResponder)>
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 TestOutcomeReportRequest
impl !RefUnwindSafe for TestOutcomeReportRequest
impl Send for TestOutcomeReportRequest
impl Sync for TestOutcomeReportRequest
impl Unpin for TestOutcomeReportRequest
impl !UnwindSafe for TestOutcomeReportRequest
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