fidl_examples_canvas_clientrequesteddraw/
fidl_examples_canvas_clientrequesteddraw.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_examples_canvas_clientrequesteddraw_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct InstanceMarker;
16
17impl fidl::endpoints::ProtocolMarker for InstanceMarker {
18    type Proxy = InstanceProxy;
19    type RequestStream = InstanceRequestStream;
20    #[cfg(target_os = "fuchsia")]
21    type SynchronousProxy = InstanceSynchronousProxy;
22
23    const DEBUG_NAME: &'static str = "examples.canvas.clientrequesteddraw.Instance";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for InstanceMarker {}
26
27pub trait InstanceProxyInterface: Send + Sync {
28    fn r#add_lines(&self, lines: &[[Point; 2]]) -> Result<(), fidl::Error>;
29    type ReadyResponseFut: std::future::Future<Output = Result<(), fidl::Error>> + Send;
30    fn r#ready(&self) -> Self::ReadyResponseFut;
31}
32#[derive(Debug)]
33#[cfg(target_os = "fuchsia")]
34pub struct InstanceSynchronousProxy {
35    client: fidl::client::sync::Client,
36}
37
38#[cfg(target_os = "fuchsia")]
39impl fidl::endpoints::SynchronousProxy for InstanceSynchronousProxy {
40    type Proxy = InstanceProxy;
41    type Protocol = InstanceMarker;
42
43    fn from_channel(inner: fidl::Channel) -> Self {
44        Self::new(inner)
45    }
46
47    fn into_channel(self) -> fidl::Channel {
48        self.client.into_channel()
49    }
50
51    fn as_channel(&self) -> &fidl::Channel {
52        self.client.as_channel()
53    }
54}
55
56#[cfg(target_os = "fuchsia")]
57impl InstanceSynchronousProxy {
58    pub fn new(channel: fidl::Channel) -> Self {
59        let protocol_name = <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
60        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
61    }
62
63    pub fn into_channel(self) -> fidl::Channel {
64        self.client.into_channel()
65    }
66
67    /// Waits until an event arrives and returns it. It is safe for other
68    /// threads to make concurrent requests while waiting for an event.
69    pub fn wait_for_event(
70        &self,
71        deadline: zx::MonotonicInstant,
72    ) -> Result<InstanceEvent, fidl::Error> {
73        InstanceEvent::decode(self.client.wait_for_event(deadline)?)
74    }
75
76    /// Add multiple lines to the canvas. We are able to reduce protocol chatter and the number of
77    /// requests needed by batching instead of calling the simpler `AddLine(...)` one line at a
78    /// time.
79    pub fn r#add_lines(&self, mut lines: &[[Point; 2]]) -> Result<(), fidl::Error> {
80        self.client.send::<InstanceAddLinesRequest>(
81            (lines,),
82            0x5a82f0b30f970bd6,
83            fidl::encoding::DynamicFlags::FLEXIBLE,
84        )
85    }
86
87    /// Rather than the server randomly performing draws, or trying to guess when to do so, the
88    /// client must explicitly ask for them. This creates a bit of extra chatter with the additional
89    /// method invocation, but allows much greater client-side control of when the canvas is "ready"
90    /// for a view update, thereby eliminating unnecessary draws.
91    ///
92    /// This method also has the benefit of "throttling" the `-> OnDrawn(...)` event - rather than
93    /// allowing a potentially unlimited flood of `-> OnDrawn(...)` calls, we now have the runtime
94    /// enforced semantic that each `-> OnDrawn(...)` call must follow a unique `Ready() -> ()` call
95    /// from the client. An unprompted `-> OnDrawn(...)` is invalid, and should cause the channel to
96    /// immediately close.
97    pub fn r#ready(&self, ___deadline: zx::MonotonicInstant) -> Result<(), fidl::Error> {
98        let _response = self.client.send_query::<
99            fidl::encoding::EmptyPayload,
100            fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
101        >(
102            (),
103            0x3458d7a668873150,
104            fidl::encoding::DynamicFlags::FLEXIBLE,
105            ___deadline,
106        )?
107        .into_result::<InstanceMarker>("ready")?;
108        Ok(_response)
109    }
110}
111
112#[cfg(target_os = "fuchsia")]
113impl From<InstanceSynchronousProxy> for zx::Handle {
114    fn from(value: InstanceSynchronousProxy) -> Self {
115        value.into_channel().into()
116    }
117}
118
119#[cfg(target_os = "fuchsia")]
120impl From<fidl::Channel> for InstanceSynchronousProxy {
121    fn from(value: fidl::Channel) -> Self {
122        Self::new(value)
123    }
124}
125
126#[derive(Debug, Clone)]
127pub struct InstanceProxy {
128    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
129}
130
131impl fidl::endpoints::Proxy for InstanceProxy {
132    type Protocol = InstanceMarker;
133
134    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
135        Self::new(inner)
136    }
137
138    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
139        self.client.into_channel().map_err(|client| Self { client })
140    }
141
142    fn as_channel(&self) -> &::fidl::AsyncChannel {
143        self.client.as_channel()
144    }
145}
146
147impl InstanceProxy {
148    /// Create a new Proxy for examples.canvas.clientrequesteddraw/Instance.
149    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
150        let protocol_name = <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
151        Self { client: fidl::client::Client::new(channel, protocol_name) }
152    }
153
154    /// Get a Stream of events from the remote end of the protocol.
155    ///
156    /// # Panics
157    ///
158    /// Panics if the event stream was already taken.
159    pub fn take_event_stream(&self) -> InstanceEventStream {
160        InstanceEventStream { event_receiver: self.client.take_event_receiver() }
161    }
162
163    /// Add multiple lines to the canvas. We are able to reduce protocol chatter and the number of
164    /// requests needed by batching instead of calling the simpler `AddLine(...)` one line at a
165    /// time.
166    pub fn r#add_lines(&self, mut lines: &[[Point; 2]]) -> Result<(), fidl::Error> {
167        InstanceProxyInterface::r#add_lines(self, lines)
168    }
169
170    /// Rather than the server randomly performing draws, or trying to guess when to do so, the
171    /// client must explicitly ask for them. This creates a bit of extra chatter with the additional
172    /// method invocation, but allows much greater client-side control of when the canvas is "ready"
173    /// for a view update, thereby eliminating unnecessary draws.
174    ///
175    /// This method also has the benefit of "throttling" the `-> OnDrawn(...)` event - rather than
176    /// allowing a potentially unlimited flood of `-> OnDrawn(...)` calls, we now have the runtime
177    /// enforced semantic that each `-> OnDrawn(...)` call must follow a unique `Ready() -> ()` call
178    /// from the client. An unprompted `-> OnDrawn(...)` is invalid, and should cause the channel to
179    /// immediately close.
180    pub fn r#ready(
181        &self,
182    ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
183        InstanceProxyInterface::r#ready(self)
184    }
185}
186
187impl InstanceProxyInterface for InstanceProxy {
188    fn r#add_lines(&self, mut lines: &[[Point; 2]]) -> Result<(), fidl::Error> {
189        self.client.send::<InstanceAddLinesRequest>(
190            (lines,),
191            0x5a82f0b30f970bd6,
192            fidl::encoding::DynamicFlags::FLEXIBLE,
193        )
194    }
195
196    type ReadyResponseFut =
197        fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
198    fn r#ready(&self) -> Self::ReadyResponseFut {
199        fn _decode(
200            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
201        ) -> Result<(), fidl::Error> {
202            let _response = fidl::client::decode_transaction_body::<
203                fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
204                fidl::encoding::DefaultFuchsiaResourceDialect,
205                0x3458d7a668873150,
206            >(_buf?)?
207            .into_result::<InstanceMarker>("ready")?;
208            Ok(_response)
209        }
210        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ()>(
211            (),
212            0x3458d7a668873150,
213            fidl::encoding::DynamicFlags::FLEXIBLE,
214            _decode,
215        )
216    }
217}
218
219pub struct InstanceEventStream {
220    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
221}
222
223impl std::marker::Unpin for InstanceEventStream {}
224
225impl futures::stream::FusedStream for InstanceEventStream {
226    fn is_terminated(&self) -> bool {
227        self.event_receiver.is_terminated()
228    }
229}
230
231impl futures::Stream for InstanceEventStream {
232    type Item = Result<InstanceEvent, fidl::Error>;
233
234    fn poll_next(
235        mut self: std::pin::Pin<&mut Self>,
236        cx: &mut std::task::Context<'_>,
237    ) -> std::task::Poll<Option<Self::Item>> {
238        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
239            &mut self.event_receiver,
240            cx
241        )?) {
242            Some(buf) => std::task::Poll::Ready(Some(InstanceEvent::decode(buf))),
243            None => std::task::Poll::Ready(None),
244        }
245    }
246}
247
248#[derive(Debug)]
249pub enum InstanceEvent {
250    OnDrawn {
251        top_left: Point,
252        bottom_right: Point,
253    },
254    #[non_exhaustive]
255    _UnknownEvent {
256        /// Ordinal of the event that was sent.
257        ordinal: u64,
258    },
259}
260
261impl InstanceEvent {
262    #[allow(irrefutable_let_patterns)]
263    pub fn into_on_drawn(self) -> Option<(Point, Point)> {
264        if let InstanceEvent::OnDrawn { top_left, bottom_right } = self {
265            Some((top_left, bottom_right))
266        } else {
267            None
268        }
269    }
270
271    /// Decodes a message buffer as a [`InstanceEvent`].
272    fn decode(
273        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
274    ) -> Result<InstanceEvent, fidl::Error> {
275        let (bytes, _handles) = buf.split_mut();
276        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
277        debug_assert_eq!(tx_header.tx_id, 0);
278        match tx_header.ordinal {
279            0x25e6d8494623419a => {
280                let mut out =
281                    fidl::new_empty!(BoundingBox, fidl::encoding::DefaultFuchsiaResourceDialect);
282                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<BoundingBox>(&tx_header, _body_bytes, _handles, &mut out)?;
283                Ok((InstanceEvent::OnDrawn {
284                    top_left: out.top_left,
285                    bottom_right: out.bottom_right,
286                }))
287            }
288            _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
289                Ok(InstanceEvent::_UnknownEvent { ordinal: tx_header.ordinal })
290            }
291            _ => Err(fidl::Error::UnknownOrdinal {
292                ordinal: tx_header.ordinal,
293                protocol_name: <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
294            }),
295        }
296    }
297}
298
299/// A Stream of incoming requests for examples.canvas.clientrequesteddraw/Instance.
300pub struct InstanceRequestStream {
301    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
302    is_terminated: bool,
303}
304
305impl std::marker::Unpin for InstanceRequestStream {}
306
307impl futures::stream::FusedStream for InstanceRequestStream {
308    fn is_terminated(&self) -> bool {
309        self.is_terminated
310    }
311}
312
313impl fidl::endpoints::RequestStream for InstanceRequestStream {
314    type Protocol = InstanceMarker;
315    type ControlHandle = InstanceControlHandle;
316
317    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
318        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
319    }
320
321    fn control_handle(&self) -> Self::ControlHandle {
322        InstanceControlHandle { inner: self.inner.clone() }
323    }
324
325    fn into_inner(
326        self,
327    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
328    {
329        (self.inner, self.is_terminated)
330    }
331
332    fn from_inner(
333        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
334        is_terminated: bool,
335    ) -> Self {
336        Self { inner, is_terminated }
337    }
338}
339
340impl futures::Stream for InstanceRequestStream {
341    type Item = Result<InstanceRequest, fidl::Error>;
342
343    fn poll_next(
344        mut self: std::pin::Pin<&mut Self>,
345        cx: &mut std::task::Context<'_>,
346    ) -> std::task::Poll<Option<Self::Item>> {
347        let this = &mut *self;
348        if this.inner.check_shutdown(cx) {
349            this.is_terminated = true;
350            return std::task::Poll::Ready(None);
351        }
352        if this.is_terminated {
353            panic!("polled InstanceRequestStream after completion");
354        }
355        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
356            |bytes, handles| {
357                match this.inner.channel().read_etc(cx, bytes, handles) {
358                    std::task::Poll::Ready(Ok(())) => {}
359                    std::task::Poll::Pending => return std::task::Poll::Pending,
360                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
361                        this.is_terminated = true;
362                        return std::task::Poll::Ready(None);
363                    }
364                    std::task::Poll::Ready(Err(e)) => {
365                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
366                            e.into(),
367                        ))))
368                    }
369                }
370
371                // A message has been received from the channel
372                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
373
374                std::task::Poll::Ready(Some(match header.ordinal {
375                    0x5a82f0b30f970bd6 => {
376                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
377                        let mut req = fidl::new_empty!(
378                            InstanceAddLinesRequest,
379                            fidl::encoding::DefaultFuchsiaResourceDialect
380                        );
381                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InstanceAddLinesRequest>(&header, _body_bytes, handles, &mut req)?;
382                        let control_handle = InstanceControlHandle { inner: this.inner.clone() };
383                        Ok(InstanceRequest::AddLines { lines: req.lines, control_handle })
384                    }
385                    0x3458d7a668873150 => {
386                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
387                        let mut req = fidl::new_empty!(
388                            fidl::encoding::EmptyPayload,
389                            fidl::encoding::DefaultFuchsiaResourceDialect
390                        );
391                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
392                        let control_handle = InstanceControlHandle { inner: this.inner.clone() };
393                        Ok(InstanceRequest::Ready {
394                            responder: InstanceReadyResponder {
395                                control_handle: std::mem::ManuallyDrop::new(control_handle),
396                                tx_id: header.tx_id,
397                            },
398                        })
399                    }
400                    _ if header.tx_id == 0
401                        && header
402                            .dynamic_flags()
403                            .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
404                    {
405                        Ok(InstanceRequest::_UnknownMethod {
406                            ordinal: header.ordinal,
407                            control_handle: InstanceControlHandle { inner: this.inner.clone() },
408                            method_type: fidl::MethodType::OneWay,
409                        })
410                    }
411                    _ if header
412                        .dynamic_flags()
413                        .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
414                    {
415                        this.inner.send_framework_err(
416                            fidl::encoding::FrameworkErr::UnknownMethod,
417                            header.tx_id,
418                            header.ordinal,
419                            header.dynamic_flags(),
420                            (bytes, handles),
421                        )?;
422                        Ok(InstanceRequest::_UnknownMethod {
423                            ordinal: header.ordinal,
424                            control_handle: InstanceControlHandle { inner: this.inner.clone() },
425                            method_type: fidl::MethodType::TwoWay,
426                        })
427                    }
428                    _ => Err(fidl::Error::UnknownOrdinal {
429                        ordinal: header.ordinal,
430                        protocol_name:
431                            <InstanceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
432                    }),
433                }))
434            },
435        )
436    }
437}
438
439/// Manages a single instance of a canvas. Each session of this protocol is responsible for a new
440/// canvas.
441#[derive(Debug)]
442pub enum InstanceRequest {
443    /// Add multiple lines to the canvas. We are able to reduce protocol chatter and the number of
444    /// requests needed by batching instead of calling the simpler `AddLine(...)` one line at a
445    /// time.
446    AddLines { lines: Vec<[Point; 2]>, control_handle: InstanceControlHandle },
447    /// Rather than the server randomly performing draws, or trying to guess when to do so, the
448    /// client must explicitly ask for them. This creates a bit of extra chatter with the additional
449    /// method invocation, but allows much greater client-side control of when the canvas is "ready"
450    /// for a view update, thereby eliminating unnecessary draws.
451    ///
452    /// This method also has the benefit of "throttling" the `-> OnDrawn(...)` event - rather than
453    /// allowing a potentially unlimited flood of `-> OnDrawn(...)` calls, we now have the runtime
454    /// enforced semantic that each `-> OnDrawn(...)` call must follow a unique `Ready() -> ()` call
455    /// from the client. An unprompted `-> OnDrawn(...)` is invalid, and should cause the channel to
456    /// immediately close.
457    Ready { responder: InstanceReadyResponder },
458    /// An interaction was received which does not match any known method.
459    #[non_exhaustive]
460    _UnknownMethod {
461        /// Ordinal of the method that was called.
462        ordinal: u64,
463        control_handle: InstanceControlHandle,
464        method_type: fidl::MethodType,
465    },
466}
467
468impl InstanceRequest {
469    #[allow(irrefutable_let_patterns)]
470    pub fn into_add_lines(self) -> Option<(Vec<[Point; 2]>, InstanceControlHandle)> {
471        if let InstanceRequest::AddLines { lines, control_handle } = self {
472            Some((lines, control_handle))
473        } else {
474            None
475        }
476    }
477
478    #[allow(irrefutable_let_patterns)]
479    pub fn into_ready(self) -> Option<(InstanceReadyResponder)> {
480        if let InstanceRequest::Ready { responder } = self {
481            Some((responder))
482        } else {
483            None
484        }
485    }
486
487    /// Name of the method defined in FIDL
488    pub fn method_name(&self) -> &'static str {
489        match *self {
490            InstanceRequest::AddLines { .. } => "add_lines",
491            InstanceRequest::Ready { .. } => "ready",
492            InstanceRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
493                "unknown one-way method"
494            }
495            InstanceRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
496                "unknown two-way method"
497            }
498        }
499    }
500}
501
502#[derive(Debug, Clone)]
503pub struct InstanceControlHandle {
504    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
505}
506
507impl fidl::endpoints::ControlHandle for InstanceControlHandle {
508    fn shutdown(&self) {
509        self.inner.shutdown()
510    }
511    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
512        self.inner.shutdown_with_epitaph(status)
513    }
514
515    fn is_closed(&self) -> bool {
516        self.inner.channel().is_closed()
517    }
518    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
519        self.inner.channel().on_closed()
520    }
521
522    #[cfg(target_os = "fuchsia")]
523    fn signal_peer(
524        &self,
525        clear_mask: zx::Signals,
526        set_mask: zx::Signals,
527    ) -> Result<(), zx_status::Status> {
528        use fidl::Peered;
529        self.inner.channel().signal_peer(clear_mask, set_mask)
530    }
531}
532
533impl InstanceControlHandle {
534    pub fn send_on_drawn(
535        &self,
536        mut top_left: &Point,
537        mut bottom_right: &Point,
538    ) -> Result<(), fidl::Error> {
539        self.inner.send::<BoundingBox>(
540            (top_left, bottom_right),
541            0,
542            0x25e6d8494623419a,
543            fidl::encoding::DynamicFlags::FLEXIBLE,
544        )
545    }
546}
547
548#[must_use = "FIDL methods require a response to be sent"]
549#[derive(Debug)]
550pub struct InstanceReadyResponder {
551    control_handle: std::mem::ManuallyDrop<InstanceControlHandle>,
552    tx_id: u32,
553}
554
555/// Set the the channel to be shutdown (see [`InstanceControlHandle::shutdown`])
556/// if the responder is dropped without sending a response, so that the client
557/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
558impl std::ops::Drop for InstanceReadyResponder {
559    fn drop(&mut self) {
560        self.control_handle.shutdown();
561        // Safety: drops once, never accessed again
562        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
563    }
564}
565
566impl fidl::endpoints::Responder for InstanceReadyResponder {
567    type ControlHandle = InstanceControlHandle;
568
569    fn control_handle(&self) -> &InstanceControlHandle {
570        &self.control_handle
571    }
572
573    fn drop_without_shutdown(mut self) {
574        // Safety: drops once, never accessed again due to mem::forget
575        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
576        // Prevent Drop from running (which would shut down the channel)
577        std::mem::forget(self);
578    }
579}
580
581impl InstanceReadyResponder {
582    /// Sends a response to the FIDL transaction.
583    ///
584    /// Sets the channel to shutdown if an error occurs.
585    pub fn send(self) -> Result<(), fidl::Error> {
586        let _result = self.send_raw();
587        if _result.is_err() {
588            self.control_handle.shutdown();
589        }
590        self.drop_without_shutdown();
591        _result
592    }
593
594    /// Similar to "send" but does not shutdown the channel if an error occurs.
595    pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
596        let _result = self.send_raw();
597        self.drop_without_shutdown();
598        _result
599    }
600
601    fn send_raw(&self) -> Result<(), fidl::Error> {
602        self.control_handle.inner.send::<fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>>(
603            fidl::encoding::Flexible::new(()),
604            self.tx_id,
605            0x3458d7a668873150,
606            fidl::encoding::DynamicFlags::FLEXIBLE,
607        )
608    }
609}
610
611mod internal {
612    use super::*;
613}