pub enum CalculatorRequest {
Add {
a: i32,
b: i32,
responder: CalculatorAddResponder,
},
Divide {
dividend: i32,
divisor: i32,
responder: CalculatorDivideResponder,
},
Clear {
control_handle: CalculatorControlHandle,
},
_UnknownMethod {
ordinal: u64,
control_handle: CalculatorControlHandle,
method_type: MethodType,
},
}
Variants§
Add
Divide
Clear
Fields
§
control_handle: CalculatorControlHandle
_UnknownMethod
An interaction was received which does not match any known method.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
§
control_handle: CalculatorControlHandle
§
method_type: MethodType
Implementations§
Source§impl CalculatorRequest
impl CalculatorRequest
pub fn into_add(self) -> Option<(i32, i32, CalculatorAddResponder)>
pub fn into_divide(self) -> Option<(i32, i32, CalculatorDivideResponder)>
pub fn into_clear(self) -> Option<CalculatorControlHandle>
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 CalculatorRequest
impl !RefUnwindSafe for CalculatorRequest
impl Send for CalculatorRequest
impl Sync for CalculatorRequest
impl Unpin for CalculatorRequest
impl !UnwindSafe for CalculatorRequest
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