fidl_fuchsia_storage_ext4/
fidl_fuchsia_storage_ext4.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![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_storage_ext4_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct ServerMountVmoRequest {
16    pub source: fidl::Vmo,
17    pub root: fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for ServerMountVmoRequest {}
21
22#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
23pub struct Server_Marker;
24
25impl fidl::endpoints::ProtocolMarker for Server_Marker {
26    type Proxy = Server_Proxy;
27    type RequestStream = Server_RequestStream;
28    #[cfg(target_os = "fuchsia")]
29    type SynchronousProxy = Server_SynchronousProxy;
30
31    const DEBUG_NAME: &'static str = "fuchsia.storage.ext4.Server";
32}
33impl fidl::endpoints::DiscoverableProtocolMarker for Server_Marker {}
34
35pub trait Server_ProxyInterface: Send + Sync {
36    type MountVmoResponseFut: std::future::Future<Output = Result<MountVmoResult, fidl::Error>>
37        + Send;
38    fn r#mount_vmo(
39        &self,
40        source: fidl::Vmo,
41        root: fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
42    ) -> Self::MountVmoResponseFut;
43}
44#[derive(Debug)]
45#[cfg(target_os = "fuchsia")]
46pub struct Server_SynchronousProxy {
47    client: fidl::client::sync::Client,
48}
49
50#[cfg(target_os = "fuchsia")]
51impl fidl::endpoints::SynchronousProxy for Server_SynchronousProxy {
52    type Proxy = Server_Proxy;
53    type Protocol = Server_Marker;
54
55    fn from_channel(inner: fidl::Channel) -> Self {
56        Self::new(inner)
57    }
58
59    fn into_channel(self) -> fidl::Channel {
60        self.client.into_channel()
61    }
62
63    fn as_channel(&self) -> &fidl::Channel {
64        self.client.as_channel()
65    }
66}
67
68#[cfg(target_os = "fuchsia")]
69impl Server_SynchronousProxy {
70    pub fn new(channel: fidl::Channel) -> Self {
71        let protocol_name = <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
72        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
73    }
74
75    pub fn into_channel(self) -> fidl::Channel {
76        self.client.into_channel()
77    }
78
79    /// Waits until an event arrives and returns it. It is safe for other
80    /// threads to make concurrent requests while waiting for an event.
81    pub fn wait_for_event(
82        &self,
83        deadline: zx::MonotonicInstant,
84    ) -> Result<Server_Event, fidl::Error> {
85        Server_Event::decode(self.client.wait_for_event(deadline)?)
86    }
87
88    /// Read the VMO content as an Ext4 image and return a channel to the
89    /// root of the mounted file system.
90    ///
91    /// + request `source` is an Ext4 image to be served over the `root`
92    ///            connection.
93    /// + request `root` is the server end of a connection that will be
94    ///            serving the root of the mounted image.
95    /// - result `result` In case we could parse the image far enough to
96    ///           read the root directory [`MountVmoResult.success`] will be
97    ///           returned.  Note that you may pipeline requests to the
98    ///           `root` connection even before received a response.  In
99    ///           case of an error one of the other values will be returned
100    ///           and the `root` connection will be closed.
101    pub fn r#mount_vmo(
102        &self,
103        mut source: fidl::Vmo,
104        mut root: fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
105        ___deadline: zx::MonotonicInstant,
106    ) -> Result<MountVmoResult, fidl::Error> {
107        let _response = self.client.send_query::<ServerMountVmoRequest, ServerMountVmoResponse>(
108            (source, root),
109            0x191360124db7f6a6,
110            fidl::encoding::DynamicFlags::empty(),
111            ___deadline,
112        )?;
113        Ok(_response.result)
114    }
115}
116
117#[cfg(target_os = "fuchsia")]
118impl From<Server_SynchronousProxy> for zx::Handle {
119    fn from(value: Server_SynchronousProxy) -> Self {
120        value.into_channel().into()
121    }
122}
123
124#[cfg(target_os = "fuchsia")]
125impl From<fidl::Channel> for Server_SynchronousProxy {
126    fn from(value: fidl::Channel) -> Self {
127        Self::new(value)
128    }
129}
130
131#[derive(Debug, Clone)]
132pub struct Server_Proxy {
133    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
134}
135
136impl fidl::endpoints::Proxy for Server_Proxy {
137    type Protocol = Server_Marker;
138
139    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
140        Self::new(inner)
141    }
142
143    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
144        self.client.into_channel().map_err(|client| Self { client })
145    }
146
147    fn as_channel(&self) -> &::fidl::AsyncChannel {
148        self.client.as_channel()
149    }
150}
151
152impl Server_Proxy {
153    /// Create a new Proxy for fuchsia.storage.ext4/Server.
154    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
155        let protocol_name = <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
156        Self { client: fidl::client::Client::new(channel, protocol_name) }
157    }
158
159    /// Get a Stream of events from the remote end of the protocol.
160    ///
161    /// # Panics
162    ///
163    /// Panics if the event stream was already taken.
164    pub fn take_event_stream(&self) -> Server_EventStream {
165        Server_EventStream { event_receiver: self.client.take_event_receiver() }
166    }
167
168    /// Read the VMO content as an Ext4 image and return a channel to the
169    /// root of the mounted file system.
170    ///
171    /// + request `source` is an Ext4 image to be served over the `root`
172    ///            connection.
173    /// + request `root` is the server end of a connection that will be
174    ///            serving the root of the mounted image.
175    /// - result `result` In case we could parse the image far enough to
176    ///           read the root directory [`MountVmoResult.success`] will be
177    ///           returned.  Note that you may pipeline requests to the
178    ///           `root` connection even before received a response.  In
179    ///           case of an error one of the other values will be returned
180    ///           and the `root` connection will be closed.
181    pub fn r#mount_vmo(
182        &self,
183        mut source: fidl::Vmo,
184        mut root: fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
185    ) -> fidl::client::QueryResponseFut<MountVmoResult, fidl::encoding::DefaultFuchsiaResourceDialect>
186    {
187        Server_ProxyInterface::r#mount_vmo(self, source, root)
188    }
189}
190
191impl Server_ProxyInterface for Server_Proxy {
192    type MountVmoResponseFut = fidl::client::QueryResponseFut<
193        MountVmoResult,
194        fidl::encoding::DefaultFuchsiaResourceDialect,
195    >;
196    fn r#mount_vmo(
197        &self,
198        mut source: fidl::Vmo,
199        mut root: fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
200    ) -> Self::MountVmoResponseFut {
201        fn _decode(
202            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
203        ) -> Result<MountVmoResult, fidl::Error> {
204            let _response = fidl::client::decode_transaction_body::<
205                ServerMountVmoResponse,
206                fidl::encoding::DefaultFuchsiaResourceDialect,
207                0x191360124db7f6a6,
208            >(_buf?)?;
209            Ok(_response.result)
210        }
211        self.client.send_query_and_decode::<ServerMountVmoRequest, MountVmoResult>(
212            (source, root),
213            0x191360124db7f6a6,
214            fidl::encoding::DynamicFlags::empty(),
215            _decode,
216        )
217    }
218}
219
220pub struct Server_EventStream {
221    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
222}
223
224impl std::marker::Unpin for Server_EventStream {}
225
226impl futures::stream::FusedStream for Server_EventStream {
227    fn is_terminated(&self) -> bool {
228        self.event_receiver.is_terminated()
229    }
230}
231
232impl futures::Stream for Server_EventStream {
233    type Item = Result<Server_Event, fidl::Error>;
234
235    fn poll_next(
236        mut self: std::pin::Pin<&mut Self>,
237        cx: &mut std::task::Context<'_>,
238    ) -> std::task::Poll<Option<Self::Item>> {
239        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
240            &mut self.event_receiver,
241            cx
242        )?) {
243            Some(buf) => std::task::Poll::Ready(Some(Server_Event::decode(buf))),
244            None => std::task::Poll::Ready(None),
245        }
246    }
247}
248
249#[derive(Debug)]
250pub enum Server_Event {}
251
252impl Server_Event {
253    /// Decodes a message buffer as a [`Server_Event`].
254    fn decode(
255        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
256    ) -> Result<Server_Event, fidl::Error> {
257        let (bytes, _handles) = buf.split_mut();
258        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
259        debug_assert_eq!(tx_header.tx_id, 0);
260        match tx_header.ordinal {
261            _ => Err(fidl::Error::UnknownOrdinal {
262                ordinal: tx_header.ordinal,
263                protocol_name: <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
264            }),
265        }
266    }
267}
268
269/// A Stream of incoming requests for fuchsia.storage.ext4/Server.
270pub struct Server_RequestStream {
271    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
272    is_terminated: bool,
273}
274
275impl std::marker::Unpin for Server_RequestStream {}
276
277impl futures::stream::FusedStream for Server_RequestStream {
278    fn is_terminated(&self) -> bool {
279        self.is_terminated
280    }
281}
282
283impl fidl::endpoints::RequestStream for Server_RequestStream {
284    type Protocol = Server_Marker;
285    type ControlHandle = Server_ControlHandle;
286
287    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
288        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
289    }
290
291    fn control_handle(&self) -> Self::ControlHandle {
292        Server_ControlHandle { inner: self.inner.clone() }
293    }
294
295    fn into_inner(
296        self,
297    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
298    {
299        (self.inner, self.is_terminated)
300    }
301
302    fn from_inner(
303        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
304        is_terminated: bool,
305    ) -> Self {
306        Self { inner, is_terminated }
307    }
308}
309
310impl futures::Stream for Server_RequestStream {
311    type Item = Result<Server_Request, fidl::Error>;
312
313    fn poll_next(
314        mut self: std::pin::Pin<&mut Self>,
315        cx: &mut std::task::Context<'_>,
316    ) -> std::task::Poll<Option<Self::Item>> {
317        let this = &mut *self;
318        if this.inner.check_shutdown(cx) {
319            this.is_terminated = true;
320            return std::task::Poll::Ready(None);
321        }
322        if this.is_terminated {
323            panic!("polled Server_RequestStream after completion");
324        }
325        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
326            |bytes, handles| {
327                match this.inner.channel().read_etc(cx, bytes, handles) {
328                    std::task::Poll::Ready(Ok(())) => {}
329                    std::task::Poll::Pending => return std::task::Poll::Pending,
330                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
331                        this.is_terminated = true;
332                        return std::task::Poll::Ready(None);
333                    }
334                    std::task::Poll::Ready(Err(e)) => {
335                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
336                            e.into(),
337                        ))))
338                    }
339                }
340
341                // A message has been received from the channel
342                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
343
344                std::task::Poll::Ready(Some(match header.ordinal {
345                    0x191360124db7f6a6 => {
346                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
347                        let mut req = fidl::new_empty!(
348                            ServerMountVmoRequest,
349                            fidl::encoding::DefaultFuchsiaResourceDialect
350                        );
351                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ServerMountVmoRequest>(&header, _body_bytes, handles, &mut req)?;
352                        let control_handle = Server_ControlHandle { inner: this.inner.clone() };
353                        Ok(Server_Request::MountVmo {
354                            source: req.source,
355                            root: req.root,
356
357                            responder: Server_MountVmoResponder {
358                                control_handle: std::mem::ManuallyDrop::new(control_handle),
359                                tx_id: header.tx_id,
360                            },
361                        })
362                    }
363                    _ => Err(fidl::Error::UnknownOrdinal {
364                        ordinal: header.ordinal,
365                        protocol_name:
366                            <Server_Marker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
367                    }),
368                }))
369            },
370        )
371    }
372}
373
374#[derive(Debug)]
375pub enum Server_Request {
376    /// Read the VMO content as an Ext4 image and return a channel to the
377    /// root of the mounted file system.
378    ///
379    /// + request `source` is an Ext4 image to be served over the `root`
380    ///            connection.
381    /// + request `root` is the server end of a connection that will be
382    ///            serving the root of the mounted image.
383    /// - result `result` In case we could parse the image far enough to
384    ///           read the root directory [`MountVmoResult.success`] will be
385    ///           returned.  Note that you may pipeline requests to the
386    ///           `root` connection even before received a response.  In
387    ///           case of an error one of the other values will be returned
388    ///           and the `root` connection will be closed.
389    MountVmo {
390        source: fidl::Vmo,
391        root: fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
392        responder: Server_MountVmoResponder,
393    },
394}
395
396impl Server_Request {
397    #[allow(irrefutable_let_patterns)]
398    pub fn into_mount_vmo(
399        self,
400    ) -> Option<(
401        fidl::Vmo,
402        fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
403        Server_MountVmoResponder,
404    )> {
405        if let Server_Request::MountVmo { source, root, responder } = self {
406            Some((source, root, responder))
407        } else {
408            None
409        }
410    }
411
412    /// Name of the method defined in FIDL
413    pub fn method_name(&self) -> &'static str {
414        match *self {
415            Server_Request::MountVmo { .. } => "mount_vmo",
416        }
417    }
418}
419
420#[derive(Debug, Clone)]
421pub struct Server_ControlHandle {
422    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
423}
424
425impl fidl::endpoints::ControlHandle for Server_ControlHandle {
426    fn shutdown(&self) {
427        self.inner.shutdown()
428    }
429    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
430        self.inner.shutdown_with_epitaph(status)
431    }
432
433    fn is_closed(&self) -> bool {
434        self.inner.channel().is_closed()
435    }
436    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
437        self.inner.channel().on_closed()
438    }
439
440    #[cfg(target_os = "fuchsia")]
441    fn signal_peer(
442        &self,
443        clear_mask: zx::Signals,
444        set_mask: zx::Signals,
445    ) -> Result<(), zx_status::Status> {
446        use fidl::Peered;
447        self.inner.channel().signal_peer(clear_mask, set_mask)
448    }
449}
450
451impl Server_ControlHandle {}
452
453#[must_use = "FIDL methods require a response to be sent"]
454#[derive(Debug)]
455pub struct Server_MountVmoResponder {
456    control_handle: std::mem::ManuallyDrop<Server_ControlHandle>,
457    tx_id: u32,
458}
459
460/// Set the the channel to be shutdown (see [`Server_ControlHandle::shutdown`])
461/// if the responder is dropped without sending a response, so that the client
462/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
463impl std::ops::Drop for Server_MountVmoResponder {
464    fn drop(&mut self) {
465        self.control_handle.shutdown();
466        // Safety: drops once, never accessed again
467        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
468    }
469}
470
471impl fidl::endpoints::Responder for Server_MountVmoResponder {
472    type ControlHandle = Server_ControlHandle;
473
474    fn control_handle(&self) -> &Server_ControlHandle {
475        &self.control_handle
476    }
477
478    fn drop_without_shutdown(mut self) {
479        // Safety: drops once, never accessed again due to mem::forget
480        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
481        // Prevent Drop from running (which would shut down the channel)
482        std::mem::forget(self);
483    }
484}
485
486impl Server_MountVmoResponder {
487    /// Sends a response to the FIDL transaction.
488    ///
489    /// Sets the channel to shutdown if an error occurs.
490    pub fn send(self, mut result: &MountVmoResult) -> Result<(), fidl::Error> {
491        let _result = self.send_raw(result);
492        if _result.is_err() {
493            self.control_handle.shutdown();
494        }
495        self.drop_without_shutdown();
496        _result
497    }
498
499    /// Similar to "send" but does not shutdown the channel if an error occurs.
500    pub fn send_no_shutdown_on_err(self, mut result: &MountVmoResult) -> Result<(), fidl::Error> {
501        let _result = self.send_raw(result);
502        self.drop_without_shutdown();
503        _result
504    }
505
506    fn send_raw(&self, mut result: &MountVmoResult) -> Result<(), fidl::Error> {
507        self.control_handle.inner.send::<ServerMountVmoResponse>(
508            (result,),
509            self.tx_id,
510            0x191360124db7f6a6,
511            fidl::encoding::DynamicFlags::empty(),
512        )
513    }
514}
515
516#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
517pub struct ServiceMarker;
518
519#[cfg(target_os = "fuchsia")]
520impl fidl::endpoints::ServiceMarker for ServiceMarker {
521    type Proxy = ServiceProxy;
522    type Request = ServiceRequest;
523    const SERVICE_NAME: &'static str = "fuchsia.storage.ext4.Service";
524}
525
526/// A request for one of the member protocols of Service.
527///
528#[cfg(target_os = "fuchsia")]
529pub enum ServiceRequest {
530    /// An Ext4 server that can parse a file system image and present it
531    /// using fuchsia-io FIDL API.
532    Server(Server_RequestStream),
533}
534
535#[cfg(target_os = "fuchsia")]
536impl fidl::endpoints::ServiceRequest for ServiceRequest {
537    type Service = ServiceMarker;
538
539    fn dispatch(name: &str, _channel: fidl::AsyncChannel) -> Self {
540        match name {
541            "server" => Self::Server(
542                <Server_RequestStream as fidl::endpoints::RequestStream>::from_channel(_channel),
543            ),
544            _ => panic!("no such member protocol name for service Service"),
545        }
546    }
547
548    fn member_names() -> &'static [&'static str] {
549        &["server"]
550    }
551}
552#[cfg(target_os = "fuchsia")]
553pub struct ServiceProxy(#[allow(dead_code)] Box<dyn fidl::endpoints::MemberOpener>);
554
555#[cfg(target_os = "fuchsia")]
556impl fidl::endpoints::ServiceProxy for ServiceProxy {
557    type Service = ServiceMarker;
558
559    fn from_member_opener(opener: Box<dyn fidl::endpoints::MemberOpener>) -> Self {
560        Self(opener)
561    }
562}
563
564#[cfg(target_os = "fuchsia")]
565impl ServiceProxy {
566    /// An Ext4 server that can parse a file system image and present it
567    /// using fuchsia-io FIDL API.
568    pub fn connect_to_server(&self) -> Result<Server_Proxy, fidl::Error> {
569        let (proxy, server_end) = fidl::endpoints::create_proxy::<Server_Marker>();
570        self.connect_channel_to_server(server_end)?;
571        Ok(proxy)
572    }
573
574    /// Like `connect_to_server`, but returns a sync proxy.
575    /// See [`Self::connect_to_server`] for more details.
576    pub fn connect_to_server_sync(&self) -> Result<Server_SynchronousProxy, fidl::Error> {
577        let (proxy, server_end) = fidl::endpoints::create_sync_proxy::<Server_Marker>();
578        self.connect_channel_to_server(server_end)?;
579        Ok(proxy)
580    }
581
582    /// Like `connect_to_server`, but accepts a server end.
583    /// See [`Self::connect_to_server`] for more details.
584    pub fn connect_channel_to_server(
585        &self,
586        server_end: fidl::endpoints::ServerEnd<Server_Marker>,
587    ) -> Result<(), fidl::Error> {
588        self.0.open_member("server", server_end.into_channel())
589    }
590
591    pub fn instance_name(&self) -> &str {
592        self.0.instance_name()
593    }
594}
595
596mod internal {
597    use super::*;
598
599    impl fidl::encoding::ResourceTypeMarker for ServerMountVmoRequest {
600        type Borrowed<'a> = &'a mut Self;
601        fn take_or_borrow<'a>(
602            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
603        ) -> Self::Borrowed<'a> {
604            value
605        }
606    }
607
608    unsafe impl fidl::encoding::TypeMarker for ServerMountVmoRequest {
609        type Owned = Self;
610
611        #[inline(always)]
612        fn inline_align(_context: fidl::encoding::Context) -> usize {
613            4
614        }
615
616        #[inline(always)]
617        fn inline_size(_context: fidl::encoding::Context) -> usize {
618            8
619        }
620    }
621
622    unsafe impl
623        fidl::encoding::Encode<ServerMountVmoRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
624        for &mut ServerMountVmoRequest
625    {
626        #[inline]
627        unsafe fn encode(
628            self,
629            encoder: &mut fidl::encoding::Encoder<
630                '_,
631                fidl::encoding::DefaultFuchsiaResourceDialect,
632            >,
633            offset: usize,
634            _depth: fidl::encoding::Depth,
635        ) -> fidl::Result<()> {
636            encoder.debug_check_bounds::<ServerMountVmoRequest>(offset);
637            // Delegate to tuple encoding.
638            fidl::encoding::Encode::<
639                ServerMountVmoRequest,
640                fidl::encoding::DefaultFuchsiaResourceDialect,
641            >::encode(
642                (
643                    <fidl::encoding::HandleType<
644                        fidl::Vmo,
645                        { fidl::ObjectType::VMO.into_raw() },
646                        2147483648,
647                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
648                        &mut self.source
649                    ),
650                    <fidl::encoding::Endpoint<
651                        fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
652                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
653                        &mut self.root
654                    ),
655                ),
656                encoder,
657                offset,
658                _depth,
659            )
660        }
661    }
662    unsafe impl<
663            T0: fidl::encoding::Encode<
664                fidl::encoding::HandleType<
665                    fidl::Vmo,
666                    { fidl::ObjectType::VMO.into_raw() },
667                    2147483648,
668                >,
669                fidl::encoding::DefaultFuchsiaResourceDialect,
670            >,
671            T1: fidl::encoding::Encode<
672                fidl::encoding::Endpoint<
673                    fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
674                >,
675                fidl::encoding::DefaultFuchsiaResourceDialect,
676            >,
677        >
678        fidl::encoding::Encode<ServerMountVmoRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
679        for (T0, T1)
680    {
681        #[inline]
682        unsafe fn encode(
683            self,
684            encoder: &mut fidl::encoding::Encoder<
685                '_,
686                fidl::encoding::DefaultFuchsiaResourceDialect,
687            >,
688            offset: usize,
689            depth: fidl::encoding::Depth,
690        ) -> fidl::Result<()> {
691            encoder.debug_check_bounds::<ServerMountVmoRequest>(offset);
692            // Zero out padding regions. There's no need to apply masks
693            // because the unmasked parts will be overwritten by fields.
694            // Write the fields.
695            self.0.encode(encoder, offset + 0, depth)?;
696            self.1.encode(encoder, offset + 4, depth)?;
697            Ok(())
698        }
699    }
700
701    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
702        for ServerMountVmoRequest
703    {
704        #[inline(always)]
705        fn new_empty() -> Self {
706            Self {
707                source: fidl::new_empty!(fidl::encoding::HandleType<fidl::Vmo, { fidl::ObjectType::VMO.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
708                root: fidl::new_empty!(
709                    fidl::encoding::Endpoint<
710                        fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
711                    >,
712                    fidl::encoding::DefaultFuchsiaResourceDialect
713                ),
714            }
715        }
716
717        #[inline]
718        unsafe fn decode(
719            &mut self,
720            decoder: &mut fidl::encoding::Decoder<
721                '_,
722                fidl::encoding::DefaultFuchsiaResourceDialect,
723            >,
724            offset: usize,
725            _depth: fidl::encoding::Depth,
726        ) -> fidl::Result<()> {
727            decoder.debug_check_bounds::<Self>(offset);
728            // Verify that padding bytes are zero.
729            fidl::decode!(fidl::encoding::HandleType<fidl::Vmo, { fidl::ObjectType::VMO.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.source, decoder, offset + 0, _depth)?;
730            fidl::decode!(
731                fidl::encoding::Endpoint<
732                    fidl::endpoints::ServerEnd<fidl_fuchsia_io::DirectoryMarker>,
733                >,
734                fidl::encoding::DefaultFuchsiaResourceDialect,
735                &mut self.root,
736                decoder,
737                offset + 4,
738                _depth
739            )?;
740            Ok(())
741        }
742    }
743}