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_hardware_usb_device_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct DeviceMarker;
16
17impl fidl::endpoints::ProtocolMarker for DeviceMarker {
18 type Proxy = DeviceProxy;
19 type RequestStream = DeviceRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = DeviceSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) Device";
24}
25
26pub trait DeviceProxyInterface: Send + Sync {
27 type GetDeviceSpeedResponseFut: std::future::Future<Output = Result<u32, fidl::Error>> + Send;
28 fn r#get_device_speed(&self) -> Self::GetDeviceSpeedResponseFut;
29 type GetDeviceDescriptorResponseFut: std::future::Future<Output = Result<[u8; 18], fidl::Error>>
30 + Send;
31 fn r#get_device_descriptor(&self) -> Self::GetDeviceDescriptorResponseFut;
32 type GetConfigurationDescriptorSizeResponseFut: std::future::Future<Output = Result<(i32, u16), fidl::Error>>
33 + Send;
34 fn r#get_configuration_descriptor_size(
35 &self,
36 config: u8,
37 ) -> Self::GetConfigurationDescriptorSizeResponseFut;
38 type GetConfigurationDescriptorResponseFut: std::future::Future<Output = Result<(i32, Vec<u8>), fidl::Error>>
39 + Send;
40 fn r#get_configuration_descriptor(
41 &self,
42 config: u8,
43 ) -> Self::GetConfigurationDescriptorResponseFut;
44 type GetStringDescriptorResponseFut: std::future::Future<Output = Result<(i32, String, u16), fidl::Error>>
45 + Send;
46 fn r#get_string_descriptor(
47 &self,
48 desc_id: u8,
49 lang_id: u16,
50 ) -> Self::GetStringDescriptorResponseFut;
51 type SetInterfaceResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
52 fn r#set_interface(
53 &self,
54 interface_number: u8,
55 alt_setting: u8,
56 ) -> Self::SetInterfaceResponseFut;
57 type GetDeviceIdResponseFut: std::future::Future<Output = Result<u32, fidl::Error>> + Send;
58 fn r#get_device_id(&self) -> Self::GetDeviceIdResponseFut;
59 type GetHubDeviceIdResponseFut: std::future::Future<Output = Result<u32, fidl::Error>> + Send;
60 fn r#get_hub_device_id(&self) -> Self::GetHubDeviceIdResponseFut;
61 type GetConfigurationResponseFut: std::future::Future<Output = Result<u8, fidl::Error>> + Send;
62 fn r#get_configuration(&self) -> Self::GetConfigurationResponseFut;
63 type SetConfigurationResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
64 fn r#set_configuration(&self, configuration: u8) -> Self::SetConfigurationResponseFut;
65}
66#[derive(Debug)]
67#[cfg(target_os = "fuchsia")]
68pub struct DeviceSynchronousProxy {
69 client: fidl::client::sync::Client,
70}
71
72#[cfg(target_os = "fuchsia")]
73impl fidl::endpoints::SynchronousProxy for DeviceSynchronousProxy {
74 type Proxy = DeviceProxy;
75 type Protocol = DeviceMarker;
76
77 fn from_channel(inner: fidl::Channel) -> Self {
78 Self::new(inner)
79 }
80
81 fn into_channel(self) -> fidl::Channel {
82 self.client.into_channel()
83 }
84
85 fn as_channel(&self) -> &fidl::Channel {
86 self.client.as_channel()
87 }
88}
89
90#[cfg(target_os = "fuchsia")]
91impl DeviceSynchronousProxy {
92 pub fn new(channel: fidl::Channel) -> Self {
93 let protocol_name = <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
94 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
95 }
96
97 pub fn into_channel(self) -> fidl::Channel {
98 self.client.into_channel()
99 }
100
101 pub fn wait_for_event(
104 &self,
105 deadline: zx::MonotonicInstant,
106 ) -> Result<DeviceEvent, fidl::Error> {
107 DeviceEvent::decode(self.client.wait_for_event(deadline)?)
108 }
109
110 pub fn r#get_device_speed(
112 &self,
113 ___deadline: zx::MonotonicInstant,
114 ) -> Result<u32, fidl::Error> {
115 let _response =
116 self.client.send_query::<fidl::encoding::EmptyPayload, DeviceGetDeviceSpeedResponse>(
117 (),
118 0x623cd7927fb449de,
119 fidl::encoding::DynamicFlags::empty(),
120 ___deadline,
121 )?;
122 Ok(_response.speed)
123 }
124
125 pub fn r#get_device_descriptor(
127 &self,
128 ___deadline: zx::MonotonicInstant,
129 ) -> Result<[u8; 18], fidl::Error> {
130 let _response = self
131 .client
132 .send_query::<fidl::encoding::EmptyPayload, DeviceGetDeviceDescriptorResponse>(
133 (),
134 0x5f761371f4b9f34a,
135 fidl::encoding::DynamicFlags::empty(),
136 ___deadline,
137 )?;
138 Ok(_response.desc)
139 }
140
141 pub fn r#get_configuration_descriptor_size(
143 &self,
144 mut config: u8,
145 ___deadline: zx::MonotonicInstant,
146 ) -> Result<(i32, u16), fidl::Error> {
147 let _response = self.client.send_query::<
148 DeviceGetConfigurationDescriptorSizeRequest,
149 DeviceGetConfigurationDescriptorSizeResponse,
150 >(
151 (config,),
152 0x65912d7d5e3a07c8,
153 fidl::encoding::DynamicFlags::empty(),
154 ___deadline,
155 )?;
156 Ok((_response.s, _response.size))
157 }
158
159 pub fn r#get_configuration_descriptor(
161 &self,
162 mut config: u8,
163 ___deadline: zx::MonotonicInstant,
164 ) -> Result<(i32, Vec<u8>), fidl::Error> {
165 let _response = self.client.send_query::<
166 DeviceGetConfigurationDescriptorRequest,
167 DeviceGetConfigurationDescriptorResponse,
168 >(
169 (config,),
170 0x1859a4e4421d2036,
171 fidl::encoding::DynamicFlags::empty(),
172 ___deadline,
173 )?;
174 Ok((_response.s, _response.desc))
175 }
176
177 pub fn r#get_string_descriptor(
196 &self,
197 mut desc_id: u8,
198 mut lang_id: u16,
199 ___deadline: zx::MonotonicInstant,
200 ) -> Result<(i32, String, u16), fidl::Error> {
201 let _response = self
202 .client
203 .send_query::<DeviceGetStringDescriptorRequest, DeviceGetStringDescriptorResponse>(
204 (desc_id, lang_id),
205 0x5ff601b3b6891337,
206 fidl::encoding::DynamicFlags::empty(),
207 ___deadline,
208 )?;
209 Ok((_response.s, _response.desc, _response.actual_lang_id))
210 }
211
212 pub fn r#set_interface(
214 &self,
215 mut interface_number: u8,
216 mut alt_setting: u8,
217 ___deadline: zx::MonotonicInstant,
218 ) -> Result<i32, fidl::Error> {
219 let _response =
220 self.client.send_query::<DeviceSetInterfaceRequest, DeviceSetInterfaceResponse>(
221 (interface_number, alt_setting),
222 0x45348c50850b641d,
223 fidl::encoding::DynamicFlags::empty(),
224 ___deadline,
225 )?;
226 Ok(_response.s)
227 }
228
229 pub fn r#get_device_id(&self, ___deadline: zx::MonotonicInstant) -> Result<u32, fidl::Error> {
232 let _response =
233 self.client.send_query::<fidl::encoding::EmptyPayload, DeviceGetDeviceIdResponse>(
234 (),
235 0x34a73eef491c2ce0,
236 fidl::encoding::DynamicFlags::empty(),
237 ___deadline,
238 )?;
239 Ok(_response.device_id)
240 }
241
242 pub fn r#get_hub_device_id(
245 &self,
246 ___deadline: zx::MonotonicInstant,
247 ) -> Result<u32, fidl::Error> {
248 let _response =
249 self.client.send_query::<fidl::encoding::EmptyPayload, DeviceGetHubDeviceIdResponse>(
250 (),
251 0xce263c86f7bbbcd,
252 fidl::encoding::DynamicFlags::empty(),
253 ___deadline,
254 )?;
255 Ok(_response.hub_device_id)
256 }
257
258 pub fn r#get_configuration(
260 &self,
261 ___deadline: zx::MonotonicInstant,
262 ) -> Result<u8, fidl::Error> {
263 let _response = self
264 .client
265 .send_query::<fidl::encoding::EmptyPayload, DeviceGetConfigurationResponse>(
266 (),
267 0x73f644382a2335fd,
268 fidl::encoding::DynamicFlags::empty(),
269 ___deadline,
270 )?;
271 Ok(_response.configuration)
272 }
273
274 pub fn r#set_configuration(
276 &self,
277 mut configuration: u8,
278 ___deadline: zx::MonotonicInstant,
279 ) -> Result<i32, fidl::Error> {
280 let _response = self
281 .client
282 .send_query::<DeviceSetConfigurationRequest, DeviceSetConfigurationResponse>(
283 (configuration,),
284 0x12bf6e43b045ee9d,
285 fidl::encoding::DynamicFlags::empty(),
286 ___deadline,
287 )?;
288 Ok(_response.s)
289 }
290}
291
292#[cfg(target_os = "fuchsia")]
293impl From<DeviceSynchronousProxy> for zx::Handle {
294 fn from(value: DeviceSynchronousProxy) -> Self {
295 value.into_channel().into()
296 }
297}
298
299#[cfg(target_os = "fuchsia")]
300impl From<fidl::Channel> for DeviceSynchronousProxy {
301 fn from(value: fidl::Channel) -> Self {
302 Self::new(value)
303 }
304}
305
306#[derive(Debug, Clone)]
307pub struct DeviceProxy {
308 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
309}
310
311impl fidl::endpoints::Proxy for DeviceProxy {
312 type Protocol = DeviceMarker;
313
314 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
315 Self::new(inner)
316 }
317
318 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
319 self.client.into_channel().map_err(|client| Self { client })
320 }
321
322 fn as_channel(&self) -> &::fidl::AsyncChannel {
323 self.client.as_channel()
324 }
325}
326
327impl DeviceProxy {
328 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
330 let protocol_name = <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
331 Self { client: fidl::client::Client::new(channel, protocol_name) }
332 }
333
334 pub fn take_event_stream(&self) -> DeviceEventStream {
340 DeviceEventStream { event_receiver: self.client.take_event_receiver() }
341 }
342
343 pub fn r#get_device_speed(
345 &self,
346 ) -> fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect> {
347 DeviceProxyInterface::r#get_device_speed(self)
348 }
349
350 pub fn r#get_device_descriptor(
352 &self,
353 ) -> fidl::client::QueryResponseFut<[u8; 18], fidl::encoding::DefaultFuchsiaResourceDialect>
354 {
355 DeviceProxyInterface::r#get_device_descriptor(self)
356 }
357
358 pub fn r#get_configuration_descriptor_size(
360 &self,
361 mut config: u8,
362 ) -> fidl::client::QueryResponseFut<(i32, u16), fidl::encoding::DefaultFuchsiaResourceDialect>
363 {
364 DeviceProxyInterface::r#get_configuration_descriptor_size(self, config)
365 }
366
367 pub fn r#get_configuration_descriptor(
369 &self,
370 mut config: u8,
371 ) -> fidl::client::QueryResponseFut<(i32, Vec<u8>), fidl::encoding::DefaultFuchsiaResourceDialect>
372 {
373 DeviceProxyInterface::r#get_configuration_descriptor(self, config)
374 }
375
376 pub fn r#get_string_descriptor(
395 &self,
396 mut desc_id: u8,
397 mut lang_id: u16,
398 ) -> fidl::client::QueryResponseFut<
399 (i32, String, u16),
400 fidl::encoding::DefaultFuchsiaResourceDialect,
401 > {
402 DeviceProxyInterface::r#get_string_descriptor(self, desc_id, lang_id)
403 }
404
405 pub fn r#set_interface(
407 &self,
408 mut interface_number: u8,
409 mut alt_setting: u8,
410 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
411 DeviceProxyInterface::r#set_interface(self, interface_number, alt_setting)
412 }
413
414 pub fn r#get_device_id(
417 &self,
418 ) -> fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect> {
419 DeviceProxyInterface::r#get_device_id(self)
420 }
421
422 pub fn r#get_hub_device_id(
425 &self,
426 ) -> fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect> {
427 DeviceProxyInterface::r#get_hub_device_id(self)
428 }
429
430 pub fn r#get_configuration(
432 &self,
433 ) -> fidl::client::QueryResponseFut<u8, fidl::encoding::DefaultFuchsiaResourceDialect> {
434 DeviceProxyInterface::r#get_configuration(self)
435 }
436
437 pub fn r#set_configuration(
439 &self,
440 mut configuration: u8,
441 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
442 DeviceProxyInterface::r#set_configuration(self, configuration)
443 }
444}
445
446impl DeviceProxyInterface for DeviceProxy {
447 type GetDeviceSpeedResponseFut =
448 fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect>;
449 fn r#get_device_speed(&self) -> Self::GetDeviceSpeedResponseFut {
450 fn _decode(
451 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
452 ) -> Result<u32, fidl::Error> {
453 let _response = fidl::client::decode_transaction_body::<
454 DeviceGetDeviceSpeedResponse,
455 fidl::encoding::DefaultFuchsiaResourceDialect,
456 0x623cd7927fb449de,
457 >(_buf?)?;
458 Ok(_response.speed)
459 }
460 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u32>(
461 (),
462 0x623cd7927fb449de,
463 fidl::encoding::DynamicFlags::empty(),
464 _decode,
465 )
466 }
467
468 type GetDeviceDescriptorResponseFut =
469 fidl::client::QueryResponseFut<[u8; 18], fidl::encoding::DefaultFuchsiaResourceDialect>;
470 fn r#get_device_descriptor(&self) -> Self::GetDeviceDescriptorResponseFut {
471 fn _decode(
472 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
473 ) -> Result<[u8; 18], fidl::Error> {
474 let _response = fidl::client::decode_transaction_body::<
475 DeviceGetDeviceDescriptorResponse,
476 fidl::encoding::DefaultFuchsiaResourceDialect,
477 0x5f761371f4b9f34a,
478 >(_buf?)?;
479 Ok(_response.desc)
480 }
481 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, [u8; 18]>(
482 (),
483 0x5f761371f4b9f34a,
484 fidl::encoding::DynamicFlags::empty(),
485 _decode,
486 )
487 }
488
489 type GetConfigurationDescriptorSizeResponseFut =
490 fidl::client::QueryResponseFut<(i32, u16), fidl::encoding::DefaultFuchsiaResourceDialect>;
491 fn r#get_configuration_descriptor_size(
492 &self,
493 mut config: u8,
494 ) -> Self::GetConfigurationDescriptorSizeResponseFut {
495 fn _decode(
496 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
497 ) -> Result<(i32, u16), fidl::Error> {
498 let _response = fidl::client::decode_transaction_body::<
499 DeviceGetConfigurationDescriptorSizeResponse,
500 fidl::encoding::DefaultFuchsiaResourceDialect,
501 0x65912d7d5e3a07c8,
502 >(_buf?)?;
503 Ok((_response.s, _response.size))
504 }
505 self.client
506 .send_query_and_decode::<DeviceGetConfigurationDescriptorSizeRequest, (i32, u16)>(
507 (config,),
508 0x65912d7d5e3a07c8,
509 fidl::encoding::DynamicFlags::empty(),
510 _decode,
511 )
512 }
513
514 type GetConfigurationDescriptorResponseFut = fidl::client::QueryResponseFut<
515 (i32, Vec<u8>),
516 fidl::encoding::DefaultFuchsiaResourceDialect,
517 >;
518 fn r#get_configuration_descriptor(
519 &self,
520 mut config: u8,
521 ) -> Self::GetConfigurationDescriptorResponseFut {
522 fn _decode(
523 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
524 ) -> Result<(i32, Vec<u8>), fidl::Error> {
525 let _response = fidl::client::decode_transaction_body::<
526 DeviceGetConfigurationDescriptorResponse,
527 fidl::encoding::DefaultFuchsiaResourceDialect,
528 0x1859a4e4421d2036,
529 >(_buf?)?;
530 Ok((_response.s, _response.desc))
531 }
532 self.client
533 .send_query_and_decode::<DeviceGetConfigurationDescriptorRequest, (i32, Vec<u8>)>(
534 (config,),
535 0x1859a4e4421d2036,
536 fidl::encoding::DynamicFlags::empty(),
537 _decode,
538 )
539 }
540
541 type GetStringDescriptorResponseFut = fidl::client::QueryResponseFut<
542 (i32, String, u16),
543 fidl::encoding::DefaultFuchsiaResourceDialect,
544 >;
545 fn r#get_string_descriptor(
546 &self,
547 mut desc_id: u8,
548 mut lang_id: u16,
549 ) -> Self::GetStringDescriptorResponseFut {
550 fn _decode(
551 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
552 ) -> Result<(i32, String, u16), fidl::Error> {
553 let _response = fidl::client::decode_transaction_body::<
554 DeviceGetStringDescriptorResponse,
555 fidl::encoding::DefaultFuchsiaResourceDialect,
556 0x5ff601b3b6891337,
557 >(_buf?)?;
558 Ok((_response.s, _response.desc, _response.actual_lang_id))
559 }
560 self.client.send_query_and_decode::<DeviceGetStringDescriptorRequest, (i32, String, u16)>(
561 (desc_id, lang_id),
562 0x5ff601b3b6891337,
563 fidl::encoding::DynamicFlags::empty(),
564 _decode,
565 )
566 }
567
568 type SetInterfaceResponseFut =
569 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
570 fn r#set_interface(
571 &self,
572 mut interface_number: u8,
573 mut alt_setting: u8,
574 ) -> Self::SetInterfaceResponseFut {
575 fn _decode(
576 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
577 ) -> Result<i32, fidl::Error> {
578 let _response = fidl::client::decode_transaction_body::<
579 DeviceSetInterfaceResponse,
580 fidl::encoding::DefaultFuchsiaResourceDialect,
581 0x45348c50850b641d,
582 >(_buf?)?;
583 Ok(_response.s)
584 }
585 self.client.send_query_and_decode::<DeviceSetInterfaceRequest, i32>(
586 (interface_number, alt_setting),
587 0x45348c50850b641d,
588 fidl::encoding::DynamicFlags::empty(),
589 _decode,
590 )
591 }
592
593 type GetDeviceIdResponseFut =
594 fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect>;
595 fn r#get_device_id(&self) -> Self::GetDeviceIdResponseFut {
596 fn _decode(
597 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
598 ) -> Result<u32, fidl::Error> {
599 let _response = fidl::client::decode_transaction_body::<
600 DeviceGetDeviceIdResponse,
601 fidl::encoding::DefaultFuchsiaResourceDialect,
602 0x34a73eef491c2ce0,
603 >(_buf?)?;
604 Ok(_response.device_id)
605 }
606 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u32>(
607 (),
608 0x34a73eef491c2ce0,
609 fidl::encoding::DynamicFlags::empty(),
610 _decode,
611 )
612 }
613
614 type GetHubDeviceIdResponseFut =
615 fidl::client::QueryResponseFut<u32, fidl::encoding::DefaultFuchsiaResourceDialect>;
616 fn r#get_hub_device_id(&self) -> Self::GetHubDeviceIdResponseFut {
617 fn _decode(
618 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
619 ) -> Result<u32, fidl::Error> {
620 let _response = fidl::client::decode_transaction_body::<
621 DeviceGetHubDeviceIdResponse,
622 fidl::encoding::DefaultFuchsiaResourceDialect,
623 0xce263c86f7bbbcd,
624 >(_buf?)?;
625 Ok(_response.hub_device_id)
626 }
627 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u32>(
628 (),
629 0xce263c86f7bbbcd,
630 fidl::encoding::DynamicFlags::empty(),
631 _decode,
632 )
633 }
634
635 type GetConfigurationResponseFut =
636 fidl::client::QueryResponseFut<u8, fidl::encoding::DefaultFuchsiaResourceDialect>;
637 fn r#get_configuration(&self) -> Self::GetConfigurationResponseFut {
638 fn _decode(
639 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
640 ) -> Result<u8, fidl::Error> {
641 let _response = fidl::client::decode_transaction_body::<
642 DeviceGetConfigurationResponse,
643 fidl::encoding::DefaultFuchsiaResourceDialect,
644 0x73f644382a2335fd,
645 >(_buf?)?;
646 Ok(_response.configuration)
647 }
648 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, u8>(
649 (),
650 0x73f644382a2335fd,
651 fidl::encoding::DynamicFlags::empty(),
652 _decode,
653 )
654 }
655
656 type SetConfigurationResponseFut =
657 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
658 fn r#set_configuration(&self, mut configuration: u8) -> Self::SetConfigurationResponseFut {
659 fn _decode(
660 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
661 ) -> Result<i32, fidl::Error> {
662 let _response = fidl::client::decode_transaction_body::<
663 DeviceSetConfigurationResponse,
664 fidl::encoding::DefaultFuchsiaResourceDialect,
665 0x12bf6e43b045ee9d,
666 >(_buf?)?;
667 Ok(_response.s)
668 }
669 self.client.send_query_and_decode::<DeviceSetConfigurationRequest, i32>(
670 (configuration,),
671 0x12bf6e43b045ee9d,
672 fidl::encoding::DynamicFlags::empty(),
673 _decode,
674 )
675 }
676}
677
678pub struct DeviceEventStream {
679 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
680}
681
682impl std::marker::Unpin for DeviceEventStream {}
683
684impl futures::stream::FusedStream for DeviceEventStream {
685 fn is_terminated(&self) -> bool {
686 self.event_receiver.is_terminated()
687 }
688}
689
690impl futures::Stream for DeviceEventStream {
691 type Item = Result<DeviceEvent, fidl::Error>;
692
693 fn poll_next(
694 mut self: std::pin::Pin<&mut Self>,
695 cx: &mut std::task::Context<'_>,
696 ) -> std::task::Poll<Option<Self::Item>> {
697 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
698 &mut self.event_receiver,
699 cx
700 )?) {
701 Some(buf) => std::task::Poll::Ready(Some(DeviceEvent::decode(buf))),
702 None => std::task::Poll::Ready(None),
703 }
704 }
705}
706
707#[derive(Debug)]
708pub enum DeviceEvent {}
709
710impl DeviceEvent {
711 fn decode(
713 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
714 ) -> Result<DeviceEvent, fidl::Error> {
715 let (bytes, _handles) = buf.split_mut();
716 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
717 debug_assert_eq!(tx_header.tx_id, 0);
718 match tx_header.ordinal {
719 _ => Err(fidl::Error::UnknownOrdinal {
720 ordinal: tx_header.ordinal,
721 protocol_name: <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
722 }),
723 }
724 }
725}
726
727pub struct DeviceRequestStream {
729 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
730 is_terminated: bool,
731}
732
733impl std::marker::Unpin for DeviceRequestStream {}
734
735impl futures::stream::FusedStream for DeviceRequestStream {
736 fn is_terminated(&self) -> bool {
737 self.is_terminated
738 }
739}
740
741impl fidl::endpoints::RequestStream for DeviceRequestStream {
742 type Protocol = DeviceMarker;
743 type ControlHandle = DeviceControlHandle;
744
745 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
746 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
747 }
748
749 fn control_handle(&self) -> Self::ControlHandle {
750 DeviceControlHandle { inner: self.inner.clone() }
751 }
752
753 fn into_inner(
754 self,
755 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
756 {
757 (self.inner, self.is_terminated)
758 }
759
760 fn from_inner(
761 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
762 is_terminated: bool,
763 ) -> Self {
764 Self { inner, is_terminated }
765 }
766}
767
768impl futures::Stream for DeviceRequestStream {
769 type Item = Result<DeviceRequest, fidl::Error>;
770
771 fn poll_next(
772 mut self: std::pin::Pin<&mut Self>,
773 cx: &mut std::task::Context<'_>,
774 ) -> std::task::Poll<Option<Self::Item>> {
775 let this = &mut *self;
776 if this.inner.check_shutdown(cx) {
777 this.is_terminated = true;
778 return std::task::Poll::Ready(None);
779 }
780 if this.is_terminated {
781 panic!("polled DeviceRequestStream after completion");
782 }
783 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
784 |bytes, handles| {
785 match this.inner.channel().read_etc(cx, bytes, handles) {
786 std::task::Poll::Ready(Ok(())) => {}
787 std::task::Poll::Pending => return std::task::Poll::Pending,
788 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
789 this.is_terminated = true;
790 return std::task::Poll::Ready(None);
791 }
792 std::task::Poll::Ready(Err(e)) => {
793 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
794 e.into(),
795 ))))
796 }
797 }
798
799 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
801
802 std::task::Poll::Ready(Some(match header.ordinal {
803 0x623cd7927fb449de => {
804 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
805 let mut req = fidl::new_empty!(
806 fidl::encoding::EmptyPayload,
807 fidl::encoding::DefaultFuchsiaResourceDialect
808 );
809 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
810 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
811 Ok(DeviceRequest::GetDeviceSpeed {
812 responder: DeviceGetDeviceSpeedResponder {
813 control_handle: std::mem::ManuallyDrop::new(control_handle),
814 tx_id: header.tx_id,
815 },
816 })
817 }
818 0x5f761371f4b9f34a => {
819 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
820 let mut req = fidl::new_empty!(
821 fidl::encoding::EmptyPayload,
822 fidl::encoding::DefaultFuchsiaResourceDialect
823 );
824 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
825 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
826 Ok(DeviceRequest::GetDeviceDescriptor {
827 responder: DeviceGetDeviceDescriptorResponder {
828 control_handle: std::mem::ManuallyDrop::new(control_handle),
829 tx_id: header.tx_id,
830 },
831 })
832 }
833 0x65912d7d5e3a07c8 => {
834 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
835 let mut req = fidl::new_empty!(
836 DeviceGetConfigurationDescriptorSizeRequest,
837 fidl::encoding::DefaultFuchsiaResourceDialect
838 );
839 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceGetConfigurationDescriptorSizeRequest>(&header, _body_bytes, handles, &mut req)?;
840 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
841 Ok(DeviceRequest::GetConfigurationDescriptorSize {
842 config: req.config,
843
844 responder: DeviceGetConfigurationDescriptorSizeResponder {
845 control_handle: std::mem::ManuallyDrop::new(control_handle),
846 tx_id: header.tx_id,
847 },
848 })
849 }
850 0x1859a4e4421d2036 => {
851 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
852 let mut req = fidl::new_empty!(
853 DeviceGetConfigurationDescriptorRequest,
854 fidl::encoding::DefaultFuchsiaResourceDialect
855 );
856 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceGetConfigurationDescriptorRequest>(&header, _body_bytes, handles, &mut req)?;
857 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
858 Ok(DeviceRequest::GetConfigurationDescriptor {
859 config: req.config,
860
861 responder: DeviceGetConfigurationDescriptorResponder {
862 control_handle: std::mem::ManuallyDrop::new(control_handle),
863 tx_id: header.tx_id,
864 },
865 })
866 }
867 0x5ff601b3b6891337 => {
868 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
869 let mut req = fidl::new_empty!(
870 DeviceGetStringDescriptorRequest,
871 fidl::encoding::DefaultFuchsiaResourceDialect
872 );
873 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceGetStringDescriptorRequest>(&header, _body_bytes, handles, &mut req)?;
874 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
875 Ok(DeviceRequest::GetStringDescriptor {
876 desc_id: req.desc_id,
877 lang_id: req.lang_id,
878
879 responder: DeviceGetStringDescriptorResponder {
880 control_handle: std::mem::ManuallyDrop::new(control_handle),
881 tx_id: header.tx_id,
882 },
883 })
884 }
885 0x45348c50850b641d => {
886 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
887 let mut req = fidl::new_empty!(
888 DeviceSetInterfaceRequest,
889 fidl::encoding::DefaultFuchsiaResourceDialect
890 );
891 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceSetInterfaceRequest>(&header, _body_bytes, handles, &mut req)?;
892 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
893 Ok(DeviceRequest::SetInterface {
894 interface_number: req.interface_number,
895 alt_setting: req.alt_setting,
896
897 responder: DeviceSetInterfaceResponder {
898 control_handle: std::mem::ManuallyDrop::new(control_handle),
899 tx_id: header.tx_id,
900 },
901 })
902 }
903 0x34a73eef491c2ce0 => {
904 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
905 let mut req = fidl::new_empty!(
906 fidl::encoding::EmptyPayload,
907 fidl::encoding::DefaultFuchsiaResourceDialect
908 );
909 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
910 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
911 Ok(DeviceRequest::GetDeviceId {
912 responder: DeviceGetDeviceIdResponder {
913 control_handle: std::mem::ManuallyDrop::new(control_handle),
914 tx_id: header.tx_id,
915 },
916 })
917 }
918 0xce263c86f7bbbcd => {
919 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
920 let mut req = fidl::new_empty!(
921 fidl::encoding::EmptyPayload,
922 fidl::encoding::DefaultFuchsiaResourceDialect
923 );
924 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
925 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
926 Ok(DeviceRequest::GetHubDeviceId {
927 responder: DeviceGetHubDeviceIdResponder {
928 control_handle: std::mem::ManuallyDrop::new(control_handle),
929 tx_id: header.tx_id,
930 },
931 })
932 }
933 0x73f644382a2335fd => {
934 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
935 let mut req = fidl::new_empty!(
936 fidl::encoding::EmptyPayload,
937 fidl::encoding::DefaultFuchsiaResourceDialect
938 );
939 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
940 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
941 Ok(DeviceRequest::GetConfiguration {
942 responder: DeviceGetConfigurationResponder {
943 control_handle: std::mem::ManuallyDrop::new(control_handle),
944 tx_id: header.tx_id,
945 },
946 })
947 }
948 0x12bf6e43b045ee9d => {
949 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
950 let mut req = fidl::new_empty!(
951 DeviceSetConfigurationRequest,
952 fidl::encoding::DefaultFuchsiaResourceDialect
953 );
954 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceSetConfigurationRequest>(&header, _body_bytes, handles, &mut req)?;
955 let control_handle = DeviceControlHandle { inner: this.inner.clone() };
956 Ok(DeviceRequest::SetConfiguration {
957 configuration: req.configuration,
958
959 responder: DeviceSetConfigurationResponder {
960 control_handle: std::mem::ManuallyDrop::new(control_handle),
961 tx_id: header.tx_id,
962 },
963 })
964 }
965 _ => Err(fidl::Error::UnknownOrdinal {
966 ordinal: header.ordinal,
967 protocol_name:
968 <DeviceMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
969 }),
970 }))
971 },
972 )
973 }
974}
975
976#[derive(Debug)]
977pub enum DeviceRequest {
978 GetDeviceSpeed { responder: DeviceGetDeviceSpeedResponder },
980 GetDeviceDescriptor { responder: DeviceGetDeviceDescriptorResponder },
982 GetConfigurationDescriptorSize {
984 config: u8,
985 responder: DeviceGetConfigurationDescriptorSizeResponder,
986 },
987 GetConfigurationDescriptor { config: u8, responder: DeviceGetConfigurationDescriptorResponder },
989 GetStringDescriptor { desc_id: u8, lang_id: u16, responder: DeviceGetStringDescriptorResponder },
1008 SetInterface { interface_number: u8, alt_setting: u8, responder: DeviceSetInterfaceResponder },
1010 GetDeviceId { responder: DeviceGetDeviceIdResponder },
1013 GetHubDeviceId { responder: DeviceGetHubDeviceIdResponder },
1016 GetConfiguration { responder: DeviceGetConfigurationResponder },
1018 SetConfiguration { configuration: u8, responder: DeviceSetConfigurationResponder },
1020}
1021
1022impl DeviceRequest {
1023 #[allow(irrefutable_let_patterns)]
1024 pub fn into_get_device_speed(self) -> Option<(DeviceGetDeviceSpeedResponder)> {
1025 if let DeviceRequest::GetDeviceSpeed { responder } = self {
1026 Some((responder))
1027 } else {
1028 None
1029 }
1030 }
1031
1032 #[allow(irrefutable_let_patterns)]
1033 pub fn into_get_device_descriptor(self) -> Option<(DeviceGetDeviceDescriptorResponder)> {
1034 if let DeviceRequest::GetDeviceDescriptor { responder } = self {
1035 Some((responder))
1036 } else {
1037 None
1038 }
1039 }
1040
1041 #[allow(irrefutable_let_patterns)]
1042 pub fn into_get_configuration_descriptor_size(
1043 self,
1044 ) -> Option<(u8, DeviceGetConfigurationDescriptorSizeResponder)> {
1045 if let DeviceRequest::GetConfigurationDescriptorSize { config, responder } = self {
1046 Some((config, responder))
1047 } else {
1048 None
1049 }
1050 }
1051
1052 #[allow(irrefutable_let_patterns)]
1053 pub fn into_get_configuration_descriptor(
1054 self,
1055 ) -> Option<(u8, DeviceGetConfigurationDescriptorResponder)> {
1056 if let DeviceRequest::GetConfigurationDescriptor { config, responder } = self {
1057 Some((config, responder))
1058 } else {
1059 None
1060 }
1061 }
1062
1063 #[allow(irrefutable_let_patterns)]
1064 pub fn into_get_string_descriptor(
1065 self,
1066 ) -> Option<(u8, u16, DeviceGetStringDescriptorResponder)> {
1067 if let DeviceRequest::GetStringDescriptor { desc_id, lang_id, responder } = self {
1068 Some((desc_id, lang_id, responder))
1069 } else {
1070 None
1071 }
1072 }
1073
1074 #[allow(irrefutable_let_patterns)]
1075 pub fn into_set_interface(self) -> Option<(u8, u8, DeviceSetInterfaceResponder)> {
1076 if let DeviceRequest::SetInterface { interface_number, alt_setting, responder } = self {
1077 Some((interface_number, alt_setting, responder))
1078 } else {
1079 None
1080 }
1081 }
1082
1083 #[allow(irrefutable_let_patterns)]
1084 pub fn into_get_device_id(self) -> Option<(DeviceGetDeviceIdResponder)> {
1085 if let DeviceRequest::GetDeviceId { responder } = self {
1086 Some((responder))
1087 } else {
1088 None
1089 }
1090 }
1091
1092 #[allow(irrefutable_let_patterns)]
1093 pub fn into_get_hub_device_id(self) -> Option<(DeviceGetHubDeviceIdResponder)> {
1094 if let DeviceRequest::GetHubDeviceId { responder } = self {
1095 Some((responder))
1096 } else {
1097 None
1098 }
1099 }
1100
1101 #[allow(irrefutable_let_patterns)]
1102 pub fn into_get_configuration(self) -> Option<(DeviceGetConfigurationResponder)> {
1103 if let DeviceRequest::GetConfiguration { responder } = self {
1104 Some((responder))
1105 } else {
1106 None
1107 }
1108 }
1109
1110 #[allow(irrefutable_let_patterns)]
1111 pub fn into_set_configuration(self) -> Option<(u8, DeviceSetConfigurationResponder)> {
1112 if let DeviceRequest::SetConfiguration { configuration, responder } = self {
1113 Some((configuration, responder))
1114 } else {
1115 None
1116 }
1117 }
1118
1119 pub fn method_name(&self) -> &'static str {
1121 match *self {
1122 DeviceRequest::GetDeviceSpeed { .. } => "get_device_speed",
1123 DeviceRequest::GetDeviceDescriptor { .. } => "get_device_descriptor",
1124 DeviceRequest::GetConfigurationDescriptorSize { .. } => {
1125 "get_configuration_descriptor_size"
1126 }
1127 DeviceRequest::GetConfigurationDescriptor { .. } => "get_configuration_descriptor",
1128 DeviceRequest::GetStringDescriptor { .. } => "get_string_descriptor",
1129 DeviceRequest::SetInterface { .. } => "set_interface",
1130 DeviceRequest::GetDeviceId { .. } => "get_device_id",
1131 DeviceRequest::GetHubDeviceId { .. } => "get_hub_device_id",
1132 DeviceRequest::GetConfiguration { .. } => "get_configuration",
1133 DeviceRequest::SetConfiguration { .. } => "set_configuration",
1134 }
1135 }
1136}
1137
1138#[derive(Debug, Clone)]
1139pub struct DeviceControlHandle {
1140 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1141}
1142
1143impl fidl::endpoints::ControlHandle for DeviceControlHandle {
1144 fn shutdown(&self) {
1145 self.inner.shutdown()
1146 }
1147 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1148 self.inner.shutdown_with_epitaph(status)
1149 }
1150
1151 fn is_closed(&self) -> bool {
1152 self.inner.channel().is_closed()
1153 }
1154 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1155 self.inner.channel().on_closed()
1156 }
1157
1158 #[cfg(target_os = "fuchsia")]
1159 fn signal_peer(
1160 &self,
1161 clear_mask: zx::Signals,
1162 set_mask: zx::Signals,
1163 ) -> Result<(), zx_status::Status> {
1164 use fidl::Peered;
1165 self.inner.channel().signal_peer(clear_mask, set_mask)
1166 }
1167}
1168
1169impl DeviceControlHandle {}
1170
1171#[must_use = "FIDL methods require a response to be sent"]
1172#[derive(Debug)]
1173pub struct DeviceGetDeviceSpeedResponder {
1174 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1175 tx_id: u32,
1176}
1177
1178impl std::ops::Drop for DeviceGetDeviceSpeedResponder {
1182 fn drop(&mut self) {
1183 self.control_handle.shutdown();
1184 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1186 }
1187}
1188
1189impl fidl::endpoints::Responder for DeviceGetDeviceSpeedResponder {
1190 type ControlHandle = DeviceControlHandle;
1191
1192 fn control_handle(&self) -> &DeviceControlHandle {
1193 &self.control_handle
1194 }
1195
1196 fn drop_without_shutdown(mut self) {
1197 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1199 std::mem::forget(self);
1201 }
1202}
1203
1204impl DeviceGetDeviceSpeedResponder {
1205 pub fn send(self, mut speed: u32) -> Result<(), fidl::Error> {
1209 let _result = self.send_raw(speed);
1210 if _result.is_err() {
1211 self.control_handle.shutdown();
1212 }
1213 self.drop_without_shutdown();
1214 _result
1215 }
1216
1217 pub fn send_no_shutdown_on_err(self, mut speed: u32) -> Result<(), fidl::Error> {
1219 let _result = self.send_raw(speed);
1220 self.drop_without_shutdown();
1221 _result
1222 }
1223
1224 fn send_raw(&self, mut speed: u32) -> Result<(), fidl::Error> {
1225 self.control_handle.inner.send::<DeviceGetDeviceSpeedResponse>(
1226 (speed,),
1227 self.tx_id,
1228 0x623cd7927fb449de,
1229 fidl::encoding::DynamicFlags::empty(),
1230 )
1231 }
1232}
1233
1234#[must_use = "FIDL methods require a response to be sent"]
1235#[derive(Debug)]
1236pub struct DeviceGetDeviceDescriptorResponder {
1237 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1238 tx_id: u32,
1239}
1240
1241impl std::ops::Drop for DeviceGetDeviceDescriptorResponder {
1245 fn drop(&mut self) {
1246 self.control_handle.shutdown();
1247 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1249 }
1250}
1251
1252impl fidl::endpoints::Responder for DeviceGetDeviceDescriptorResponder {
1253 type ControlHandle = DeviceControlHandle;
1254
1255 fn control_handle(&self) -> &DeviceControlHandle {
1256 &self.control_handle
1257 }
1258
1259 fn drop_without_shutdown(mut self) {
1260 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1262 std::mem::forget(self);
1264 }
1265}
1266
1267impl DeviceGetDeviceDescriptorResponder {
1268 pub fn send(self, mut desc: &[u8; 18]) -> Result<(), fidl::Error> {
1272 let _result = self.send_raw(desc);
1273 if _result.is_err() {
1274 self.control_handle.shutdown();
1275 }
1276 self.drop_without_shutdown();
1277 _result
1278 }
1279
1280 pub fn send_no_shutdown_on_err(self, mut desc: &[u8; 18]) -> Result<(), fidl::Error> {
1282 let _result = self.send_raw(desc);
1283 self.drop_without_shutdown();
1284 _result
1285 }
1286
1287 fn send_raw(&self, mut desc: &[u8; 18]) -> Result<(), fidl::Error> {
1288 self.control_handle.inner.send::<DeviceGetDeviceDescriptorResponse>(
1289 (desc,),
1290 self.tx_id,
1291 0x5f761371f4b9f34a,
1292 fidl::encoding::DynamicFlags::empty(),
1293 )
1294 }
1295}
1296
1297#[must_use = "FIDL methods require a response to be sent"]
1298#[derive(Debug)]
1299pub struct DeviceGetConfigurationDescriptorSizeResponder {
1300 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1301 tx_id: u32,
1302}
1303
1304impl std::ops::Drop for DeviceGetConfigurationDescriptorSizeResponder {
1308 fn drop(&mut self) {
1309 self.control_handle.shutdown();
1310 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1312 }
1313}
1314
1315impl fidl::endpoints::Responder for DeviceGetConfigurationDescriptorSizeResponder {
1316 type ControlHandle = DeviceControlHandle;
1317
1318 fn control_handle(&self) -> &DeviceControlHandle {
1319 &self.control_handle
1320 }
1321
1322 fn drop_without_shutdown(mut self) {
1323 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1325 std::mem::forget(self);
1327 }
1328}
1329
1330impl DeviceGetConfigurationDescriptorSizeResponder {
1331 pub fn send(self, mut s: i32, mut size: u16) -> Result<(), fidl::Error> {
1335 let _result = self.send_raw(s, size);
1336 if _result.is_err() {
1337 self.control_handle.shutdown();
1338 }
1339 self.drop_without_shutdown();
1340 _result
1341 }
1342
1343 pub fn send_no_shutdown_on_err(self, mut s: i32, mut size: u16) -> Result<(), fidl::Error> {
1345 let _result = self.send_raw(s, size);
1346 self.drop_without_shutdown();
1347 _result
1348 }
1349
1350 fn send_raw(&self, mut s: i32, mut size: u16) -> Result<(), fidl::Error> {
1351 self.control_handle.inner.send::<DeviceGetConfigurationDescriptorSizeResponse>(
1352 (s, size),
1353 self.tx_id,
1354 0x65912d7d5e3a07c8,
1355 fidl::encoding::DynamicFlags::empty(),
1356 )
1357 }
1358}
1359
1360#[must_use = "FIDL methods require a response to be sent"]
1361#[derive(Debug)]
1362pub struct DeviceGetConfigurationDescriptorResponder {
1363 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1364 tx_id: u32,
1365}
1366
1367impl std::ops::Drop for DeviceGetConfigurationDescriptorResponder {
1371 fn drop(&mut self) {
1372 self.control_handle.shutdown();
1373 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1375 }
1376}
1377
1378impl fidl::endpoints::Responder for DeviceGetConfigurationDescriptorResponder {
1379 type ControlHandle = DeviceControlHandle;
1380
1381 fn control_handle(&self) -> &DeviceControlHandle {
1382 &self.control_handle
1383 }
1384
1385 fn drop_without_shutdown(mut self) {
1386 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1388 std::mem::forget(self);
1390 }
1391}
1392
1393impl DeviceGetConfigurationDescriptorResponder {
1394 pub fn send(self, mut s: i32, mut desc: &[u8]) -> Result<(), fidl::Error> {
1398 let _result = self.send_raw(s, desc);
1399 if _result.is_err() {
1400 self.control_handle.shutdown();
1401 }
1402 self.drop_without_shutdown();
1403 _result
1404 }
1405
1406 pub fn send_no_shutdown_on_err(self, mut s: i32, mut desc: &[u8]) -> Result<(), fidl::Error> {
1408 let _result = self.send_raw(s, desc);
1409 self.drop_without_shutdown();
1410 _result
1411 }
1412
1413 fn send_raw(&self, mut s: i32, mut desc: &[u8]) -> Result<(), fidl::Error> {
1414 self.control_handle.inner.send::<DeviceGetConfigurationDescriptorResponse>(
1415 (s, desc),
1416 self.tx_id,
1417 0x1859a4e4421d2036,
1418 fidl::encoding::DynamicFlags::empty(),
1419 )
1420 }
1421}
1422
1423#[must_use = "FIDL methods require a response to be sent"]
1424#[derive(Debug)]
1425pub struct DeviceGetStringDescriptorResponder {
1426 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1427 tx_id: u32,
1428}
1429
1430impl std::ops::Drop for DeviceGetStringDescriptorResponder {
1434 fn drop(&mut self) {
1435 self.control_handle.shutdown();
1436 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1438 }
1439}
1440
1441impl fidl::endpoints::Responder for DeviceGetStringDescriptorResponder {
1442 type ControlHandle = DeviceControlHandle;
1443
1444 fn control_handle(&self) -> &DeviceControlHandle {
1445 &self.control_handle
1446 }
1447
1448 fn drop_without_shutdown(mut self) {
1449 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1451 std::mem::forget(self);
1453 }
1454}
1455
1456impl DeviceGetStringDescriptorResponder {
1457 pub fn send(
1461 self,
1462 mut s: i32,
1463 mut desc: &str,
1464 mut actual_lang_id: u16,
1465 ) -> Result<(), fidl::Error> {
1466 let _result = self.send_raw(s, desc, actual_lang_id);
1467 if _result.is_err() {
1468 self.control_handle.shutdown();
1469 }
1470 self.drop_without_shutdown();
1471 _result
1472 }
1473
1474 pub fn send_no_shutdown_on_err(
1476 self,
1477 mut s: i32,
1478 mut desc: &str,
1479 mut actual_lang_id: u16,
1480 ) -> Result<(), fidl::Error> {
1481 let _result = self.send_raw(s, desc, actual_lang_id);
1482 self.drop_without_shutdown();
1483 _result
1484 }
1485
1486 fn send_raw(
1487 &self,
1488 mut s: i32,
1489 mut desc: &str,
1490 mut actual_lang_id: u16,
1491 ) -> Result<(), fidl::Error> {
1492 self.control_handle.inner.send::<DeviceGetStringDescriptorResponse>(
1493 (s, desc, actual_lang_id),
1494 self.tx_id,
1495 0x5ff601b3b6891337,
1496 fidl::encoding::DynamicFlags::empty(),
1497 )
1498 }
1499}
1500
1501#[must_use = "FIDL methods require a response to be sent"]
1502#[derive(Debug)]
1503pub struct DeviceSetInterfaceResponder {
1504 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1505 tx_id: u32,
1506}
1507
1508impl std::ops::Drop for DeviceSetInterfaceResponder {
1512 fn drop(&mut self) {
1513 self.control_handle.shutdown();
1514 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1516 }
1517}
1518
1519impl fidl::endpoints::Responder for DeviceSetInterfaceResponder {
1520 type ControlHandle = DeviceControlHandle;
1521
1522 fn control_handle(&self) -> &DeviceControlHandle {
1523 &self.control_handle
1524 }
1525
1526 fn drop_without_shutdown(mut self) {
1527 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1529 std::mem::forget(self);
1531 }
1532}
1533
1534impl DeviceSetInterfaceResponder {
1535 pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
1539 let _result = self.send_raw(s);
1540 if _result.is_err() {
1541 self.control_handle.shutdown();
1542 }
1543 self.drop_without_shutdown();
1544 _result
1545 }
1546
1547 pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
1549 let _result = self.send_raw(s);
1550 self.drop_without_shutdown();
1551 _result
1552 }
1553
1554 fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
1555 self.control_handle.inner.send::<DeviceSetInterfaceResponse>(
1556 (s,),
1557 self.tx_id,
1558 0x45348c50850b641d,
1559 fidl::encoding::DynamicFlags::empty(),
1560 )
1561 }
1562}
1563
1564#[must_use = "FIDL methods require a response to be sent"]
1565#[derive(Debug)]
1566pub struct DeviceGetDeviceIdResponder {
1567 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1568 tx_id: u32,
1569}
1570
1571impl std::ops::Drop for DeviceGetDeviceIdResponder {
1575 fn drop(&mut self) {
1576 self.control_handle.shutdown();
1577 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1579 }
1580}
1581
1582impl fidl::endpoints::Responder for DeviceGetDeviceIdResponder {
1583 type ControlHandle = DeviceControlHandle;
1584
1585 fn control_handle(&self) -> &DeviceControlHandle {
1586 &self.control_handle
1587 }
1588
1589 fn drop_without_shutdown(mut self) {
1590 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1592 std::mem::forget(self);
1594 }
1595}
1596
1597impl DeviceGetDeviceIdResponder {
1598 pub fn send(self, mut device_id: u32) -> Result<(), fidl::Error> {
1602 let _result = self.send_raw(device_id);
1603 if _result.is_err() {
1604 self.control_handle.shutdown();
1605 }
1606 self.drop_without_shutdown();
1607 _result
1608 }
1609
1610 pub fn send_no_shutdown_on_err(self, mut device_id: u32) -> Result<(), fidl::Error> {
1612 let _result = self.send_raw(device_id);
1613 self.drop_without_shutdown();
1614 _result
1615 }
1616
1617 fn send_raw(&self, mut device_id: u32) -> Result<(), fidl::Error> {
1618 self.control_handle.inner.send::<DeviceGetDeviceIdResponse>(
1619 (device_id,),
1620 self.tx_id,
1621 0x34a73eef491c2ce0,
1622 fidl::encoding::DynamicFlags::empty(),
1623 )
1624 }
1625}
1626
1627#[must_use = "FIDL methods require a response to be sent"]
1628#[derive(Debug)]
1629pub struct DeviceGetHubDeviceIdResponder {
1630 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1631 tx_id: u32,
1632}
1633
1634impl std::ops::Drop for DeviceGetHubDeviceIdResponder {
1638 fn drop(&mut self) {
1639 self.control_handle.shutdown();
1640 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1642 }
1643}
1644
1645impl fidl::endpoints::Responder for DeviceGetHubDeviceIdResponder {
1646 type ControlHandle = DeviceControlHandle;
1647
1648 fn control_handle(&self) -> &DeviceControlHandle {
1649 &self.control_handle
1650 }
1651
1652 fn drop_without_shutdown(mut self) {
1653 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1655 std::mem::forget(self);
1657 }
1658}
1659
1660impl DeviceGetHubDeviceIdResponder {
1661 pub fn send(self, mut hub_device_id: u32) -> Result<(), fidl::Error> {
1665 let _result = self.send_raw(hub_device_id);
1666 if _result.is_err() {
1667 self.control_handle.shutdown();
1668 }
1669 self.drop_without_shutdown();
1670 _result
1671 }
1672
1673 pub fn send_no_shutdown_on_err(self, mut hub_device_id: u32) -> Result<(), fidl::Error> {
1675 let _result = self.send_raw(hub_device_id);
1676 self.drop_without_shutdown();
1677 _result
1678 }
1679
1680 fn send_raw(&self, mut hub_device_id: u32) -> Result<(), fidl::Error> {
1681 self.control_handle.inner.send::<DeviceGetHubDeviceIdResponse>(
1682 (hub_device_id,),
1683 self.tx_id,
1684 0xce263c86f7bbbcd,
1685 fidl::encoding::DynamicFlags::empty(),
1686 )
1687 }
1688}
1689
1690#[must_use = "FIDL methods require a response to be sent"]
1691#[derive(Debug)]
1692pub struct DeviceGetConfigurationResponder {
1693 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1694 tx_id: u32,
1695}
1696
1697impl std::ops::Drop for DeviceGetConfigurationResponder {
1701 fn drop(&mut self) {
1702 self.control_handle.shutdown();
1703 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1705 }
1706}
1707
1708impl fidl::endpoints::Responder for DeviceGetConfigurationResponder {
1709 type ControlHandle = DeviceControlHandle;
1710
1711 fn control_handle(&self) -> &DeviceControlHandle {
1712 &self.control_handle
1713 }
1714
1715 fn drop_without_shutdown(mut self) {
1716 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1718 std::mem::forget(self);
1720 }
1721}
1722
1723impl DeviceGetConfigurationResponder {
1724 pub fn send(self, mut configuration: u8) -> Result<(), fidl::Error> {
1728 let _result = self.send_raw(configuration);
1729 if _result.is_err() {
1730 self.control_handle.shutdown();
1731 }
1732 self.drop_without_shutdown();
1733 _result
1734 }
1735
1736 pub fn send_no_shutdown_on_err(self, mut configuration: u8) -> Result<(), fidl::Error> {
1738 let _result = self.send_raw(configuration);
1739 self.drop_without_shutdown();
1740 _result
1741 }
1742
1743 fn send_raw(&self, mut configuration: u8) -> Result<(), fidl::Error> {
1744 self.control_handle.inner.send::<DeviceGetConfigurationResponse>(
1745 (configuration,),
1746 self.tx_id,
1747 0x73f644382a2335fd,
1748 fidl::encoding::DynamicFlags::empty(),
1749 )
1750 }
1751}
1752
1753#[must_use = "FIDL methods require a response to be sent"]
1754#[derive(Debug)]
1755pub struct DeviceSetConfigurationResponder {
1756 control_handle: std::mem::ManuallyDrop<DeviceControlHandle>,
1757 tx_id: u32,
1758}
1759
1760impl std::ops::Drop for DeviceSetConfigurationResponder {
1764 fn drop(&mut self) {
1765 self.control_handle.shutdown();
1766 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1768 }
1769}
1770
1771impl fidl::endpoints::Responder for DeviceSetConfigurationResponder {
1772 type ControlHandle = DeviceControlHandle;
1773
1774 fn control_handle(&self) -> &DeviceControlHandle {
1775 &self.control_handle
1776 }
1777
1778 fn drop_without_shutdown(mut self) {
1779 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1781 std::mem::forget(self);
1783 }
1784}
1785
1786impl DeviceSetConfigurationResponder {
1787 pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
1791 let _result = self.send_raw(s);
1792 if _result.is_err() {
1793 self.control_handle.shutdown();
1794 }
1795 self.drop_without_shutdown();
1796 _result
1797 }
1798
1799 pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
1801 let _result = self.send_raw(s);
1802 self.drop_without_shutdown();
1803 _result
1804 }
1805
1806 fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
1807 self.control_handle.inner.send::<DeviceSetConfigurationResponse>(
1808 (s,),
1809 self.tx_id,
1810 0x12bf6e43b045ee9d,
1811 fidl::encoding::DynamicFlags::empty(),
1812 )
1813 }
1814}
1815
1816#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
1817pub struct ServiceMarker;
1818
1819#[cfg(target_os = "fuchsia")]
1820impl fidl::endpoints::ServiceMarker for ServiceMarker {
1821 type Proxy = ServiceProxy;
1822 type Request = ServiceRequest;
1823 const SERVICE_NAME: &'static str = "fuchsia.hardware.usb.device.Service";
1824}
1825
1826#[cfg(target_os = "fuchsia")]
1829pub enum ServiceRequest {
1830 Device(DeviceRequestStream),
1831}
1832
1833#[cfg(target_os = "fuchsia")]
1834impl fidl::endpoints::ServiceRequest for ServiceRequest {
1835 type Service = ServiceMarker;
1836
1837 fn dispatch(name: &str, _channel: fidl::AsyncChannel) -> Self {
1838 match name {
1839 "device" => Self::Device(
1840 <DeviceRequestStream as fidl::endpoints::RequestStream>::from_channel(_channel),
1841 ),
1842 _ => panic!("no such member protocol name for service Service"),
1843 }
1844 }
1845
1846 fn member_names() -> &'static [&'static str] {
1847 &["device"]
1848 }
1849}
1850#[cfg(target_os = "fuchsia")]
1851pub struct ServiceProxy(#[allow(dead_code)] Box<dyn fidl::endpoints::MemberOpener>);
1852
1853#[cfg(target_os = "fuchsia")]
1854impl fidl::endpoints::ServiceProxy for ServiceProxy {
1855 type Service = ServiceMarker;
1856
1857 fn from_member_opener(opener: Box<dyn fidl::endpoints::MemberOpener>) -> Self {
1858 Self(opener)
1859 }
1860}
1861
1862#[cfg(target_os = "fuchsia")]
1863impl ServiceProxy {
1864 pub fn connect_to_device(&self) -> Result<DeviceProxy, fidl::Error> {
1865 let (proxy, server_end) = fidl::endpoints::create_proxy::<DeviceMarker>();
1866 self.connect_channel_to_device(server_end)?;
1867 Ok(proxy)
1868 }
1869
1870 pub fn connect_to_device_sync(&self) -> Result<DeviceSynchronousProxy, fidl::Error> {
1873 let (proxy, server_end) = fidl::endpoints::create_sync_proxy::<DeviceMarker>();
1874 self.connect_channel_to_device(server_end)?;
1875 Ok(proxy)
1876 }
1877
1878 pub fn connect_channel_to_device(
1881 &self,
1882 server_end: fidl::endpoints::ServerEnd<DeviceMarker>,
1883 ) -> Result<(), fidl::Error> {
1884 self.0.open_member("device", server_end.into_channel())
1885 }
1886
1887 pub fn instance_name(&self) -> &str {
1888 self.0.instance_name()
1889 }
1890}
1891
1892mod internal {
1893 use super::*;
1894}