1#![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_fuchsia_inspect_deprecated_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct InspectOpenChildRequest {
16 pub child_name: String,
17 pub child_channel: fidl::endpoints::ServerEnd<InspectMarker>,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for InspectOpenChildRequest {}
21
22#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
23pub struct InspectMarker;
24
25impl fidl::endpoints::ProtocolMarker for InspectMarker {
26 type Proxy = InspectProxy;
27 type RequestStream = InspectRequestStream;
28 #[cfg(target_os = "fuchsia")]
29 type SynchronousProxy = InspectSynchronousProxy;
30
31 const DEBUG_NAME: &'static str = "fuchsia.inspect.deprecated.Inspect";
32}
33impl fidl::endpoints::DiscoverableProtocolMarker for InspectMarker {}
34
35pub trait InspectProxyInterface: Send + Sync {
36 type ReadDataResponseFut: std::future::Future<Output = Result<Object, fidl::Error>> + Send;
37 fn r#read_data(&self) -> Self::ReadDataResponseFut;
38 type ListChildrenResponseFut: std::future::Future<Output = Result<Vec<String>, fidl::Error>>
39 + Send;
40 fn r#list_children(&self) -> Self::ListChildrenResponseFut;
41 type OpenChildResponseFut: std::future::Future<Output = Result<bool, fidl::Error>> + Send;
42 fn r#open_child(
43 &self,
44 child_name: &str,
45 child_channel: fidl::endpoints::ServerEnd<InspectMarker>,
46 ) -> Self::OpenChildResponseFut;
47}
48#[derive(Debug)]
49#[cfg(target_os = "fuchsia")]
50pub struct InspectSynchronousProxy {
51 client: fidl::client::sync::Client,
52}
53
54#[cfg(target_os = "fuchsia")]
55impl fidl::endpoints::SynchronousProxy for InspectSynchronousProxy {
56 type Proxy = InspectProxy;
57 type Protocol = InspectMarker;
58
59 fn from_channel(inner: fidl::Channel) -> Self {
60 Self::new(inner)
61 }
62
63 fn into_channel(self) -> fidl::Channel {
64 self.client.into_channel()
65 }
66
67 fn as_channel(&self) -> &fidl::Channel {
68 self.client.as_channel()
69 }
70}
71
72#[cfg(target_os = "fuchsia")]
73impl InspectSynchronousProxy {
74 pub fn new(channel: fidl::Channel) -> Self {
75 let protocol_name = <InspectMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
76 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
77 }
78
79 pub fn into_channel(self) -> fidl::Channel {
80 self.client.into_channel()
81 }
82
83 pub fn wait_for_event(
86 &self,
87 deadline: zx::MonotonicInstant,
88 ) -> Result<InspectEvent, fidl::Error> {
89 InspectEvent::decode(self.client.wait_for_event(deadline)?)
90 }
91
92 pub fn r#read_data(&self, ___deadline: zx::MonotonicInstant) -> Result<Object, fidl::Error> {
93 let _response =
94 self.client.send_query::<fidl::encoding::EmptyPayload, InspectReadDataResponse>(
95 (),
96 0x1c6778e57fcfa9e1,
97 fidl::encoding::DynamicFlags::empty(),
98 ___deadline,
99 )?;
100 Ok(_response.object)
101 }
102
103 pub fn r#list_children(
104 &self,
105 ___deadline: zx::MonotonicInstant,
106 ) -> Result<Vec<String>, fidl::Error> {
107 let _response =
108 self.client.send_query::<fidl::encoding::EmptyPayload, InspectListChildrenResponse>(
109 (),
110 0x463fdc024dc40611,
111 fidl::encoding::DynamicFlags::empty(),
112 ___deadline,
113 )?;
114 Ok(_response.children_names)
115 }
116
117 pub fn r#open_child(
118 &self,
119 mut child_name: &str,
120 mut child_channel: fidl::endpoints::ServerEnd<InspectMarker>,
121 ___deadline: zx::MonotonicInstant,
122 ) -> Result<bool, fidl::Error> {
123 let _response =
124 self.client.send_query::<InspectOpenChildRequest, InspectOpenChildResponse>(
125 (child_name, child_channel),
126 0x30513125b65c866a,
127 fidl::encoding::DynamicFlags::empty(),
128 ___deadline,
129 )?;
130 Ok(_response.success)
131 }
132}
133
134#[cfg(target_os = "fuchsia")]
135impl From<InspectSynchronousProxy> for zx::Handle {
136 fn from(value: InspectSynchronousProxy) -> Self {
137 value.into_channel().into()
138 }
139}
140
141#[cfg(target_os = "fuchsia")]
142impl From<fidl::Channel> for InspectSynchronousProxy {
143 fn from(value: fidl::Channel) -> Self {
144 Self::new(value)
145 }
146}
147
148#[derive(Debug, Clone)]
149pub struct InspectProxy {
150 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
151}
152
153impl fidl::endpoints::Proxy for InspectProxy {
154 type Protocol = InspectMarker;
155
156 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
157 Self::new(inner)
158 }
159
160 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
161 self.client.into_channel().map_err(|client| Self { client })
162 }
163
164 fn as_channel(&self) -> &::fidl::AsyncChannel {
165 self.client.as_channel()
166 }
167}
168
169impl InspectProxy {
170 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
172 let protocol_name = <InspectMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
173 Self { client: fidl::client::Client::new(channel, protocol_name) }
174 }
175
176 pub fn take_event_stream(&self) -> InspectEventStream {
182 InspectEventStream { event_receiver: self.client.take_event_receiver() }
183 }
184
185 pub fn r#read_data(
186 &self,
187 ) -> fidl::client::QueryResponseFut<Object, fidl::encoding::DefaultFuchsiaResourceDialect> {
188 InspectProxyInterface::r#read_data(self)
189 }
190
191 pub fn r#list_children(
192 &self,
193 ) -> fidl::client::QueryResponseFut<Vec<String>, fidl::encoding::DefaultFuchsiaResourceDialect>
194 {
195 InspectProxyInterface::r#list_children(self)
196 }
197
198 pub fn r#open_child(
199 &self,
200 mut child_name: &str,
201 mut child_channel: fidl::endpoints::ServerEnd<InspectMarker>,
202 ) -> fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect> {
203 InspectProxyInterface::r#open_child(self, child_name, child_channel)
204 }
205}
206
207impl InspectProxyInterface for InspectProxy {
208 type ReadDataResponseFut =
209 fidl::client::QueryResponseFut<Object, fidl::encoding::DefaultFuchsiaResourceDialect>;
210 fn r#read_data(&self) -> Self::ReadDataResponseFut {
211 fn _decode(
212 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
213 ) -> Result<Object, fidl::Error> {
214 let _response = fidl::client::decode_transaction_body::<
215 InspectReadDataResponse,
216 fidl::encoding::DefaultFuchsiaResourceDialect,
217 0x1c6778e57fcfa9e1,
218 >(_buf?)?;
219 Ok(_response.object)
220 }
221 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Object>(
222 (),
223 0x1c6778e57fcfa9e1,
224 fidl::encoding::DynamicFlags::empty(),
225 _decode,
226 )
227 }
228
229 type ListChildrenResponseFut =
230 fidl::client::QueryResponseFut<Vec<String>, fidl::encoding::DefaultFuchsiaResourceDialect>;
231 fn r#list_children(&self) -> Self::ListChildrenResponseFut {
232 fn _decode(
233 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
234 ) -> Result<Vec<String>, fidl::Error> {
235 let _response = fidl::client::decode_transaction_body::<
236 InspectListChildrenResponse,
237 fidl::encoding::DefaultFuchsiaResourceDialect,
238 0x463fdc024dc40611,
239 >(_buf?)?;
240 Ok(_response.children_names)
241 }
242 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<String>>(
243 (),
244 0x463fdc024dc40611,
245 fidl::encoding::DynamicFlags::empty(),
246 _decode,
247 )
248 }
249
250 type OpenChildResponseFut =
251 fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect>;
252 fn r#open_child(
253 &self,
254 mut child_name: &str,
255 mut child_channel: fidl::endpoints::ServerEnd<InspectMarker>,
256 ) -> Self::OpenChildResponseFut {
257 fn _decode(
258 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
259 ) -> Result<bool, fidl::Error> {
260 let _response = fidl::client::decode_transaction_body::<
261 InspectOpenChildResponse,
262 fidl::encoding::DefaultFuchsiaResourceDialect,
263 0x30513125b65c866a,
264 >(_buf?)?;
265 Ok(_response.success)
266 }
267 self.client.send_query_and_decode::<InspectOpenChildRequest, bool>(
268 (child_name, child_channel),
269 0x30513125b65c866a,
270 fidl::encoding::DynamicFlags::empty(),
271 _decode,
272 )
273 }
274}
275
276pub struct InspectEventStream {
277 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
278}
279
280impl std::marker::Unpin for InspectEventStream {}
281
282impl futures::stream::FusedStream for InspectEventStream {
283 fn is_terminated(&self) -> bool {
284 self.event_receiver.is_terminated()
285 }
286}
287
288impl futures::Stream for InspectEventStream {
289 type Item = Result<InspectEvent, fidl::Error>;
290
291 fn poll_next(
292 mut self: std::pin::Pin<&mut Self>,
293 cx: &mut std::task::Context<'_>,
294 ) -> std::task::Poll<Option<Self::Item>> {
295 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
296 &mut self.event_receiver,
297 cx
298 )?) {
299 Some(buf) => std::task::Poll::Ready(Some(InspectEvent::decode(buf))),
300 None => std::task::Poll::Ready(None),
301 }
302 }
303}
304
305#[derive(Debug)]
306pub enum InspectEvent {}
307
308impl InspectEvent {
309 fn decode(
311 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
312 ) -> Result<InspectEvent, fidl::Error> {
313 let (bytes, _handles) = buf.split_mut();
314 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
315 debug_assert_eq!(tx_header.tx_id, 0);
316 match tx_header.ordinal {
317 _ => Err(fidl::Error::UnknownOrdinal {
318 ordinal: tx_header.ordinal,
319 protocol_name: <InspectMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
320 }),
321 }
322 }
323}
324
325pub struct InspectRequestStream {
327 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
328 is_terminated: bool,
329}
330
331impl std::marker::Unpin for InspectRequestStream {}
332
333impl futures::stream::FusedStream for InspectRequestStream {
334 fn is_terminated(&self) -> bool {
335 self.is_terminated
336 }
337}
338
339impl fidl::endpoints::RequestStream for InspectRequestStream {
340 type Protocol = InspectMarker;
341 type ControlHandle = InspectControlHandle;
342
343 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
344 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
345 }
346
347 fn control_handle(&self) -> Self::ControlHandle {
348 InspectControlHandle { inner: self.inner.clone() }
349 }
350
351 fn into_inner(
352 self,
353 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
354 {
355 (self.inner, self.is_terminated)
356 }
357
358 fn from_inner(
359 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
360 is_terminated: bool,
361 ) -> Self {
362 Self { inner, is_terminated }
363 }
364}
365
366impl futures::Stream for InspectRequestStream {
367 type Item = Result<InspectRequest, fidl::Error>;
368
369 fn poll_next(
370 mut self: std::pin::Pin<&mut Self>,
371 cx: &mut std::task::Context<'_>,
372 ) -> std::task::Poll<Option<Self::Item>> {
373 let this = &mut *self;
374 if this.inner.check_shutdown(cx) {
375 this.is_terminated = true;
376 return std::task::Poll::Ready(None);
377 }
378 if this.is_terminated {
379 panic!("polled InspectRequestStream after completion");
380 }
381 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
382 |bytes, handles| {
383 match this.inner.channel().read_etc(cx, bytes, handles) {
384 std::task::Poll::Ready(Ok(())) => {}
385 std::task::Poll::Pending => return std::task::Poll::Pending,
386 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
387 this.is_terminated = true;
388 return std::task::Poll::Ready(None);
389 }
390 std::task::Poll::Ready(Err(e)) => {
391 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
392 e.into(),
393 ))))
394 }
395 }
396
397 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
399
400 std::task::Poll::Ready(Some(match header.ordinal {
401 0x1c6778e57fcfa9e1 => {
402 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
403 let mut req = fidl::new_empty!(
404 fidl::encoding::EmptyPayload,
405 fidl::encoding::DefaultFuchsiaResourceDialect
406 );
407 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
408 let control_handle = InspectControlHandle { inner: this.inner.clone() };
409 Ok(InspectRequest::ReadData {
410 responder: InspectReadDataResponder {
411 control_handle: std::mem::ManuallyDrop::new(control_handle),
412 tx_id: header.tx_id,
413 },
414 })
415 }
416 0x463fdc024dc40611 => {
417 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
418 let mut req = fidl::new_empty!(
419 fidl::encoding::EmptyPayload,
420 fidl::encoding::DefaultFuchsiaResourceDialect
421 );
422 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
423 let control_handle = InspectControlHandle { inner: this.inner.clone() };
424 Ok(InspectRequest::ListChildren {
425 responder: InspectListChildrenResponder {
426 control_handle: std::mem::ManuallyDrop::new(control_handle),
427 tx_id: header.tx_id,
428 },
429 })
430 }
431 0x30513125b65c866a => {
432 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
433 let mut req = fidl::new_empty!(
434 InspectOpenChildRequest,
435 fidl::encoding::DefaultFuchsiaResourceDialect
436 );
437 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InspectOpenChildRequest>(&header, _body_bytes, handles, &mut req)?;
438 let control_handle = InspectControlHandle { inner: this.inner.clone() };
439 Ok(InspectRequest::OpenChild {
440 child_name: req.child_name,
441 child_channel: req.child_channel,
442
443 responder: InspectOpenChildResponder {
444 control_handle: std::mem::ManuallyDrop::new(control_handle),
445 tx_id: header.tx_id,
446 },
447 })
448 }
449 _ => Err(fidl::Error::UnknownOrdinal {
450 ordinal: header.ordinal,
451 protocol_name:
452 <InspectMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
453 }),
454 }))
455 },
456 )
457 }
458}
459
460#[derive(Debug)]
461pub enum InspectRequest {
462 ReadData {
463 responder: InspectReadDataResponder,
464 },
465 ListChildren {
466 responder: InspectListChildrenResponder,
467 },
468 OpenChild {
469 child_name: String,
470 child_channel: fidl::endpoints::ServerEnd<InspectMarker>,
471 responder: InspectOpenChildResponder,
472 },
473}
474
475impl InspectRequest {
476 #[allow(irrefutable_let_patterns)]
477 pub fn into_read_data(self) -> Option<(InspectReadDataResponder)> {
478 if let InspectRequest::ReadData { responder } = self {
479 Some((responder))
480 } else {
481 None
482 }
483 }
484
485 #[allow(irrefutable_let_patterns)]
486 pub fn into_list_children(self) -> Option<(InspectListChildrenResponder)> {
487 if let InspectRequest::ListChildren { responder } = self {
488 Some((responder))
489 } else {
490 None
491 }
492 }
493
494 #[allow(irrefutable_let_patterns)]
495 pub fn into_open_child(
496 self,
497 ) -> Option<(String, fidl::endpoints::ServerEnd<InspectMarker>, InspectOpenChildResponder)>
498 {
499 if let InspectRequest::OpenChild { child_name, child_channel, responder } = self {
500 Some((child_name, child_channel, responder))
501 } else {
502 None
503 }
504 }
505
506 pub fn method_name(&self) -> &'static str {
508 match *self {
509 InspectRequest::ReadData { .. } => "read_data",
510 InspectRequest::ListChildren { .. } => "list_children",
511 InspectRequest::OpenChild { .. } => "open_child",
512 }
513 }
514}
515
516#[derive(Debug, Clone)]
517pub struct InspectControlHandle {
518 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
519}
520
521impl fidl::endpoints::ControlHandle for InspectControlHandle {
522 fn shutdown(&self) {
523 self.inner.shutdown()
524 }
525 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
526 self.inner.shutdown_with_epitaph(status)
527 }
528
529 fn is_closed(&self) -> bool {
530 self.inner.channel().is_closed()
531 }
532 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
533 self.inner.channel().on_closed()
534 }
535
536 #[cfg(target_os = "fuchsia")]
537 fn signal_peer(
538 &self,
539 clear_mask: zx::Signals,
540 set_mask: zx::Signals,
541 ) -> Result<(), zx_status::Status> {
542 use fidl::Peered;
543 self.inner.channel().signal_peer(clear_mask, set_mask)
544 }
545}
546
547impl InspectControlHandle {}
548
549#[must_use = "FIDL methods require a response to be sent"]
550#[derive(Debug)]
551pub struct InspectReadDataResponder {
552 control_handle: std::mem::ManuallyDrop<InspectControlHandle>,
553 tx_id: u32,
554}
555
556impl std::ops::Drop for InspectReadDataResponder {
560 fn drop(&mut self) {
561 self.control_handle.shutdown();
562 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
564 }
565}
566
567impl fidl::endpoints::Responder for InspectReadDataResponder {
568 type ControlHandle = InspectControlHandle;
569
570 fn control_handle(&self) -> &InspectControlHandle {
571 &self.control_handle
572 }
573
574 fn drop_without_shutdown(mut self) {
575 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
577 std::mem::forget(self);
579 }
580}
581
582impl InspectReadDataResponder {
583 pub fn send(self, mut object: &Object) -> Result<(), fidl::Error> {
587 let _result = self.send_raw(object);
588 if _result.is_err() {
589 self.control_handle.shutdown();
590 }
591 self.drop_without_shutdown();
592 _result
593 }
594
595 pub fn send_no_shutdown_on_err(self, mut object: &Object) -> Result<(), fidl::Error> {
597 let _result = self.send_raw(object);
598 self.drop_without_shutdown();
599 _result
600 }
601
602 fn send_raw(&self, mut object: &Object) -> Result<(), fidl::Error> {
603 self.control_handle.inner.send::<InspectReadDataResponse>(
604 (object,),
605 self.tx_id,
606 0x1c6778e57fcfa9e1,
607 fidl::encoding::DynamicFlags::empty(),
608 )
609 }
610}
611
612#[must_use = "FIDL methods require a response to be sent"]
613#[derive(Debug)]
614pub struct InspectListChildrenResponder {
615 control_handle: std::mem::ManuallyDrop<InspectControlHandle>,
616 tx_id: u32,
617}
618
619impl std::ops::Drop for InspectListChildrenResponder {
623 fn drop(&mut self) {
624 self.control_handle.shutdown();
625 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
627 }
628}
629
630impl fidl::endpoints::Responder for InspectListChildrenResponder {
631 type ControlHandle = InspectControlHandle;
632
633 fn control_handle(&self) -> &InspectControlHandle {
634 &self.control_handle
635 }
636
637 fn drop_without_shutdown(mut self) {
638 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
640 std::mem::forget(self);
642 }
643}
644
645impl InspectListChildrenResponder {
646 pub fn send(self, mut children_names: &[String]) -> Result<(), fidl::Error> {
650 let _result = self.send_raw(children_names);
651 if _result.is_err() {
652 self.control_handle.shutdown();
653 }
654 self.drop_without_shutdown();
655 _result
656 }
657
658 pub fn send_no_shutdown_on_err(self, mut children_names: &[String]) -> Result<(), fidl::Error> {
660 let _result = self.send_raw(children_names);
661 self.drop_without_shutdown();
662 _result
663 }
664
665 fn send_raw(&self, mut children_names: &[String]) -> Result<(), fidl::Error> {
666 self.control_handle.inner.send::<InspectListChildrenResponse>(
667 (children_names,),
668 self.tx_id,
669 0x463fdc024dc40611,
670 fidl::encoding::DynamicFlags::empty(),
671 )
672 }
673}
674
675#[must_use = "FIDL methods require a response to be sent"]
676#[derive(Debug)]
677pub struct InspectOpenChildResponder {
678 control_handle: std::mem::ManuallyDrop<InspectControlHandle>,
679 tx_id: u32,
680}
681
682impl std::ops::Drop for InspectOpenChildResponder {
686 fn drop(&mut self) {
687 self.control_handle.shutdown();
688 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
690 }
691}
692
693impl fidl::endpoints::Responder for InspectOpenChildResponder {
694 type ControlHandle = InspectControlHandle;
695
696 fn control_handle(&self) -> &InspectControlHandle {
697 &self.control_handle
698 }
699
700 fn drop_without_shutdown(mut self) {
701 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
703 std::mem::forget(self);
705 }
706}
707
708impl InspectOpenChildResponder {
709 pub fn send(self, mut success: bool) -> Result<(), fidl::Error> {
713 let _result = self.send_raw(success);
714 if _result.is_err() {
715 self.control_handle.shutdown();
716 }
717 self.drop_without_shutdown();
718 _result
719 }
720
721 pub fn send_no_shutdown_on_err(self, mut success: bool) -> Result<(), fidl::Error> {
723 let _result = self.send_raw(success);
724 self.drop_without_shutdown();
725 _result
726 }
727
728 fn send_raw(&self, mut success: bool) -> Result<(), fidl::Error> {
729 self.control_handle.inner.send::<InspectOpenChildResponse>(
730 (success,),
731 self.tx_id,
732 0x30513125b65c866a,
733 fidl::encoding::DynamicFlags::empty(),
734 )
735 }
736}
737
738mod internal {
739 use super::*;
740
741 impl fidl::encoding::ResourceTypeMarker for InspectOpenChildRequest {
742 type Borrowed<'a> = &'a mut Self;
743 fn take_or_borrow<'a>(
744 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
745 ) -> Self::Borrowed<'a> {
746 value
747 }
748 }
749
750 unsafe impl fidl::encoding::TypeMarker for InspectOpenChildRequest {
751 type Owned = Self;
752
753 #[inline(always)]
754 fn inline_align(_context: fidl::encoding::Context) -> usize {
755 8
756 }
757
758 #[inline(always)]
759 fn inline_size(_context: fidl::encoding::Context) -> usize {
760 24
761 }
762 }
763
764 unsafe impl
765 fidl::encoding::Encode<
766 InspectOpenChildRequest,
767 fidl::encoding::DefaultFuchsiaResourceDialect,
768 > for &mut InspectOpenChildRequest
769 {
770 #[inline]
771 unsafe fn encode(
772 self,
773 encoder: &mut fidl::encoding::Encoder<
774 '_,
775 fidl::encoding::DefaultFuchsiaResourceDialect,
776 >,
777 offset: usize,
778 _depth: fidl::encoding::Depth,
779 ) -> fidl::Result<()> {
780 encoder.debug_check_bounds::<InspectOpenChildRequest>(offset);
781 fidl::encoding::Encode::<InspectOpenChildRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
783 (
784 <fidl::encoding::UnboundedString as fidl::encoding::ValueTypeMarker>::borrow(&self.child_name),
785 <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InspectMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.child_channel),
786 ),
787 encoder, offset, _depth
788 )
789 }
790 }
791 unsafe impl<
792 T0: fidl::encoding::Encode<
793 fidl::encoding::UnboundedString,
794 fidl::encoding::DefaultFuchsiaResourceDialect,
795 >,
796 T1: fidl::encoding::Encode<
797 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InspectMarker>>,
798 fidl::encoding::DefaultFuchsiaResourceDialect,
799 >,
800 >
801 fidl::encoding::Encode<
802 InspectOpenChildRequest,
803 fidl::encoding::DefaultFuchsiaResourceDialect,
804 > for (T0, T1)
805 {
806 #[inline]
807 unsafe fn encode(
808 self,
809 encoder: &mut fidl::encoding::Encoder<
810 '_,
811 fidl::encoding::DefaultFuchsiaResourceDialect,
812 >,
813 offset: usize,
814 depth: fidl::encoding::Depth,
815 ) -> fidl::Result<()> {
816 encoder.debug_check_bounds::<InspectOpenChildRequest>(offset);
817 unsafe {
820 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
821 (ptr as *mut u64).write_unaligned(0);
822 }
823 self.0.encode(encoder, offset + 0, depth)?;
825 self.1.encode(encoder, offset + 16, depth)?;
826 Ok(())
827 }
828 }
829
830 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
831 for InspectOpenChildRequest
832 {
833 #[inline(always)]
834 fn new_empty() -> Self {
835 Self {
836 child_name: fidl::new_empty!(
837 fidl::encoding::UnboundedString,
838 fidl::encoding::DefaultFuchsiaResourceDialect
839 ),
840 child_channel: fidl::new_empty!(
841 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InspectMarker>>,
842 fidl::encoding::DefaultFuchsiaResourceDialect
843 ),
844 }
845 }
846
847 #[inline]
848 unsafe fn decode(
849 &mut self,
850 decoder: &mut fidl::encoding::Decoder<
851 '_,
852 fidl::encoding::DefaultFuchsiaResourceDialect,
853 >,
854 offset: usize,
855 _depth: fidl::encoding::Depth,
856 ) -> fidl::Result<()> {
857 decoder.debug_check_bounds::<Self>(offset);
858 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
860 let padval = unsafe { (ptr as *const u64).read_unaligned() };
861 let mask = 0xffffffff00000000u64;
862 let maskedval = padval & mask;
863 if maskedval != 0 {
864 return Err(fidl::Error::NonZeroPadding {
865 padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
866 });
867 }
868 fidl::decode!(
869 fidl::encoding::UnboundedString,
870 fidl::encoding::DefaultFuchsiaResourceDialect,
871 &mut self.child_name,
872 decoder,
873 offset + 0,
874 _depth
875 )?;
876 fidl::decode!(
877 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<InspectMarker>>,
878 fidl::encoding::DefaultFuchsiaResourceDialect,
879 &mut self.child_channel,
880 decoder,
881 offset + 16,
882 _depth
883 )?;
884 Ok(())
885 }
886 }
887}