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_test_fxfs_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct StarnixVolumeAdminGetRootResponse {
16 pub root_dir: fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for StarnixVolumeAdminGetRootResponse
21{
22}
23
24#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
25pub struct StarnixVolumeAdminMarker;
26
27impl fidl::endpoints::ProtocolMarker for StarnixVolumeAdminMarker {
28 type Proxy = StarnixVolumeAdminProxy;
29 type RequestStream = StarnixVolumeAdminRequestStream;
30 #[cfg(target_os = "fuchsia")]
31 type SynchronousProxy = StarnixVolumeAdminSynchronousProxy;
32
33 const DEBUG_NAME: &'static str = "fuchsia.test.fxfs.StarnixVolumeAdmin";
34}
35impl fidl::endpoints::DiscoverableProtocolMarker for StarnixVolumeAdminMarker {}
36pub type StarnixVolumeAdminDeleteResult = Result<(), i32>;
37pub type StarnixVolumeAdminGetRootResult =
38 Result<fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>, i32>;
39
40pub trait StarnixVolumeAdminProxyInterface: Send + Sync {
41 type DeleteResponseFut: std::future::Future<Output = Result<StarnixVolumeAdminDeleteResult, fidl::Error>>
42 + Send;
43 fn r#delete(&self) -> Self::DeleteResponseFut;
44 type GetRootResponseFut: std::future::Future<Output = Result<StarnixVolumeAdminGetRootResult, fidl::Error>>
45 + Send;
46 fn r#get_root(&self) -> Self::GetRootResponseFut;
47}
48#[derive(Debug)]
49#[cfg(target_os = "fuchsia")]
50pub struct StarnixVolumeAdminSynchronousProxy {
51 client: fidl::client::sync::Client,
52}
53
54#[cfg(target_os = "fuchsia")]
55impl fidl::endpoints::SynchronousProxy for StarnixVolumeAdminSynchronousProxy {
56 type Proxy = StarnixVolumeAdminProxy;
57 type Protocol = StarnixVolumeAdminMarker;
58
59 fn from_channel(inner: fidl::Channel) -> Self {
60 Self::new(inner)
61 }
62
63 fn into_channel(self) -> fidl::Channel {
64 self.client.into_channel()
65 }
66
67 fn as_channel(&self) -> &fidl::Channel {
68 self.client.as_channel()
69 }
70}
71
72#[cfg(target_os = "fuchsia")]
73impl StarnixVolumeAdminSynchronousProxy {
74 pub fn new(channel: fidl::Channel) -> Self {
75 let protocol_name =
76 <StarnixVolumeAdminMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
77 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
78 }
79
80 pub fn into_channel(self) -> fidl::Channel {
81 self.client.into_channel()
82 }
83
84 pub fn wait_for_event(
87 &self,
88 deadline: zx::MonotonicInstant,
89 ) -> Result<StarnixVolumeAdminEvent, fidl::Error> {
90 StarnixVolumeAdminEvent::decode(self.client.wait_for_event(deadline)?)
91 }
92
93 pub fn r#delete(
95 &self,
96 ___deadline: zx::MonotonicInstant,
97 ) -> Result<StarnixVolumeAdminDeleteResult, fidl::Error> {
98 let _response = self.client.send_query::<
99 fidl::encoding::EmptyPayload,
100 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
101 >(
102 (),
103 0x46fe41ebeb62bb3b,
104 fidl::encoding::DynamicFlags::empty(),
105 ___deadline,
106 )?;
107 Ok(_response.map(|x| x))
108 }
109
110 pub fn r#get_root(
112 &self,
113 ___deadline: zx::MonotonicInstant,
114 ) -> Result<StarnixVolumeAdminGetRootResult, fidl::Error> {
115 let _response = self.client.send_query::<
116 fidl::encoding::EmptyPayload,
117 fidl::encoding::ResultType<StarnixVolumeAdminGetRootResponse, i32>,
118 >(
119 (),
120 0x6fc8d53f60ac96a2,
121 fidl::encoding::DynamicFlags::empty(),
122 ___deadline,
123 )?;
124 Ok(_response.map(|x| x.root_dir))
125 }
126}
127
128#[cfg(target_os = "fuchsia")]
129impl From<StarnixVolumeAdminSynchronousProxy> for zx::Handle {
130 fn from(value: StarnixVolumeAdminSynchronousProxy) -> Self {
131 value.into_channel().into()
132 }
133}
134
135#[cfg(target_os = "fuchsia")]
136impl From<fidl::Channel> for StarnixVolumeAdminSynchronousProxy {
137 fn from(value: fidl::Channel) -> Self {
138 Self::new(value)
139 }
140}
141
142#[derive(Debug, Clone)]
143pub struct StarnixVolumeAdminProxy {
144 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
145}
146
147impl fidl::endpoints::Proxy for StarnixVolumeAdminProxy {
148 type Protocol = StarnixVolumeAdminMarker;
149
150 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
151 Self::new(inner)
152 }
153
154 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
155 self.client.into_channel().map_err(|client| Self { client })
156 }
157
158 fn as_channel(&self) -> &::fidl::AsyncChannel {
159 self.client.as_channel()
160 }
161}
162
163impl StarnixVolumeAdminProxy {
164 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
166 let protocol_name =
167 <StarnixVolumeAdminMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
168 Self { client: fidl::client::Client::new(channel, protocol_name) }
169 }
170
171 pub fn take_event_stream(&self) -> StarnixVolumeAdminEventStream {
177 StarnixVolumeAdminEventStream { event_receiver: self.client.take_event_receiver() }
178 }
179
180 pub fn r#delete(
182 &self,
183 ) -> fidl::client::QueryResponseFut<
184 StarnixVolumeAdminDeleteResult,
185 fidl::encoding::DefaultFuchsiaResourceDialect,
186 > {
187 StarnixVolumeAdminProxyInterface::r#delete(self)
188 }
189
190 pub fn r#get_root(
192 &self,
193 ) -> fidl::client::QueryResponseFut<
194 StarnixVolumeAdminGetRootResult,
195 fidl::encoding::DefaultFuchsiaResourceDialect,
196 > {
197 StarnixVolumeAdminProxyInterface::r#get_root(self)
198 }
199}
200
201impl StarnixVolumeAdminProxyInterface for StarnixVolumeAdminProxy {
202 type DeleteResponseFut = fidl::client::QueryResponseFut<
203 StarnixVolumeAdminDeleteResult,
204 fidl::encoding::DefaultFuchsiaResourceDialect,
205 >;
206 fn r#delete(&self) -> Self::DeleteResponseFut {
207 fn _decode(
208 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
209 ) -> Result<StarnixVolumeAdminDeleteResult, fidl::Error> {
210 let _response = fidl::client::decode_transaction_body::<
211 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
212 fidl::encoding::DefaultFuchsiaResourceDialect,
213 0x46fe41ebeb62bb3b,
214 >(_buf?)?;
215 Ok(_response.map(|x| x))
216 }
217 self.client
218 .send_query_and_decode::<fidl::encoding::EmptyPayload, StarnixVolumeAdminDeleteResult>(
219 (),
220 0x46fe41ebeb62bb3b,
221 fidl::encoding::DynamicFlags::empty(),
222 _decode,
223 )
224 }
225
226 type GetRootResponseFut = fidl::client::QueryResponseFut<
227 StarnixVolumeAdminGetRootResult,
228 fidl::encoding::DefaultFuchsiaResourceDialect,
229 >;
230 fn r#get_root(&self) -> Self::GetRootResponseFut {
231 fn _decode(
232 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
233 ) -> Result<StarnixVolumeAdminGetRootResult, fidl::Error> {
234 let _response = fidl::client::decode_transaction_body::<
235 fidl::encoding::ResultType<StarnixVolumeAdminGetRootResponse, i32>,
236 fidl::encoding::DefaultFuchsiaResourceDialect,
237 0x6fc8d53f60ac96a2,
238 >(_buf?)?;
239 Ok(_response.map(|x| x.root_dir))
240 }
241 self.client
242 .send_query_and_decode::<fidl::encoding::EmptyPayload, StarnixVolumeAdminGetRootResult>(
243 (),
244 0x6fc8d53f60ac96a2,
245 fidl::encoding::DynamicFlags::empty(),
246 _decode,
247 )
248 }
249}
250
251pub struct StarnixVolumeAdminEventStream {
252 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
253}
254
255impl std::marker::Unpin for StarnixVolumeAdminEventStream {}
256
257impl futures::stream::FusedStream for StarnixVolumeAdminEventStream {
258 fn is_terminated(&self) -> bool {
259 self.event_receiver.is_terminated()
260 }
261}
262
263impl futures::Stream for StarnixVolumeAdminEventStream {
264 type Item = Result<StarnixVolumeAdminEvent, fidl::Error>;
265
266 fn poll_next(
267 mut self: std::pin::Pin<&mut Self>,
268 cx: &mut std::task::Context<'_>,
269 ) -> std::task::Poll<Option<Self::Item>> {
270 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
271 &mut self.event_receiver,
272 cx
273 )?) {
274 Some(buf) => std::task::Poll::Ready(Some(StarnixVolumeAdminEvent::decode(buf))),
275 None => std::task::Poll::Ready(None),
276 }
277 }
278}
279
280#[derive(Debug)]
281pub enum StarnixVolumeAdminEvent {}
282
283impl StarnixVolumeAdminEvent {
284 fn decode(
286 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
287 ) -> Result<StarnixVolumeAdminEvent, fidl::Error> {
288 let (bytes, _handles) = buf.split_mut();
289 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
290 debug_assert_eq!(tx_header.tx_id, 0);
291 match tx_header.ordinal {
292 _ => Err(fidl::Error::UnknownOrdinal {
293 ordinal: tx_header.ordinal,
294 protocol_name:
295 <StarnixVolumeAdminMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
296 }),
297 }
298 }
299}
300
301pub struct StarnixVolumeAdminRequestStream {
303 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
304 is_terminated: bool,
305}
306
307impl std::marker::Unpin for StarnixVolumeAdminRequestStream {}
308
309impl futures::stream::FusedStream for StarnixVolumeAdminRequestStream {
310 fn is_terminated(&self) -> bool {
311 self.is_terminated
312 }
313}
314
315impl fidl::endpoints::RequestStream for StarnixVolumeAdminRequestStream {
316 type Protocol = StarnixVolumeAdminMarker;
317 type ControlHandle = StarnixVolumeAdminControlHandle;
318
319 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
320 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
321 }
322
323 fn control_handle(&self) -> Self::ControlHandle {
324 StarnixVolumeAdminControlHandle { inner: self.inner.clone() }
325 }
326
327 fn into_inner(
328 self,
329 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
330 {
331 (self.inner, self.is_terminated)
332 }
333
334 fn from_inner(
335 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
336 is_terminated: bool,
337 ) -> Self {
338 Self { inner, is_terminated }
339 }
340}
341
342impl futures::Stream for StarnixVolumeAdminRequestStream {
343 type Item = Result<StarnixVolumeAdminRequest, fidl::Error>;
344
345 fn poll_next(
346 mut self: std::pin::Pin<&mut Self>,
347 cx: &mut std::task::Context<'_>,
348 ) -> std::task::Poll<Option<Self::Item>> {
349 let this = &mut *self;
350 if this.inner.check_shutdown(cx) {
351 this.is_terminated = true;
352 return std::task::Poll::Ready(None);
353 }
354 if this.is_terminated {
355 panic!("polled StarnixVolumeAdminRequestStream after completion");
356 }
357 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
358 |bytes, handles| {
359 match this.inner.channel().read_etc(cx, bytes, handles) {
360 std::task::Poll::Ready(Ok(())) => {}
361 std::task::Poll::Pending => return std::task::Poll::Pending,
362 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
363 this.is_terminated = true;
364 return std::task::Poll::Ready(None);
365 }
366 std::task::Poll::Ready(Err(e)) => {
367 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
368 e.into(),
369 ))))
370 }
371 }
372
373 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
375
376 std::task::Poll::Ready(Some(match header.ordinal {
377 0x46fe41ebeb62bb3b => {
378 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
379 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
380 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
381 let control_handle = StarnixVolumeAdminControlHandle {
382 inner: this.inner.clone(),
383 };
384 Ok(StarnixVolumeAdminRequest::Delete {
385 responder: StarnixVolumeAdminDeleteResponder {
386 control_handle: std::mem::ManuallyDrop::new(control_handle),
387 tx_id: header.tx_id,
388 },
389 })
390 }
391 0x6fc8d53f60ac96a2 => {
392 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
393 let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
394 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
395 let control_handle = StarnixVolumeAdminControlHandle {
396 inner: this.inner.clone(),
397 };
398 Ok(StarnixVolumeAdminRequest::GetRoot {
399 responder: StarnixVolumeAdminGetRootResponder {
400 control_handle: std::mem::ManuallyDrop::new(control_handle),
401 tx_id: header.tx_id,
402 },
403 })
404 }
405 _ => Err(fidl::Error::UnknownOrdinal {
406 ordinal: header.ordinal,
407 protocol_name: <StarnixVolumeAdminMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
408 }),
409 }))
410 },
411 )
412 }
413}
414
415#[derive(Debug)]
416pub enum StarnixVolumeAdminRequest {
417 Delete { responder: StarnixVolumeAdminDeleteResponder },
419 GetRoot { responder: StarnixVolumeAdminGetRootResponder },
421}
422
423impl StarnixVolumeAdminRequest {
424 #[allow(irrefutable_let_patterns)]
425 pub fn into_delete(self) -> Option<(StarnixVolumeAdminDeleteResponder)> {
426 if let StarnixVolumeAdminRequest::Delete { responder } = self {
427 Some((responder))
428 } else {
429 None
430 }
431 }
432
433 #[allow(irrefutable_let_patterns)]
434 pub fn into_get_root(self) -> Option<(StarnixVolumeAdminGetRootResponder)> {
435 if let StarnixVolumeAdminRequest::GetRoot { responder } = self {
436 Some((responder))
437 } else {
438 None
439 }
440 }
441
442 pub fn method_name(&self) -> &'static str {
444 match *self {
445 StarnixVolumeAdminRequest::Delete { .. } => "delete",
446 StarnixVolumeAdminRequest::GetRoot { .. } => "get_root",
447 }
448 }
449}
450
451#[derive(Debug, Clone)]
452pub struct StarnixVolumeAdminControlHandle {
453 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
454}
455
456impl fidl::endpoints::ControlHandle for StarnixVolumeAdminControlHandle {
457 fn shutdown(&self) {
458 self.inner.shutdown()
459 }
460 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
461 self.inner.shutdown_with_epitaph(status)
462 }
463
464 fn is_closed(&self) -> bool {
465 self.inner.channel().is_closed()
466 }
467 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
468 self.inner.channel().on_closed()
469 }
470
471 #[cfg(target_os = "fuchsia")]
472 fn signal_peer(
473 &self,
474 clear_mask: zx::Signals,
475 set_mask: zx::Signals,
476 ) -> Result<(), zx_status::Status> {
477 use fidl::Peered;
478 self.inner.channel().signal_peer(clear_mask, set_mask)
479 }
480}
481
482impl StarnixVolumeAdminControlHandle {}
483
484#[must_use = "FIDL methods require a response to be sent"]
485#[derive(Debug)]
486pub struct StarnixVolumeAdminDeleteResponder {
487 control_handle: std::mem::ManuallyDrop<StarnixVolumeAdminControlHandle>,
488 tx_id: u32,
489}
490
491impl std::ops::Drop for StarnixVolumeAdminDeleteResponder {
495 fn drop(&mut self) {
496 self.control_handle.shutdown();
497 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
499 }
500}
501
502impl fidl::endpoints::Responder for StarnixVolumeAdminDeleteResponder {
503 type ControlHandle = StarnixVolumeAdminControlHandle;
504
505 fn control_handle(&self) -> &StarnixVolumeAdminControlHandle {
506 &self.control_handle
507 }
508
509 fn drop_without_shutdown(mut self) {
510 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
512 std::mem::forget(self);
514 }
515}
516
517impl StarnixVolumeAdminDeleteResponder {
518 pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
522 let _result = self.send_raw(result);
523 if _result.is_err() {
524 self.control_handle.shutdown();
525 }
526 self.drop_without_shutdown();
527 _result
528 }
529
530 pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
532 let _result = self.send_raw(result);
533 self.drop_without_shutdown();
534 _result
535 }
536
537 fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
538 self.control_handle
539 .inner
540 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
541 result,
542 self.tx_id,
543 0x46fe41ebeb62bb3b,
544 fidl::encoding::DynamicFlags::empty(),
545 )
546 }
547}
548
549#[must_use = "FIDL methods require a response to be sent"]
550#[derive(Debug)]
551pub struct StarnixVolumeAdminGetRootResponder {
552 control_handle: std::mem::ManuallyDrop<StarnixVolumeAdminControlHandle>,
553 tx_id: u32,
554}
555
556impl std::ops::Drop for StarnixVolumeAdminGetRootResponder {
560 fn drop(&mut self) {
561 self.control_handle.shutdown();
562 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
564 }
565}
566
567impl fidl::endpoints::Responder for StarnixVolumeAdminGetRootResponder {
568 type ControlHandle = StarnixVolumeAdminControlHandle;
569
570 fn control_handle(&self) -> &StarnixVolumeAdminControlHandle {
571 &self.control_handle
572 }
573
574 fn drop_without_shutdown(mut self) {
575 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
577 std::mem::forget(self);
579 }
580}
581
582impl StarnixVolumeAdminGetRootResponder {
583 pub fn send(
587 self,
588 mut result: Result<fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>, i32>,
589 ) -> Result<(), fidl::Error> {
590 let _result = self.send_raw(result);
591 if _result.is_err() {
592 self.control_handle.shutdown();
593 }
594 self.drop_without_shutdown();
595 _result
596 }
597
598 pub fn send_no_shutdown_on_err(
600 self,
601 mut result: Result<fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>, i32>,
602 ) -> Result<(), fidl::Error> {
603 let _result = self.send_raw(result);
604 self.drop_without_shutdown();
605 _result
606 }
607
608 fn send_raw(
609 &self,
610 mut result: Result<fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>, i32>,
611 ) -> Result<(), fidl::Error> {
612 self.control_handle
613 .inner
614 .send::<fidl::encoding::ResultType<StarnixVolumeAdminGetRootResponse, i32>>(
615 result.map(|root_dir| (root_dir,)),
616 self.tx_id,
617 0x6fc8d53f60ac96a2,
618 fidl::encoding::DynamicFlags::empty(),
619 )
620 }
621}
622
623mod internal {
624 use super::*;
625
626 impl fidl::encoding::ResourceTypeMarker for StarnixVolumeAdminGetRootResponse {
627 type Borrowed<'a> = &'a mut Self;
628 fn take_or_borrow<'a>(
629 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
630 ) -> Self::Borrowed<'a> {
631 value
632 }
633 }
634
635 unsafe impl fidl::encoding::TypeMarker for StarnixVolumeAdminGetRootResponse {
636 type Owned = Self;
637
638 #[inline(always)]
639 fn inline_align(_context: fidl::encoding::Context) -> usize {
640 4
641 }
642
643 #[inline(always)]
644 fn inline_size(_context: fidl::encoding::Context) -> usize {
645 4
646 }
647 }
648
649 unsafe impl
650 fidl::encoding::Encode<
651 StarnixVolumeAdminGetRootResponse,
652 fidl::encoding::DefaultFuchsiaResourceDialect,
653 > for &mut StarnixVolumeAdminGetRootResponse
654 {
655 #[inline]
656 unsafe fn encode(
657 self,
658 encoder: &mut fidl::encoding::Encoder<
659 '_,
660 fidl::encoding::DefaultFuchsiaResourceDialect,
661 >,
662 offset: usize,
663 _depth: fidl::encoding::Depth,
664 ) -> fidl::Result<()> {
665 encoder.debug_check_bounds::<StarnixVolumeAdminGetRootResponse>(offset);
666 fidl::encoding::Encode::<
668 StarnixVolumeAdminGetRootResponse,
669 fidl::encoding::DefaultFuchsiaResourceDialect,
670 >::encode(
671 (<fidl::encoding::Endpoint<
672 fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>,
673 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
674 &mut self.root_dir
675 ),),
676 encoder,
677 offset,
678 _depth,
679 )
680 }
681 }
682 unsafe impl<
683 T0: fidl::encoding::Encode<
684 fidl::encoding::Endpoint<
685 fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>,
686 >,
687 fidl::encoding::DefaultFuchsiaResourceDialect,
688 >,
689 >
690 fidl::encoding::Encode<
691 StarnixVolumeAdminGetRootResponse,
692 fidl::encoding::DefaultFuchsiaResourceDialect,
693 > for (T0,)
694 {
695 #[inline]
696 unsafe fn encode(
697 self,
698 encoder: &mut fidl::encoding::Encoder<
699 '_,
700 fidl::encoding::DefaultFuchsiaResourceDialect,
701 >,
702 offset: usize,
703 depth: fidl::encoding::Depth,
704 ) -> fidl::Result<()> {
705 encoder.debug_check_bounds::<StarnixVolumeAdminGetRootResponse>(offset);
706 self.0.encode(encoder, offset + 0, depth)?;
710 Ok(())
711 }
712 }
713
714 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
715 for StarnixVolumeAdminGetRootResponse
716 {
717 #[inline(always)]
718 fn new_empty() -> Self {
719 Self {
720 root_dir: fidl::new_empty!(
721 fidl::encoding::Endpoint<
722 fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>,
723 >,
724 fidl::encoding::DefaultFuchsiaResourceDialect
725 ),
726 }
727 }
728
729 #[inline]
730 unsafe fn decode(
731 &mut self,
732 decoder: &mut fidl::encoding::Decoder<
733 '_,
734 fidl::encoding::DefaultFuchsiaResourceDialect,
735 >,
736 offset: usize,
737 _depth: fidl::encoding::Depth,
738 ) -> fidl::Result<()> {
739 decoder.debug_check_bounds::<Self>(offset);
740 fidl::decode!(
742 fidl::encoding::Endpoint<
743 fidl::endpoints::ClientEnd<fidl_fuchsia_io::DirectoryMarker>,
744 >,
745 fidl::encoding::DefaultFuchsiaResourceDialect,
746 &mut self.root_dir,
747 decoder,
748 offset + 0,
749 _depth
750 )?;
751 Ok(())
752 }
753 }
754}