fidl_fuchsia_wlan_product_deprecatedconfiguration/
fidl_fuchsia_wlan_product_deprecatedconfiguration.rs1#![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_wlan_product_deprecatedconfiguration_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct DeprecatedConfiguratorMarker;
16
17impl fidl::endpoints::ProtocolMarker for DeprecatedConfiguratorMarker {
18 type Proxy = DeprecatedConfiguratorProxy;
19 type RequestStream = DeprecatedConfiguratorRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = DeprecatedConfiguratorSynchronousProxy;
22
23 const DEBUG_NAME: &'static str =
24 "fuchsia.wlan.product.deprecatedconfiguration.DeprecatedConfigurator";
25}
26impl fidl::endpoints::DiscoverableProtocolMarker for DeprecatedConfiguratorMarker {}
27pub type DeprecatedConfiguratorSuggestAccessPointMacAddressResult =
28 Result<(), SuggestMacAddressError>;
29
30pub trait DeprecatedConfiguratorProxyInterface: Send + Sync {
31 type SuggestAccessPointMacAddressResponseFut: std::future::Future<
32 Output = Result<DeprecatedConfiguratorSuggestAccessPointMacAddressResult, fidl::Error>,
33 > + Send;
34 fn r#suggest_access_point_mac_address(
35 &self,
36 mac: &fidl_fuchsia_net::MacAddress,
37 ) -> Self::SuggestAccessPointMacAddressResponseFut;
38}
39#[derive(Debug)]
40#[cfg(target_os = "fuchsia")]
41pub struct DeprecatedConfiguratorSynchronousProxy {
42 client: fidl::client::sync::Client,
43}
44
45#[cfg(target_os = "fuchsia")]
46impl fidl::endpoints::SynchronousProxy for DeprecatedConfiguratorSynchronousProxy {
47 type Proxy = DeprecatedConfiguratorProxy;
48 type Protocol = DeprecatedConfiguratorMarker;
49
50 fn from_channel(inner: fidl::Channel) -> Self {
51 Self::new(inner)
52 }
53
54 fn into_channel(self) -> fidl::Channel {
55 self.client.into_channel()
56 }
57
58 fn as_channel(&self) -> &fidl::Channel {
59 self.client.as_channel()
60 }
61}
62
63#[cfg(target_os = "fuchsia")]
64impl DeprecatedConfiguratorSynchronousProxy {
65 pub fn new(channel: fidl::Channel) -> Self {
66 let protocol_name =
67 <DeprecatedConfiguratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
68 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
69 }
70
71 pub fn into_channel(self) -> fidl::Channel {
72 self.client.into_channel()
73 }
74
75 pub fn wait_for_event(
78 &self,
79 deadline: zx::MonotonicInstant,
80 ) -> Result<DeprecatedConfiguratorEvent, fidl::Error> {
81 DeprecatedConfiguratorEvent::decode(self.client.wait_for_event(deadline)?)
82 }
83
84 pub fn r#suggest_access_point_mac_address(
87 &self,
88 mut mac: &fidl_fuchsia_net::MacAddress,
89 ___deadline: zx::MonotonicInstant,
90 ) -> Result<DeprecatedConfiguratorSuggestAccessPointMacAddressResult, fidl::Error> {
91 let _response = self.client.send_query::<
92 DeprecatedConfiguratorSuggestAccessPointMacAddressRequest,
93 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, SuggestMacAddressError>,
94 >(
95 (mac,),
96 0x4dedf25064024f8c,
97 fidl::encoding::DynamicFlags::empty(),
98 ___deadline,
99 )?;
100 Ok(_response.map(|x| x))
101 }
102}
103
104#[cfg(target_os = "fuchsia")]
105impl From<DeprecatedConfiguratorSynchronousProxy> for zx::Handle {
106 fn from(value: DeprecatedConfiguratorSynchronousProxy) -> Self {
107 value.into_channel().into()
108 }
109}
110
111#[cfg(target_os = "fuchsia")]
112impl From<fidl::Channel> for DeprecatedConfiguratorSynchronousProxy {
113 fn from(value: fidl::Channel) -> Self {
114 Self::new(value)
115 }
116}
117
118#[derive(Debug, Clone)]
119pub struct DeprecatedConfiguratorProxy {
120 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
121}
122
123impl fidl::endpoints::Proxy for DeprecatedConfiguratorProxy {
124 type Protocol = DeprecatedConfiguratorMarker;
125
126 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
127 Self::new(inner)
128 }
129
130 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
131 self.client.into_channel().map_err(|client| Self { client })
132 }
133
134 fn as_channel(&self) -> &::fidl::AsyncChannel {
135 self.client.as_channel()
136 }
137}
138
139impl DeprecatedConfiguratorProxy {
140 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
142 let protocol_name =
143 <DeprecatedConfiguratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
144 Self { client: fidl::client::Client::new(channel, protocol_name) }
145 }
146
147 pub fn take_event_stream(&self) -> DeprecatedConfiguratorEventStream {
153 DeprecatedConfiguratorEventStream { event_receiver: self.client.take_event_receiver() }
154 }
155
156 pub fn r#suggest_access_point_mac_address(
159 &self,
160 mut mac: &fidl_fuchsia_net::MacAddress,
161 ) -> fidl::client::QueryResponseFut<
162 DeprecatedConfiguratorSuggestAccessPointMacAddressResult,
163 fidl::encoding::DefaultFuchsiaResourceDialect,
164 > {
165 DeprecatedConfiguratorProxyInterface::r#suggest_access_point_mac_address(self, mac)
166 }
167}
168
169impl DeprecatedConfiguratorProxyInterface for DeprecatedConfiguratorProxy {
170 type SuggestAccessPointMacAddressResponseFut = fidl::client::QueryResponseFut<
171 DeprecatedConfiguratorSuggestAccessPointMacAddressResult,
172 fidl::encoding::DefaultFuchsiaResourceDialect,
173 >;
174 fn r#suggest_access_point_mac_address(
175 &self,
176 mut mac: &fidl_fuchsia_net::MacAddress,
177 ) -> Self::SuggestAccessPointMacAddressResponseFut {
178 fn _decode(
179 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
180 ) -> Result<DeprecatedConfiguratorSuggestAccessPointMacAddressResult, fidl::Error> {
181 let _response = fidl::client::decode_transaction_body::<
182 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, SuggestMacAddressError>,
183 fidl::encoding::DefaultFuchsiaResourceDialect,
184 0x4dedf25064024f8c,
185 >(_buf?)?;
186 Ok(_response.map(|x| x))
187 }
188 self.client.send_query_and_decode::<
189 DeprecatedConfiguratorSuggestAccessPointMacAddressRequest,
190 DeprecatedConfiguratorSuggestAccessPointMacAddressResult,
191 >(
192 (mac,),
193 0x4dedf25064024f8c,
194 fidl::encoding::DynamicFlags::empty(),
195 _decode,
196 )
197 }
198}
199
200pub struct DeprecatedConfiguratorEventStream {
201 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
202}
203
204impl std::marker::Unpin for DeprecatedConfiguratorEventStream {}
205
206impl futures::stream::FusedStream for DeprecatedConfiguratorEventStream {
207 fn is_terminated(&self) -> bool {
208 self.event_receiver.is_terminated()
209 }
210}
211
212impl futures::Stream for DeprecatedConfiguratorEventStream {
213 type Item = Result<DeprecatedConfiguratorEvent, fidl::Error>;
214
215 fn poll_next(
216 mut self: std::pin::Pin<&mut Self>,
217 cx: &mut std::task::Context<'_>,
218 ) -> std::task::Poll<Option<Self::Item>> {
219 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
220 &mut self.event_receiver,
221 cx
222 )?) {
223 Some(buf) => std::task::Poll::Ready(Some(DeprecatedConfiguratorEvent::decode(buf))),
224 None => std::task::Poll::Ready(None),
225 }
226 }
227}
228
229#[derive(Debug)]
230pub enum DeprecatedConfiguratorEvent {}
231
232impl DeprecatedConfiguratorEvent {
233 fn decode(
235 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
236 ) -> Result<DeprecatedConfiguratorEvent, fidl::Error> {
237 let (bytes, _handles) = buf.split_mut();
238 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
239 debug_assert_eq!(tx_header.tx_id, 0);
240 match tx_header.ordinal {
241 _ => Err(fidl::Error::UnknownOrdinal {
242 ordinal: tx_header.ordinal,
243 protocol_name:
244 <DeprecatedConfiguratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
245 }),
246 }
247 }
248}
249
250pub struct DeprecatedConfiguratorRequestStream {
252 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
253 is_terminated: bool,
254}
255
256impl std::marker::Unpin for DeprecatedConfiguratorRequestStream {}
257
258impl futures::stream::FusedStream for DeprecatedConfiguratorRequestStream {
259 fn is_terminated(&self) -> bool {
260 self.is_terminated
261 }
262}
263
264impl fidl::endpoints::RequestStream for DeprecatedConfiguratorRequestStream {
265 type Protocol = DeprecatedConfiguratorMarker;
266 type ControlHandle = DeprecatedConfiguratorControlHandle;
267
268 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
269 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
270 }
271
272 fn control_handle(&self) -> Self::ControlHandle {
273 DeprecatedConfiguratorControlHandle { inner: self.inner.clone() }
274 }
275
276 fn into_inner(
277 self,
278 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
279 {
280 (self.inner, self.is_terminated)
281 }
282
283 fn from_inner(
284 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
285 is_terminated: bool,
286 ) -> Self {
287 Self { inner, is_terminated }
288 }
289}
290
291impl futures::Stream for DeprecatedConfiguratorRequestStream {
292 type Item = Result<DeprecatedConfiguratorRequest, fidl::Error>;
293
294 fn poll_next(
295 mut self: std::pin::Pin<&mut Self>,
296 cx: &mut std::task::Context<'_>,
297 ) -> std::task::Poll<Option<Self::Item>> {
298 let this = &mut *self;
299 if this.inner.check_shutdown(cx) {
300 this.is_terminated = true;
301 return std::task::Poll::Ready(None);
302 }
303 if this.is_terminated {
304 panic!("polled DeprecatedConfiguratorRequestStream after completion");
305 }
306 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
307 |bytes, handles| {
308 match this.inner.channel().read_etc(cx, bytes, handles) {
309 std::task::Poll::Ready(Ok(())) => {}
310 std::task::Poll::Pending => return std::task::Poll::Pending,
311 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
312 this.is_terminated = true;
313 return std::task::Poll::Ready(None);
314 }
315 std::task::Poll::Ready(Err(e)) => {
316 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
317 e.into(),
318 ))))
319 }
320 }
321
322 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
324
325 std::task::Poll::Ready(Some(match header.ordinal {
326 0x4dedf25064024f8c => {
327 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
328 let mut req = fidl::new_empty!(DeprecatedConfiguratorSuggestAccessPointMacAddressRequest, fidl::encoding::DefaultFuchsiaResourceDialect);
329 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeprecatedConfiguratorSuggestAccessPointMacAddressRequest>(&header, _body_bytes, handles, &mut req)?;
330 let control_handle = DeprecatedConfiguratorControlHandle {
331 inner: this.inner.clone(),
332 };
333 Ok(DeprecatedConfiguratorRequest::SuggestAccessPointMacAddress {mac: req.mac,
334
335 responder: DeprecatedConfiguratorSuggestAccessPointMacAddressResponder {
336 control_handle: std::mem::ManuallyDrop::new(control_handle),
337 tx_id: header.tx_id,
338 },
339 })
340 }
341 _ => Err(fidl::Error::UnknownOrdinal {
342 ordinal: header.ordinal,
343 protocol_name: <DeprecatedConfiguratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
344 }),
345 }))
346 },
347 )
348 }
349}
350
351#[derive(Debug)]
353pub enum DeprecatedConfiguratorRequest {
354 SuggestAccessPointMacAddress {
357 mac: fidl_fuchsia_net::MacAddress,
358 responder: DeprecatedConfiguratorSuggestAccessPointMacAddressResponder,
359 },
360}
361
362impl DeprecatedConfiguratorRequest {
363 #[allow(irrefutable_let_patterns)]
364 pub fn into_suggest_access_point_mac_address(
365 self,
366 ) -> Option<(
367 fidl_fuchsia_net::MacAddress,
368 DeprecatedConfiguratorSuggestAccessPointMacAddressResponder,
369 )> {
370 if let DeprecatedConfiguratorRequest::SuggestAccessPointMacAddress { mac, responder } = self
371 {
372 Some((mac, responder))
373 } else {
374 None
375 }
376 }
377
378 pub fn method_name(&self) -> &'static str {
380 match *self {
381 DeprecatedConfiguratorRequest::SuggestAccessPointMacAddress { .. } => {
382 "suggest_access_point_mac_address"
383 }
384 }
385 }
386}
387
388#[derive(Debug, Clone)]
389pub struct DeprecatedConfiguratorControlHandle {
390 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
391}
392
393impl fidl::endpoints::ControlHandle for DeprecatedConfiguratorControlHandle {
394 fn shutdown(&self) {
395 self.inner.shutdown()
396 }
397 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
398 self.inner.shutdown_with_epitaph(status)
399 }
400
401 fn is_closed(&self) -> bool {
402 self.inner.channel().is_closed()
403 }
404 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
405 self.inner.channel().on_closed()
406 }
407
408 #[cfg(target_os = "fuchsia")]
409 fn signal_peer(
410 &self,
411 clear_mask: zx::Signals,
412 set_mask: zx::Signals,
413 ) -> Result<(), zx_status::Status> {
414 use fidl::Peered;
415 self.inner.channel().signal_peer(clear_mask, set_mask)
416 }
417}
418
419impl DeprecatedConfiguratorControlHandle {}
420
421#[must_use = "FIDL methods require a response to be sent"]
422#[derive(Debug)]
423pub struct DeprecatedConfiguratorSuggestAccessPointMacAddressResponder {
424 control_handle: std::mem::ManuallyDrop<DeprecatedConfiguratorControlHandle>,
425 tx_id: u32,
426}
427
428impl std::ops::Drop for DeprecatedConfiguratorSuggestAccessPointMacAddressResponder {
432 fn drop(&mut self) {
433 self.control_handle.shutdown();
434 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
436 }
437}
438
439impl fidl::endpoints::Responder for DeprecatedConfiguratorSuggestAccessPointMacAddressResponder {
440 type ControlHandle = DeprecatedConfiguratorControlHandle;
441
442 fn control_handle(&self) -> &DeprecatedConfiguratorControlHandle {
443 &self.control_handle
444 }
445
446 fn drop_without_shutdown(mut self) {
447 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
449 std::mem::forget(self);
451 }
452}
453
454impl DeprecatedConfiguratorSuggestAccessPointMacAddressResponder {
455 pub fn send(self, mut result: Result<(), SuggestMacAddressError>) -> Result<(), fidl::Error> {
459 let _result = self.send_raw(result);
460 if _result.is_err() {
461 self.control_handle.shutdown();
462 }
463 self.drop_without_shutdown();
464 _result
465 }
466
467 pub fn send_no_shutdown_on_err(
469 self,
470 mut result: Result<(), SuggestMacAddressError>,
471 ) -> Result<(), fidl::Error> {
472 let _result = self.send_raw(result);
473 self.drop_without_shutdown();
474 _result
475 }
476
477 fn send_raw(&self, mut result: Result<(), SuggestMacAddressError>) -> Result<(), fidl::Error> {
478 self.control_handle.inner.send::<fidl::encoding::ResultType<
479 fidl::encoding::EmptyStruct,
480 SuggestMacAddressError,
481 >>(
482 result,
483 self.tx_id,
484 0x4dedf25064024f8c,
485 fidl::encoding::DynamicFlags::empty(),
486 )
487 }
488}
489
490mod internal {
491 use super::*;
492}