pub enum ComposedRequest {
EchoTableRequestComposed {
payload: ComposedEchoTableRequestComposedRequest,
responder: ComposedEchoTableRequestComposedResponder,
},
EchoUnionResponseWithErrorComposed {
value: i64,
want_absolute_value: bool,
forward_to_server: String,
result_err: u32,
result_variant: WantResponse,
responder: ComposedEchoUnionResponseWithErrorComposedResponder,
},
}
Variants§
EchoTableRequestComposed
Fields
§
responder: ComposedEchoTableRequestComposedResponder
EchoUnionResponseWithErrorComposed
Implementations§
Source§impl ComposedRequest
impl ComposedRequest
pub fn into_echo_table_request_composed( self, ) -> Option<(ComposedEchoTableRequestComposedRequest, ComposedEchoTableRequestComposedResponder)>
pub fn into_echo_union_response_with_error_composed( self, ) -> Option<(i64, bool, String, u32, WantResponse, ComposedEchoUnionResponseWithErrorComposedResponder)>
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 ComposedRequest
impl !RefUnwindSafe for ComposedRequest
impl Send for ComposedRequest
impl Sync for ComposedRequest
impl Unpin for ComposedRequest
impl !UnwindSafe for ComposedRequest
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