pub enum ExampleEventMonitorRequest {
OnEvent {
event: String,
responder: ExampleEventMonitorOnEventResponder,
},
}
Variants§
OnEvent
Implementations§
Source§impl ExampleEventMonitorRequest
impl ExampleEventMonitorRequest
pub fn into_on_event( self, ) -> Option<(String, ExampleEventMonitorOnEventResponder)>
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 ExampleEventMonitorRequest
impl !RefUnwindSafe for ExampleEventMonitorRequest
impl Send for ExampleEventMonitorRequest
impl Sync for ExampleEventMonitorRequest
impl Unpin for ExampleEventMonitorRequest
impl !UnwindSafe for ExampleEventMonitorRequest
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