pub enum CounterRequest {
Get {
responder: CounterGetResponder,
},
}
Variants§
Get
Fields
§
responder: CounterGetResponder
Implementations§
Source§impl CounterRequest
impl CounterRequest
pub fn into_get(self) -> Option<CounterGetResponder>
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 CounterRequest
impl !RefUnwindSafe for CounterRequest
impl Send for CounterRequest
impl Sync for CounterRequest
impl Unpin for CounterRequest
impl !UnwindSafe for CounterRequest
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