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_scheduler_deprecated_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct ProfileProviderGetCpuAffinityProfileResponse {
16 pub status: i32,
17 pub profile: Option<fidl::Profile>,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
21 for ProfileProviderGetCpuAffinityProfileResponse
22{
23}
24
25#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
26pub struct ProfileProviderGetDeadlineProfileResponse {
27 pub status: i32,
28 pub profile: Option<fidl::Profile>,
29}
30
31impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
32 for ProfileProviderGetDeadlineProfileResponse
33{
34}
35
36#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
37pub struct ProfileProviderGetProfileResponse {
38 pub status: i32,
39 pub profile: Option<fidl::Profile>,
40}
41
42impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
43 for ProfileProviderGetProfileResponse
44{
45}
46
47#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
48pub struct ProfileProviderSetProfileByRoleRequest {
49 pub handle: fidl::Handle,
50 pub role: String,
51}
52
53impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
54 for ProfileProviderSetProfileByRoleRequest
55{
56}
57
58#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
59pub struct ProfileProviderMarker;
60
61impl fidl::endpoints::ProtocolMarker for ProfileProviderMarker {
62 type Proxy = ProfileProviderProxy;
63 type RequestStream = ProfileProviderRequestStream;
64 #[cfg(target_os = "fuchsia")]
65 type SynchronousProxy = ProfileProviderSynchronousProxy;
66
67 const DEBUG_NAME: &'static str = "fuchsia.scheduler.deprecated.ProfileProvider";
68}
69impl fidl::endpoints::DiscoverableProtocolMarker for ProfileProviderMarker {}
70
71pub trait ProfileProviderProxyInterface: Send + Sync {
72 type GetProfileResponseFut: std::future::Future<Output = Result<(i32, Option<fidl::Profile>), fidl::Error>>
73 + Send;
74 fn r#get_profile(&self, priority: u32, name: &str) -> Self::GetProfileResponseFut;
75 type GetDeadlineProfileResponseFut: std::future::Future<Output = Result<(i32, Option<fidl::Profile>), fidl::Error>>
76 + Send;
77 fn r#get_deadline_profile(
78 &self,
79 capacity: u64,
80 deadline: u64,
81 period: u64,
82 name: &str,
83 ) -> Self::GetDeadlineProfileResponseFut;
84 type GetCpuAffinityProfileResponseFut: std::future::Future<Output = Result<(i32, Option<fidl::Profile>), fidl::Error>>
85 + Send;
86 fn r#get_cpu_affinity_profile(
87 &self,
88 cpu_mask: &CpuSet,
89 ) -> Self::GetCpuAffinityProfileResponseFut;
90 type SetProfileByRoleResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
91 fn r#set_profile_by_role(
92 &self,
93 handle: fidl::Handle,
94 role: &str,
95 ) -> Self::SetProfileByRoleResponseFut;
96}
97#[derive(Debug)]
98#[cfg(target_os = "fuchsia")]
99pub struct ProfileProviderSynchronousProxy {
100 client: fidl::client::sync::Client,
101}
102
103#[cfg(target_os = "fuchsia")]
104impl fidl::endpoints::SynchronousProxy for ProfileProviderSynchronousProxy {
105 type Proxy = ProfileProviderProxy;
106 type Protocol = ProfileProviderMarker;
107
108 fn from_channel(inner: fidl::Channel) -> Self {
109 Self::new(inner)
110 }
111
112 fn into_channel(self) -> fidl::Channel {
113 self.client.into_channel()
114 }
115
116 fn as_channel(&self) -> &fidl::Channel {
117 self.client.as_channel()
118 }
119}
120
121#[cfg(target_os = "fuchsia")]
122impl ProfileProviderSynchronousProxy {
123 pub fn new(channel: fidl::Channel) -> Self {
124 let protocol_name = <ProfileProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
125 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
126 }
127
128 pub fn into_channel(self) -> fidl::Channel {
129 self.client.into_channel()
130 }
131
132 pub fn wait_for_event(
135 &self,
136 deadline: zx::MonotonicInstant,
137 ) -> Result<ProfileProviderEvent, fidl::Error> {
138 ProfileProviderEvent::decode(self.client.wait_for_event(deadline)?)
139 }
140
141 pub fn r#get_profile(
146 &self,
147 mut priority: u32,
148 mut name: &str,
149 ___deadline: zx::MonotonicInstant,
150 ) -> Result<(i32, Option<fidl::Profile>), fidl::Error> {
151 let _response = self
152 .client
153 .send_query::<ProfileProviderGetProfileRequest, ProfileProviderGetProfileResponse>(
154 (priority, name),
155 0x686b544f3d19d679,
156 fidl::encoding::DynamicFlags::empty(),
157 ___deadline,
158 )?;
159 Ok((_response.status, _response.profile))
160 }
161
162 pub fn r#get_deadline_profile(
167 &self,
168 mut capacity: u64,
169 mut deadline: u64,
170 mut period: u64,
171 mut name: &str,
172 ___deadline: zx::MonotonicInstant,
173 ) -> Result<(i32, Option<fidl::Profile>), fidl::Error> {
174 let _response = self.client.send_query::<
175 ProfileProviderGetDeadlineProfileRequest,
176 ProfileProviderGetDeadlineProfileResponse,
177 >(
178 (capacity, deadline, period, name,),
179 0x62404c816133daee,
180 fidl::encoding::DynamicFlags::empty(),
181 ___deadline,
182 )?;
183 Ok((_response.status, _response.profile))
184 }
185
186 pub fn r#get_cpu_affinity_profile(
191 &self,
192 mut cpu_mask: &CpuSet,
193 ___deadline: zx::MonotonicInstant,
194 ) -> Result<(i32, Option<fidl::Profile>), fidl::Error> {
195 let _response = self.client.send_query::<
196 ProfileProviderGetCpuAffinityProfileRequest,
197 ProfileProviderGetCpuAffinityProfileResponse,
198 >(
199 (cpu_mask,),
200 0x36cc6d51ff82ee04,
201 fidl::encoding::DynamicFlags::empty(),
202 ___deadline,
203 )?;
204 Ok((_response.status, _response.profile))
205 }
206
207 pub fn r#set_profile_by_role(
211 &self,
212 mut handle: fidl::Handle,
213 mut role: &str,
214 ___deadline: zx::MonotonicInstant,
215 ) -> Result<i32, fidl::Error> {
216 let _response = self.client.send_query::<
217 ProfileProviderSetProfileByRoleRequest,
218 ProfileProviderSetProfileByRoleResponse,
219 >(
220 (handle, role,),
221 0x31c4d936c0009564,
222 fidl::encoding::DynamicFlags::empty(),
223 ___deadline,
224 )?;
225 Ok(_response.status)
226 }
227}
228
229#[cfg(target_os = "fuchsia")]
230impl From<ProfileProviderSynchronousProxy> for zx::Handle {
231 fn from(value: ProfileProviderSynchronousProxy) -> Self {
232 value.into_channel().into()
233 }
234}
235
236#[cfg(target_os = "fuchsia")]
237impl From<fidl::Channel> for ProfileProviderSynchronousProxy {
238 fn from(value: fidl::Channel) -> Self {
239 Self::new(value)
240 }
241}
242
243#[derive(Debug, Clone)]
244pub struct ProfileProviderProxy {
245 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
246}
247
248impl fidl::endpoints::Proxy for ProfileProviderProxy {
249 type Protocol = ProfileProviderMarker;
250
251 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
252 Self::new(inner)
253 }
254
255 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
256 self.client.into_channel().map_err(|client| Self { client })
257 }
258
259 fn as_channel(&self) -> &::fidl::AsyncChannel {
260 self.client.as_channel()
261 }
262}
263
264impl ProfileProviderProxy {
265 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
267 let protocol_name = <ProfileProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
268 Self { client: fidl::client::Client::new(channel, protocol_name) }
269 }
270
271 pub fn take_event_stream(&self) -> ProfileProviderEventStream {
277 ProfileProviderEventStream { event_receiver: self.client.take_event_receiver() }
278 }
279
280 pub fn r#get_profile(
285 &self,
286 mut priority: u32,
287 mut name: &str,
288 ) -> fidl::client::QueryResponseFut<
289 (i32, Option<fidl::Profile>),
290 fidl::encoding::DefaultFuchsiaResourceDialect,
291 > {
292 ProfileProviderProxyInterface::r#get_profile(self, priority, name)
293 }
294
295 pub fn r#get_deadline_profile(
300 &self,
301 mut capacity: u64,
302 mut deadline: u64,
303 mut period: u64,
304 mut name: &str,
305 ) -> fidl::client::QueryResponseFut<
306 (i32, Option<fidl::Profile>),
307 fidl::encoding::DefaultFuchsiaResourceDialect,
308 > {
309 ProfileProviderProxyInterface::r#get_deadline_profile(
310 self, capacity, deadline, period, name,
311 )
312 }
313
314 pub fn r#get_cpu_affinity_profile(
319 &self,
320 mut cpu_mask: &CpuSet,
321 ) -> fidl::client::QueryResponseFut<
322 (i32, Option<fidl::Profile>),
323 fidl::encoding::DefaultFuchsiaResourceDialect,
324 > {
325 ProfileProviderProxyInterface::r#get_cpu_affinity_profile(self, cpu_mask)
326 }
327
328 pub fn r#set_profile_by_role(
332 &self,
333 mut handle: fidl::Handle,
334 mut role: &str,
335 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
336 ProfileProviderProxyInterface::r#set_profile_by_role(self, handle, role)
337 }
338}
339
340impl ProfileProviderProxyInterface for ProfileProviderProxy {
341 type GetProfileResponseFut = fidl::client::QueryResponseFut<
342 (i32, Option<fidl::Profile>),
343 fidl::encoding::DefaultFuchsiaResourceDialect,
344 >;
345 fn r#get_profile(&self, mut priority: u32, mut name: &str) -> Self::GetProfileResponseFut {
346 fn _decode(
347 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
348 ) -> Result<(i32, Option<fidl::Profile>), fidl::Error> {
349 let _response = fidl::client::decode_transaction_body::<
350 ProfileProviderGetProfileResponse,
351 fidl::encoding::DefaultFuchsiaResourceDialect,
352 0x686b544f3d19d679,
353 >(_buf?)?;
354 Ok((_response.status, _response.profile))
355 }
356 self.client.send_query_and_decode::<
357 ProfileProviderGetProfileRequest,
358 (i32, Option<fidl::Profile>),
359 >(
360 (priority, name,),
361 0x686b544f3d19d679,
362 fidl::encoding::DynamicFlags::empty(),
363 _decode,
364 )
365 }
366
367 type GetDeadlineProfileResponseFut = fidl::client::QueryResponseFut<
368 (i32, Option<fidl::Profile>),
369 fidl::encoding::DefaultFuchsiaResourceDialect,
370 >;
371 fn r#get_deadline_profile(
372 &self,
373 mut capacity: u64,
374 mut deadline: u64,
375 mut period: u64,
376 mut name: &str,
377 ) -> Self::GetDeadlineProfileResponseFut {
378 fn _decode(
379 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
380 ) -> Result<(i32, Option<fidl::Profile>), fidl::Error> {
381 let _response = fidl::client::decode_transaction_body::<
382 ProfileProviderGetDeadlineProfileResponse,
383 fidl::encoding::DefaultFuchsiaResourceDialect,
384 0x62404c816133daee,
385 >(_buf?)?;
386 Ok((_response.status, _response.profile))
387 }
388 self.client.send_query_and_decode::<
389 ProfileProviderGetDeadlineProfileRequest,
390 (i32, Option<fidl::Profile>),
391 >(
392 (capacity, deadline, period, name,),
393 0x62404c816133daee,
394 fidl::encoding::DynamicFlags::empty(),
395 _decode,
396 )
397 }
398
399 type GetCpuAffinityProfileResponseFut = fidl::client::QueryResponseFut<
400 (i32, Option<fidl::Profile>),
401 fidl::encoding::DefaultFuchsiaResourceDialect,
402 >;
403 fn r#get_cpu_affinity_profile(
404 &self,
405 mut cpu_mask: &CpuSet,
406 ) -> Self::GetCpuAffinityProfileResponseFut {
407 fn _decode(
408 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
409 ) -> Result<(i32, Option<fidl::Profile>), fidl::Error> {
410 let _response = fidl::client::decode_transaction_body::<
411 ProfileProviderGetCpuAffinityProfileResponse,
412 fidl::encoding::DefaultFuchsiaResourceDialect,
413 0x36cc6d51ff82ee04,
414 >(_buf?)?;
415 Ok((_response.status, _response.profile))
416 }
417 self.client.send_query_and_decode::<
418 ProfileProviderGetCpuAffinityProfileRequest,
419 (i32, Option<fidl::Profile>),
420 >(
421 (cpu_mask,),
422 0x36cc6d51ff82ee04,
423 fidl::encoding::DynamicFlags::empty(),
424 _decode,
425 )
426 }
427
428 type SetProfileByRoleResponseFut =
429 fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
430 fn r#set_profile_by_role(
431 &self,
432 mut handle: fidl::Handle,
433 mut role: &str,
434 ) -> Self::SetProfileByRoleResponseFut {
435 fn _decode(
436 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
437 ) -> Result<i32, fidl::Error> {
438 let _response = fidl::client::decode_transaction_body::<
439 ProfileProviderSetProfileByRoleResponse,
440 fidl::encoding::DefaultFuchsiaResourceDialect,
441 0x31c4d936c0009564,
442 >(_buf?)?;
443 Ok(_response.status)
444 }
445 self.client.send_query_and_decode::<ProfileProviderSetProfileByRoleRequest, i32>(
446 (handle, role),
447 0x31c4d936c0009564,
448 fidl::encoding::DynamicFlags::empty(),
449 _decode,
450 )
451 }
452}
453
454pub struct ProfileProviderEventStream {
455 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
456}
457
458impl std::marker::Unpin for ProfileProviderEventStream {}
459
460impl futures::stream::FusedStream for ProfileProviderEventStream {
461 fn is_terminated(&self) -> bool {
462 self.event_receiver.is_terminated()
463 }
464}
465
466impl futures::Stream for ProfileProviderEventStream {
467 type Item = Result<ProfileProviderEvent, fidl::Error>;
468
469 fn poll_next(
470 mut self: std::pin::Pin<&mut Self>,
471 cx: &mut std::task::Context<'_>,
472 ) -> std::task::Poll<Option<Self::Item>> {
473 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
474 &mut self.event_receiver,
475 cx
476 )?) {
477 Some(buf) => std::task::Poll::Ready(Some(ProfileProviderEvent::decode(buf))),
478 None => std::task::Poll::Ready(None),
479 }
480 }
481}
482
483#[derive(Debug)]
484pub enum ProfileProviderEvent {}
485
486impl ProfileProviderEvent {
487 fn decode(
489 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
490 ) -> Result<ProfileProviderEvent, fidl::Error> {
491 let (bytes, _handles) = buf.split_mut();
492 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
493 debug_assert_eq!(tx_header.tx_id, 0);
494 match tx_header.ordinal {
495 _ => Err(fidl::Error::UnknownOrdinal {
496 ordinal: tx_header.ordinal,
497 protocol_name:
498 <ProfileProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
499 }),
500 }
501 }
502}
503
504pub struct ProfileProviderRequestStream {
506 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
507 is_terminated: bool,
508}
509
510impl std::marker::Unpin for ProfileProviderRequestStream {}
511
512impl futures::stream::FusedStream for ProfileProviderRequestStream {
513 fn is_terminated(&self) -> bool {
514 self.is_terminated
515 }
516}
517
518impl fidl::endpoints::RequestStream for ProfileProviderRequestStream {
519 type Protocol = ProfileProviderMarker;
520 type ControlHandle = ProfileProviderControlHandle;
521
522 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
523 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
524 }
525
526 fn control_handle(&self) -> Self::ControlHandle {
527 ProfileProviderControlHandle { inner: self.inner.clone() }
528 }
529
530 fn into_inner(
531 self,
532 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
533 {
534 (self.inner, self.is_terminated)
535 }
536
537 fn from_inner(
538 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
539 is_terminated: bool,
540 ) -> Self {
541 Self { inner, is_terminated }
542 }
543}
544
545impl futures::Stream for ProfileProviderRequestStream {
546 type Item = Result<ProfileProviderRequest, fidl::Error>;
547
548 fn poll_next(
549 mut self: std::pin::Pin<&mut Self>,
550 cx: &mut std::task::Context<'_>,
551 ) -> std::task::Poll<Option<Self::Item>> {
552 let this = &mut *self;
553 if this.inner.check_shutdown(cx) {
554 this.is_terminated = true;
555 return std::task::Poll::Ready(None);
556 }
557 if this.is_terminated {
558 panic!("polled ProfileProviderRequestStream after completion");
559 }
560 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
561 |bytes, handles| {
562 match this.inner.channel().read_etc(cx, bytes, handles) {
563 std::task::Poll::Ready(Ok(())) => {}
564 std::task::Poll::Pending => return std::task::Poll::Pending,
565 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
566 this.is_terminated = true;
567 return std::task::Poll::Ready(None);
568 }
569 std::task::Poll::Ready(Err(e)) => {
570 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
571 e.into(),
572 ))))
573 }
574 }
575
576 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
578
579 std::task::Poll::Ready(Some(match header.ordinal {
580 0x686b544f3d19d679 => {
581 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
582 let mut req = fidl::new_empty!(
583 ProfileProviderGetProfileRequest,
584 fidl::encoding::DefaultFuchsiaResourceDialect
585 );
586 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ProfileProviderGetProfileRequest>(&header, _body_bytes, handles, &mut req)?;
587 let control_handle =
588 ProfileProviderControlHandle { inner: this.inner.clone() };
589 Ok(ProfileProviderRequest::GetProfile {
590 priority: req.priority,
591 name: req.name,
592
593 responder: ProfileProviderGetProfileResponder {
594 control_handle: std::mem::ManuallyDrop::new(control_handle),
595 tx_id: header.tx_id,
596 },
597 })
598 }
599 0x62404c816133daee => {
600 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
601 let mut req = fidl::new_empty!(
602 ProfileProviderGetDeadlineProfileRequest,
603 fidl::encoding::DefaultFuchsiaResourceDialect
604 );
605 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ProfileProviderGetDeadlineProfileRequest>(&header, _body_bytes, handles, &mut req)?;
606 let control_handle =
607 ProfileProviderControlHandle { inner: this.inner.clone() };
608 Ok(ProfileProviderRequest::GetDeadlineProfile {
609 capacity: req.capacity,
610 deadline: req.deadline,
611 period: req.period,
612 name: req.name,
613
614 responder: ProfileProviderGetDeadlineProfileResponder {
615 control_handle: std::mem::ManuallyDrop::new(control_handle),
616 tx_id: header.tx_id,
617 },
618 })
619 }
620 0x36cc6d51ff82ee04 => {
621 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
622 let mut req = fidl::new_empty!(
623 ProfileProviderGetCpuAffinityProfileRequest,
624 fidl::encoding::DefaultFuchsiaResourceDialect
625 );
626 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ProfileProviderGetCpuAffinityProfileRequest>(&header, _body_bytes, handles, &mut req)?;
627 let control_handle =
628 ProfileProviderControlHandle { inner: this.inner.clone() };
629 Ok(ProfileProviderRequest::GetCpuAffinityProfile {
630 cpu_mask: req.cpu_mask,
631
632 responder: ProfileProviderGetCpuAffinityProfileResponder {
633 control_handle: std::mem::ManuallyDrop::new(control_handle),
634 tx_id: header.tx_id,
635 },
636 })
637 }
638 0x31c4d936c0009564 => {
639 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
640 let mut req = fidl::new_empty!(
641 ProfileProviderSetProfileByRoleRequest,
642 fidl::encoding::DefaultFuchsiaResourceDialect
643 );
644 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ProfileProviderSetProfileByRoleRequest>(&header, _body_bytes, handles, &mut req)?;
645 let control_handle =
646 ProfileProviderControlHandle { inner: this.inner.clone() };
647 Ok(ProfileProviderRequest::SetProfileByRole {
648 handle: req.handle,
649 role: req.role,
650
651 responder: ProfileProviderSetProfileByRoleResponder {
652 control_handle: std::mem::ManuallyDrop::new(control_handle),
653 tx_id: header.tx_id,
654 },
655 })
656 }
657 _ => Err(fidl::Error::UnknownOrdinal {
658 ordinal: header.ordinal,
659 protocol_name:
660 <ProfileProviderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
661 }),
662 }))
663 },
664 )
665 }
666}
667
668#[derive(Debug)]
669pub enum ProfileProviderRequest {
670 GetProfile { priority: u32, name: String, responder: ProfileProviderGetProfileResponder },
675 GetDeadlineProfile {
680 capacity: u64,
681 deadline: u64,
682 period: u64,
683 name: String,
684 responder: ProfileProviderGetDeadlineProfileResponder,
685 },
686 GetCpuAffinityProfile {
691 cpu_mask: CpuSet,
692 responder: ProfileProviderGetCpuAffinityProfileResponder,
693 },
694 SetProfileByRole {
698 handle: fidl::Handle,
699 role: String,
700 responder: ProfileProviderSetProfileByRoleResponder,
701 },
702}
703
704impl ProfileProviderRequest {
705 #[allow(irrefutable_let_patterns)]
706 pub fn into_get_profile(self) -> Option<(u32, String, ProfileProviderGetProfileResponder)> {
707 if let ProfileProviderRequest::GetProfile { priority, name, responder } = self {
708 Some((priority, name, responder))
709 } else {
710 None
711 }
712 }
713
714 #[allow(irrefutable_let_patterns)]
715 pub fn into_get_deadline_profile(
716 self,
717 ) -> Option<(u64, u64, u64, String, ProfileProviderGetDeadlineProfileResponder)> {
718 if let ProfileProviderRequest::GetDeadlineProfile {
719 capacity,
720 deadline,
721 period,
722 name,
723 responder,
724 } = self
725 {
726 Some((capacity, deadline, period, name, responder))
727 } else {
728 None
729 }
730 }
731
732 #[allow(irrefutable_let_patterns)]
733 pub fn into_get_cpu_affinity_profile(
734 self,
735 ) -> Option<(CpuSet, ProfileProviderGetCpuAffinityProfileResponder)> {
736 if let ProfileProviderRequest::GetCpuAffinityProfile { cpu_mask, responder } = self {
737 Some((cpu_mask, responder))
738 } else {
739 None
740 }
741 }
742
743 #[allow(irrefutable_let_patterns)]
744 pub fn into_set_profile_by_role(
745 self,
746 ) -> Option<(fidl::Handle, String, ProfileProviderSetProfileByRoleResponder)> {
747 if let ProfileProviderRequest::SetProfileByRole { handle, role, responder } = self {
748 Some((handle, role, responder))
749 } else {
750 None
751 }
752 }
753
754 pub fn method_name(&self) -> &'static str {
756 match *self {
757 ProfileProviderRequest::GetProfile { .. } => "get_profile",
758 ProfileProviderRequest::GetDeadlineProfile { .. } => "get_deadline_profile",
759 ProfileProviderRequest::GetCpuAffinityProfile { .. } => "get_cpu_affinity_profile",
760 ProfileProviderRequest::SetProfileByRole { .. } => "set_profile_by_role",
761 }
762 }
763}
764
765#[derive(Debug, Clone)]
766pub struct ProfileProviderControlHandle {
767 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
768}
769
770impl fidl::endpoints::ControlHandle for ProfileProviderControlHandle {
771 fn shutdown(&self) {
772 self.inner.shutdown()
773 }
774 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
775 self.inner.shutdown_with_epitaph(status)
776 }
777
778 fn is_closed(&self) -> bool {
779 self.inner.channel().is_closed()
780 }
781 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
782 self.inner.channel().on_closed()
783 }
784
785 #[cfg(target_os = "fuchsia")]
786 fn signal_peer(
787 &self,
788 clear_mask: zx::Signals,
789 set_mask: zx::Signals,
790 ) -> Result<(), zx_status::Status> {
791 use fidl::Peered;
792 self.inner.channel().signal_peer(clear_mask, set_mask)
793 }
794}
795
796impl ProfileProviderControlHandle {}
797
798#[must_use = "FIDL methods require a response to be sent"]
799#[derive(Debug)]
800pub struct ProfileProviderGetProfileResponder {
801 control_handle: std::mem::ManuallyDrop<ProfileProviderControlHandle>,
802 tx_id: u32,
803}
804
805impl std::ops::Drop for ProfileProviderGetProfileResponder {
809 fn drop(&mut self) {
810 self.control_handle.shutdown();
811 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
813 }
814}
815
816impl fidl::endpoints::Responder for ProfileProviderGetProfileResponder {
817 type ControlHandle = ProfileProviderControlHandle;
818
819 fn control_handle(&self) -> &ProfileProviderControlHandle {
820 &self.control_handle
821 }
822
823 fn drop_without_shutdown(mut self) {
824 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
826 std::mem::forget(self);
828 }
829}
830
831impl ProfileProviderGetProfileResponder {
832 pub fn send(
836 self,
837 mut status: i32,
838 mut profile: Option<fidl::Profile>,
839 ) -> Result<(), fidl::Error> {
840 let _result = self.send_raw(status, profile);
841 if _result.is_err() {
842 self.control_handle.shutdown();
843 }
844 self.drop_without_shutdown();
845 _result
846 }
847
848 pub fn send_no_shutdown_on_err(
850 self,
851 mut status: i32,
852 mut profile: Option<fidl::Profile>,
853 ) -> Result<(), fidl::Error> {
854 let _result = self.send_raw(status, profile);
855 self.drop_without_shutdown();
856 _result
857 }
858
859 fn send_raw(
860 &self,
861 mut status: i32,
862 mut profile: Option<fidl::Profile>,
863 ) -> Result<(), fidl::Error> {
864 self.control_handle.inner.send::<ProfileProviderGetProfileResponse>(
865 (status, profile),
866 self.tx_id,
867 0x686b544f3d19d679,
868 fidl::encoding::DynamicFlags::empty(),
869 )
870 }
871}
872
873#[must_use = "FIDL methods require a response to be sent"]
874#[derive(Debug)]
875pub struct ProfileProviderGetDeadlineProfileResponder {
876 control_handle: std::mem::ManuallyDrop<ProfileProviderControlHandle>,
877 tx_id: u32,
878}
879
880impl std::ops::Drop for ProfileProviderGetDeadlineProfileResponder {
884 fn drop(&mut self) {
885 self.control_handle.shutdown();
886 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
888 }
889}
890
891impl fidl::endpoints::Responder for ProfileProviderGetDeadlineProfileResponder {
892 type ControlHandle = ProfileProviderControlHandle;
893
894 fn control_handle(&self) -> &ProfileProviderControlHandle {
895 &self.control_handle
896 }
897
898 fn drop_without_shutdown(mut self) {
899 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
901 std::mem::forget(self);
903 }
904}
905
906impl ProfileProviderGetDeadlineProfileResponder {
907 pub fn send(
911 self,
912 mut status: i32,
913 mut profile: Option<fidl::Profile>,
914 ) -> Result<(), fidl::Error> {
915 let _result = self.send_raw(status, profile);
916 if _result.is_err() {
917 self.control_handle.shutdown();
918 }
919 self.drop_without_shutdown();
920 _result
921 }
922
923 pub fn send_no_shutdown_on_err(
925 self,
926 mut status: i32,
927 mut profile: Option<fidl::Profile>,
928 ) -> Result<(), fidl::Error> {
929 let _result = self.send_raw(status, profile);
930 self.drop_without_shutdown();
931 _result
932 }
933
934 fn send_raw(
935 &self,
936 mut status: i32,
937 mut profile: Option<fidl::Profile>,
938 ) -> Result<(), fidl::Error> {
939 self.control_handle.inner.send::<ProfileProviderGetDeadlineProfileResponse>(
940 (status, profile),
941 self.tx_id,
942 0x62404c816133daee,
943 fidl::encoding::DynamicFlags::empty(),
944 )
945 }
946}
947
948#[must_use = "FIDL methods require a response to be sent"]
949#[derive(Debug)]
950pub struct ProfileProviderGetCpuAffinityProfileResponder {
951 control_handle: std::mem::ManuallyDrop<ProfileProviderControlHandle>,
952 tx_id: u32,
953}
954
955impl std::ops::Drop for ProfileProviderGetCpuAffinityProfileResponder {
959 fn drop(&mut self) {
960 self.control_handle.shutdown();
961 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
963 }
964}
965
966impl fidl::endpoints::Responder for ProfileProviderGetCpuAffinityProfileResponder {
967 type ControlHandle = ProfileProviderControlHandle;
968
969 fn control_handle(&self) -> &ProfileProviderControlHandle {
970 &self.control_handle
971 }
972
973 fn drop_without_shutdown(mut self) {
974 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
976 std::mem::forget(self);
978 }
979}
980
981impl ProfileProviderGetCpuAffinityProfileResponder {
982 pub fn send(
986 self,
987 mut status: i32,
988 mut profile: Option<fidl::Profile>,
989 ) -> Result<(), fidl::Error> {
990 let _result = self.send_raw(status, profile);
991 if _result.is_err() {
992 self.control_handle.shutdown();
993 }
994 self.drop_without_shutdown();
995 _result
996 }
997
998 pub fn send_no_shutdown_on_err(
1000 self,
1001 mut status: i32,
1002 mut profile: Option<fidl::Profile>,
1003 ) -> Result<(), fidl::Error> {
1004 let _result = self.send_raw(status, profile);
1005 self.drop_without_shutdown();
1006 _result
1007 }
1008
1009 fn send_raw(
1010 &self,
1011 mut status: i32,
1012 mut profile: Option<fidl::Profile>,
1013 ) -> Result<(), fidl::Error> {
1014 self.control_handle.inner.send::<ProfileProviderGetCpuAffinityProfileResponse>(
1015 (status, profile),
1016 self.tx_id,
1017 0x36cc6d51ff82ee04,
1018 fidl::encoding::DynamicFlags::empty(),
1019 )
1020 }
1021}
1022
1023#[must_use = "FIDL methods require a response to be sent"]
1024#[derive(Debug)]
1025pub struct ProfileProviderSetProfileByRoleResponder {
1026 control_handle: std::mem::ManuallyDrop<ProfileProviderControlHandle>,
1027 tx_id: u32,
1028}
1029
1030impl std::ops::Drop for ProfileProviderSetProfileByRoleResponder {
1034 fn drop(&mut self) {
1035 self.control_handle.shutdown();
1036 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1038 }
1039}
1040
1041impl fidl::endpoints::Responder for ProfileProviderSetProfileByRoleResponder {
1042 type ControlHandle = ProfileProviderControlHandle;
1043
1044 fn control_handle(&self) -> &ProfileProviderControlHandle {
1045 &self.control_handle
1046 }
1047
1048 fn drop_without_shutdown(mut self) {
1049 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1051 std::mem::forget(self);
1053 }
1054}
1055
1056impl ProfileProviderSetProfileByRoleResponder {
1057 pub fn send(self, mut status: i32) -> Result<(), fidl::Error> {
1061 let _result = self.send_raw(status);
1062 if _result.is_err() {
1063 self.control_handle.shutdown();
1064 }
1065 self.drop_without_shutdown();
1066 _result
1067 }
1068
1069 pub fn send_no_shutdown_on_err(self, mut status: i32) -> Result<(), fidl::Error> {
1071 let _result = self.send_raw(status);
1072 self.drop_without_shutdown();
1073 _result
1074 }
1075
1076 fn send_raw(&self, mut status: i32) -> Result<(), fidl::Error> {
1077 self.control_handle.inner.send::<ProfileProviderSetProfileByRoleResponse>(
1078 (status,),
1079 self.tx_id,
1080 0x31c4d936c0009564,
1081 fidl::encoding::DynamicFlags::empty(),
1082 )
1083 }
1084}
1085
1086mod internal {
1087 use super::*;
1088
1089 impl fidl::encoding::ResourceTypeMarker for ProfileProviderGetCpuAffinityProfileResponse {
1090 type Borrowed<'a> = &'a mut Self;
1091 fn take_or_borrow<'a>(
1092 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1093 ) -> Self::Borrowed<'a> {
1094 value
1095 }
1096 }
1097
1098 unsafe impl fidl::encoding::TypeMarker for ProfileProviderGetCpuAffinityProfileResponse {
1099 type Owned = Self;
1100
1101 #[inline(always)]
1102 fn inline_align(_context: fidl::encoding::Context) -> usize {
1103 4
1104 }
1105
1106 #[inline(always)]
1107 fn inline_size(_context: fidl::encoding::Context) -> usize {
1108 8
1109 }
1110 }
1111
1112 unsafe impl
1113 fidl::encoding::Encode<
1114 ProfileProviderGetCpuAffinityProfileResponse,
1115 fidl::encoding::DefaultFuchsiaResourceDialect,
1116 > for &mut ProfileProviderGetCpuAffinityProfileResponse
1117 {
1118 #[inline]
1119 unsafe fn encode(
1120 self,
1121 encoder: &mut fidl::encoding::Encoder<
1122 '_,
1123 fidl::encoding::DefaultFuchsiaResourceDialect,
1124 >,
1125 offset: usize,
1126 _depth: fidl::encoding::Depth,
1127 ) -> fidl::Result<()> {
1128 encoder.debug_check_bounds::<ProfileProviderGetCpuAffinityProfileResponse>(offset);
1129 fidl::encoding::Encode::<
1131 ProfileProviderGetCpuAffinityProfileResponse,
1132 fidl::encoding::DefaultFuchsiaResourceDialect,
1133 >::encode(
1134 (
1135 <i32 as fidl::encoding::ValueTypeMarker>::borrow(&self.status),
1136 <fidl::encoding::Optional<
1137 fidl::encoding::HandleType<
1138 fidl::Profile,
1139 { fidl::ObjectType::PROFILE.into_raw() },
1140 2147483648,
1141 >,
1142 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
1143 &mut self.profile
1144 ),
1145 ),
1146 encoder,
1147 offset,
1148 _depth,
1149 )
1150 }
1151 }
1152 unsafe impl<
1153 T0: fidl::encoding::Encode<i32, fidl::encoding::DefaultFuchsiaResourceDialect>,
1154 T1: fidl::encoding::Encode<
1155 fidl::encoding::Optional<
1156 fidl::encoding::HandleType<
1157 fidl::Profile,
1158 { fidl::ObjectType::PROFILE.into_raw() },
1159 2147483648,
1160 >,
1161 >,
1162 fidl::encoding::DefaultFuchsiaResourceDialect,
1163 >,
1164 >
1165 fidl::encoding::Encode<
1166 ProfileProviderGetCpuAffinityProfileResponse,
1167 fidl::encoding::DefaultFuchsiaResourceDialect,
1168 > for (T0, T1)
1169 {
1170 #[inline]
1171 unsafe fn encode(
1172 self,
1173 encoder: &mut fidl::encoding::Encoder<
1174 '_,
1175 fidl::encoding::DefaultFuchsiaResourceDialect,
1176 >,
1177 offset: usize,
1178 depth: fidl::encoding::Depth,
1179 ) -> fidl::Result<()> {
1180 encoder.debug_check_bounds::<ProfileProviderGetCpuAffinityProfileResponse>(offset);
1181 self.0.encode(encoder, offset + 0, depth)?;
1185 self.1.encode(encoder, offset + 4, depth)?;
1186 Ok(())
1187 }
1188 }
1189
1190 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1191 for ProfileProviderGetCpuAffinityProfileResponse
1192 {
1193 #[inline(always)]
1194 fn new_empty() -> Self {
1195 Self {
1196 status: fidl::new_empty!(i32, fidl::encoding::DefaultFuchsiaResourceDialect),
1197 profile: fidl::new_empty!(
1198 fidl::encoding::Optional<
1199 fidl::encoding::HandleType<
1200 fidl::Profile,
1201 { fidl::ObjectType::PROFILE.into_raw() },
1202 2147483648,
1203 >,
1204 >,
1205 fidl::encoding::DefaultFuchsiaResourceDialect
1206 ),
1207 }
1208 }
1209
1210 #[inline]
1211 unsafe fn decode(
1212 &mut self,
1213 decoder: &mut fidl::encoding::Decoder<
1214 '_,
1215 fidl::encoding::DefaultFuchsiaResourceDialect,
1216 >,
1217 offset: usize,
1218 _depth: fidl::encoding::Depth,
1219 ) -> fidl::Result<()> {
1220 decoder.debug_check_bounds::<Self>(offset);
1221 fidl::decode!(
1223 i32,
1224 fidl::encoding::DefaultFuchsiaResourceDialect,
1225 &mut self.status,
1226 decoder,
1227 offset + 0,
1228 _depth
1229 )?;
1230 fidl::decode!(
1231 fidl::encoding::Optional<
1232 fidl::encoding::HandleType<
1233 fidl::Profile,
1234 { fidl::ObjectType::PROFILE.into_raw() },
1235 2147483648,
1236 >,
1237 >,
1238 fidl::encoding::DefaultFuchsiaResourceDialect,
1239 &mut self.profile,
1240 decoder,
1241 offset + 4,
1242 _depth
1243 )?;
1244 Ok(())
1245 }
1246 }
1247
1248 impl fidl::encoding::ResourceTypeMarker for ProfileProviderGetDeadlineProfileResponse {
1249 type Borrowed<'a> = &'a mut Self;
1250 fn take_or_borrow<'a>(
1251 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1252 ) -> Self::Borrowed<'a> {
1253 value
1254 }
1255 }
1256
1257 unsafe impl fidl::encoding::TypeMarker for ProfileProviderGetDeadlineProfileResponse {
1258 type Owned = Self;
1259
1260 #[inline(always)]
1261 fn inline_align(_context: fidl::encoding::Context) -> usize {
1262 4
1263 }
1264
1265 #[inline(always)]
1266 fn inline_size(_context: fidl::encoding::Context) -> usize {
1267 8
1268 }
1269 }
1270
1271 unsafe impl
1272 fidl::encoding::Encode<
1273 ProfileProviderGetDeadlineProfileResponse,
1274 fidl::encoding::DefaultFuchsiaResourceDialect,
1275 > for &mut ProfileProviderGetDeadlineProfileResponse
1276 {
1277 #[inline]
1278 unsafe fn encode(
1279 self,
1280 encoder: &mut fidl::encoding::Encoder<
1281 '_,
1282 fidl::encoding::DefaultFuchsiaResourceDialect,
1283 >,
1284 offset: usize,
1285 _depth: fidl::encoding::Depth,
1286 ) -> fidl::Result<()> {
1287 encoder.debug_check_bounds::<ProfileProviderGetDeadlineProfileResponse>(offset);
1288 fidl::encoding::Encode::<
1290 ProfileProviderGetDeadlineProfileResponse,
1291 fidl::encoding::DefaultFuchsiaResourceDialect,
1292 >::encode(
1293 (
1294 <i32 as fidl::encoding::ValueTypeMarker>::borrow(&self.status),
1295 <fidl::encoding::Optional<
1296 fidl::encoding::HandleType<
1297 fidl::Profile,
1298 { fidl::ObjectType::PROFILE.into_raw() },
1299 2147483648,
1300 >,
1301 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
1302 &mut self.profile
1303 ),
1304 ),
1305 encoder,
1306 offset,
1307 _depth,
1308 )
1309 }
1310 }
1311 unsafe impl<
1312 T0: fidl::encoding::Encode<i32, fidl::encoding::DefaultFuchsiaResourceDialect>,
1313 T1: fidl::encoding::Encode<
1314 fidl::encoding::Optional<
1315 fidl::encoding::HandleType<
1316 fidl::Profile,
1317 { fidl::ObjectType::PROFILE.into_raw() },
1318 2147483648,
1319 >,
1320 >,
1321 fidl::encoding::DefaultFuchsiaResourceDialect,
1322 >,
1323 >
1324 fidl::encoding::Encode<
1325 ProfileProviderGetDeadlineProfileResponse,
1326 fidl::encoding::DefaultFuchsiaResourceDialect,
1327 > for (T0, T1)
1328 {
1329 #[inline]
1330 unsafe fn encode(
1331 self,
1332 encoder: &mut fidl::encoding::Encoder<
1333 '_,
1334 fidl::encoding::DefaultFuchsiaResourceDialect,
1335 >,
1336 offset: usize,
1337 depth: fidl::encoding::Depth,
1338 ) -> fidl::Result<()> {
1339 encoder.debug_check_bounds::<ProfileProviderGetDeadlineProfileResponse>(offset);
1340 self.0.encode(encoder, offset + 0, depth)?;
1344 self.1.encode(encoder, offset + 4, depth)?;
1345 Ok(())
1346 }
1347 }
1348
1349 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1350 for ProfileProviderGetDeadlineProfileResponse
1351 {
1352 #[inline(always)]
1353 fn new_empty() -> Self {
1354 Self {
1355 status: fidl::new_empty!(i32, fidl::encoding::DefaultFuchsiaResourceDialect),
1356 profile: fidl::new_empty!(
1357 fidl::encoding::Optional<
1358 fidl::encoding::HandleType<
1359 fidl::Profile,
1360 { fidl::ObjectType::PROFILE.into_raw() },
1361 2147483648,
1362 >,
1363 >,
1364 fidl::encoding::DefaultFuchsiaResourceDialect
1365 ),
1366 }
1367 }
1368
1369 #[inline]
1370 unsafe fn decode(
1371 &mut self,
1372 decoder: &mut fidl::encoding::Decoder<
1373 '_,
1374 fidl::encoding::DefaultFuchsiaResourceDialect,
1375 >,
1376 offset: usize,
1377 _depth: fidl::encoding::Depth,
1378 ) -> fidl::Result<()> {
1379 decoder.debug_check_bounds::<Self>(offset);
1380 fidl::decode!(
1382 i32,
1383 fidl::encoding::DefaultFuchsiaResourceDialect,
1384 &mut self.status,
1385 decoder,
1386 offset + 0,
1387 _depth
1388 )?;
1389 fidl::decode!(
1390 fidl::encoding::Optional<
1391 fidl::encoding::HandleType<
1392 fidl::Profile,
1393 { fidl::ObjectType::PROFILE.into_raw() },
1394 2147483648,
1395 >,
1396 >,
1397 fidl::encoding::DefaultFuchsiaResourceDialect,
1398 &mut self.profile,
1399 decoder,
1400 offset + 4,
1401 _depth
1402 )?;
1403 Ok(())
1404 }
1405 }
1406
1407 impl fidl::encoding::ResourceTypeMarker for ProfileProviderGetProfileResponse {
1408 type Borrowed<'a> = &'a mut Self;
1409 fn take_or_borrow<'a>(
1410 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1411 ) -> Self::Borrowed<'a> {
1412 value
1413 }
1414 }
1415
1416 unsafe impl fidl::encoding::TypeMarker for ProfileProviderGetProfileResponse {
1417 type Owned = Self;
1418
1419 #[inline(always)]
1420 fn inline_align(_context: fidl::encoding::Context) -> usize {
1421 4
1422 }
1423
1424 #[inline(always)]
1425 fn inline_size(_context: fidl::encoding::Context) -> usize {
1426 8
1427 }
1428 }
1429
1430 unsafe impl
1431 fidl::encoding::Encode<
1432 ProfileProviderGetProfileResponse,
1433 fidl::encoding::DefaultFuchsiaResourceDialect,
1434 > for &mut ProfileProviderGetProfileResponse
1435 {
1436 #[inline]
1437 unsafe fn encode(
1438 self,
1439 encoder: &mut fidl::encoding::Encoder<
1440 '_,
1441 fidl::encoding::DefaultFuchsiaResourceDialect,
1442 >,
1443 offset: usize,
1444 _depth: fidl::encoding::Depth,
1445 ) -> fidl::Result<()> {
1446 encoder.debug_check_bounds::<ProfileProviderGetProfileResponse>(offset);
1447 fidl::encoding::Encode::<
1449 ProfileProviderGetProfileResponse,
1450 fidl::encoding::DefaultFuchsiaResourceDialect,
1451 >::encode(
1452 (
1453 <i32 as fidl::encoding::ValueTypeMarker>::borrow(&self.status),
1454 <fidl::encoding::Optional<
1455 fidl::encoding::HandleType<
1456 fidl::Profile,
1457 { fidl::ObjectType::PROFILE.into_raw() },
1458 2147483648,
1459 >,
1460 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
1461 &mut self.profile
1462 ),
1463 ),
1464 encoder,
1465 offset,
1466 _depth,
1467 )
1468 }
1469 }
1470 unsafe impl<
1471 T0: fidl::encoding::Encode<i32, fidl::encoding::DefaultFuchsiaResourceDialect>,
1472 T1: fidl::encoding::Encode<
1473 fidl::encoding::Optional<
1474 fidl::encoding::HandleType<
1475 fidl::Profile,
1476 { fidl::ObjectType::PROFILE.into_raw() },
1477 2147483648,
1478 >,
1479 >,
1480 fidl::encoding::DefaultFuchsiaResourceDialect,
1481 >,
1482 >
1483 fidl::encoding::Encode<
1484 ProfileProviderGetProfileResponse,
1485 fidl::encoding::DefaultFuchsiaResourceDialect,
1486 > for (T0, T1)
1487 {
1488 #[inline]
1489 unsafe fn encode(
1490 self,
1491 encoder: &mut fidl::encoding::Encoder<
1492 '_,
1493 fidl::encoding::DefaultFuchsiaResourceDialect,
1494 >,
1495 offset: usize,
1496 depth: fidl::encoding::Depth,
1497 ) -> fidl::Result<()> {
1498 encoder.debug_check_bounds::<ProfileProviderGetProfileResponse>(offset);
1499 self.0.encode(encoder, offset + 0, depth)?;
1503 self.1.encode(encoder, offset + 4, depth)?;
1504 Ok(())
1505 }
1506 }
1507
1508 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1509 for ProfileProviderGetProfileResponse
1510 {
1511 #[inline(always)]
1512 fn new_empty() -> Self {
1513 Self {
1514 status: fidl::new_empty!(i32, fidl::encoding::DefaultFuchsiaResourceDialect),
1515 profile: fidl::new_empty!(
1516 fidl::encoding::Optional<
1517 fidl::encoding::HandleType<
1518 fidl::Profile,
1519 { fidl::ObjectType::PROFILE.into_raw() },
1520 2147483648,
1521 >,
1522 >,
1523 fidl::encoding::DefaultFuchsiaResourceDialect
1524 ),
1525 }
1526 }
1527
1528 #[inline]
1529 unsafe fn decode(
1530 &mut self,
1531 decoder: &mut fidl::encoding::Decoder<
1532 '_,
1533 fidl::encoding::DefaultFuchsiaResourceDialect,
1534 >,
1535 offset: usize,
1536 _depth: fidl::encoding::Depth,
1537 ) -> fidl::Result<()> {
1538 decoder.debug_check_bounds::<Self>(offset);
1539 fidl::decode!(
1541 i32,
1542 fidl::encoding::DefaultFuchsiaResourceDialect,
1543 &mut self.status,
1544 decoder,
1545 offset + 0,
1546 _depth
1547 )?;
1548 fidl::decode!(
1549 fidl::encoding::Optional<
1550 fidl::encoding::HandleType<
1551 fidl::Profile,
1552 { fidl::ObjectType::PROFILE.into_raw() },
1553 2147483648,
1554 >,
1555 >,
1556 fidl::encoding::DefaultFuchsiaResourceDialect,
1557 &mut self.profile,
1558 decoder,
1559 offset + 4,
1560 _depth
1561 )?;
1562 Ok(())
1563 }
1564 }
1565
1566 impl fidl::encoding::ResourceTypeMarker for ProfileProviderSetProfileByRoleRequest {
1567 type Borrowed<'a> = &'a mut Self;
1568 fn take_or_borrow<'a>(
1569 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1570 ) -> Self::Borrowed<'a> {
1571 value
1572 }
1573 }
1574
1575 unsafe impl fidl::encoding::TypeMarker for ProfileProviderSetProfileByRoleRequest {
1576 type Owned = Self;
1577
1578 #[inline(always)]
1579 fn inline_align(_context: fidl::encoding::Context) -> usize {
1580 8
1581 }
1582
1583 #[inline(always)]
1584 fn inline_size(_context: fidl::encoding::Context) -> usize {
1585 24
1586 }
1587 }
1588
1589 unsafe impl
1590 fidl::encoding::Encode<
1591 ProfileProviderSetProfileByRoleRequest,
1592 fidl::encoding::DefaultFuchsiaResourceDialect,
1593 > for &mut ProfileProviderSetProfileByRoleRequest
1594 {
1595 #[inline]
1596 unsafe fn encode(
1597 self,
1598 encoder: &mut fidl::encoding::Encoder<
1599 '_,
1600 fidl::encoding::DefaultFuchsiaResourceDialect,
1601 >,
1602 offset: usize,
1603 _depth: fidl::encoding::Depth,
1604 ) -> fidl::Result<()> {
1605 encoder.debug_check_bounds::<ProfileProviderSetProfileByRoleRequest>(offset);
1606 fidl::encoding::Encode::<ProfileProviderSetProfileByRoleRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
1608 (
1609 <fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.handle),
1610 <fidl::encoding::BoundedString<2048> as fidl::encoding::ValueTypeMarker>::borrow(&self.role),
1611 ),
1612 encoder, offset, _depth
1613 )
1614 }
1615 }
1616 unsafe impl<
1617 T0: fidl::encoding::Encode<
1618 fidl::encoding::HandleType<
1619 fidl::Handle,
1620 { fidl::ObjectType::NONE.into_raw() },
1621 2147483648,
1622 >,
1623 fidl::encoding::DefaultFuchsiaResourceDialect,
1624 >,
1625 T1: fidl::encoding::Encode<
1626 fidl::encoding::BoundedString<2048>,
1627 fidl::encoding::DefaultFuchsiaResourceDialect,
1628 >,
1629 >
1630 fidl::encoding::Encode<
1631 ProfileProviderSetProfileByRoleRequest,
1632 fidl::encoding::DefaultFuchsiaResourceDialect,
1633 > for (T0, T1)
1634 {
1635 #[inline]
1636 unsafe fn encode(
1637 self,
1638 encoder: &mut fidl::encoding::Encoder<
1639 '_,
1640 fidl::encoding::DefaultFuchsiaResourceDialect,
1641 >,
1642 offset: usize,
1643 depth: fidl::encoding::Depth,
1644 ) -> fidl::Result<()> {
1645 encoder.debug_check_bounds::<ProfileProviderSetProfileByRoleRequest>(offset);
1646 unsafe {
1649 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
1650 (ptr as *mut u64).write_unaligned(0);
1651 }
1652 self.0.encode(encoder, offset + 0, depth)?;
1654 self.1.encode(encoder, offset + 8, depth)?;
1655 Ok(())
1656 }
1657 }
1658
1659 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1660 for ProfileProviderSetProfileByRoleRequest
1661 {
1662 #[inline(always)]
1663 fn new_empty() -> Self {
1664 Self {
1665 handle: fidl::new_empty!(fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
1666 role: fidl::new_empty!(
1667 fidl::encoding::BoundedString<2048>,
1668 fidl::encoding::DefaultFuchsiaResourceDialect
1669 ),
1670 }
1671 }
1672
1673 #[inline]
1674 unsafe fn decode(
1675 &mut self,
1676 decoder: &mut fidl::encoding::Decoder<
1677 '_,
1678 fidl::encoding::DefaultFuchsiaResourceDialect,
1679 >,
1680 offset: usize,
1681 _depth: fidl::encoding::Depth,
1682 ) -> fidl::Result<()> {
1683 decoder.debug_check_bounds::<Self>(offset);
1684 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
1686 let padval = unsafe { (ptr as *const u64).read_unaligned() };
1687 let mask = 0xffffffff00000000u64;
1688 let maskedval = padval & mask;
1689 if maskedval != 0 {
1690 return Err(fidl::Error::NonZeroPadding {
1691 padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
1692 });
1693 }
1694 fidl::decode!(fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.handle, decoder, offset + 0, _depth)?;
1695 fidl::decode!(
1696 fidl::encoding::BoundedString<2048>,
1697 fidl::encoding::DefaultFuchsiaResourceDialect,
1698 &mut self.role,
1699 decoder,
1700 offset + 8,
1701 _depth
1702 )?;
1703 Ok(())
1704 }
1705 }
1706}