pub enum TouchInputListenerRequest {
ReportTouchInput {
payload: TouchInputListenerReportTouchInputRequest,
control_handle: TouchInputListenerControlHandle,
},
}
Expand description
A tool for applications to report touch input to interested parties (e.g. a test fixture).
Variants§
ReportTouchInput
Report that component under test has received expected input.
Fields
§
control_handle: TouchInputListenerControlHandle
Implementations§
Source§impl TouchInputListenerRequest
impl TouchInputListenerRequest
pub fn into_report_touch_input( self, ) -> Option<(TouchInputListenerReportTouchInputRequest, TouchInputListenerControlHandle)>
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 TouchInputListenerRequest
impl !RefUnwindSafe for TouchInputListenerRequest
impl Send for TouchInputListenerRequest
impl Sync for TouchInputListenerRequest
impl Unpin for TouchInputListenerRequest
impl !UnwindSafe for TouchInputListenerRequest
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