fidl_fuchsia_io/
fidl_fuchsia_io.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_io_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14/// The type to identify a connection to a node.
15/// It represents a capability: a reference to a node with associated rights.
16pub type Token = fidl::Event;
17
18#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
19pub struct DirectoryCreateSymlinkRequest {
20    pub name: String,
21    pub target: Vec<u8>,
22    pub connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
23}
24
25impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
26    for DirectoryCreateSymlinkRequest
27{
28}
29
30#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
31pub struct DirectoryDeprecatedOpenRequest {
32    pub flags: OpenFlags,
33    pub mode: ModeType,
34    pub path: String,
35    pub object: fidl::endpoints::ServerEnd<NodeMarker>,
36}
37
38impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
39    for DirectoryDeprecatedOpenRequest
40{
41}
42
43#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
44pub struct DirectoryGetTokenResponse {
45    pub s: i32,
46    pub token: Option<fidl::Handle>,
47}
48
49impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for DirectoryGetTokenResponse {}
50
51#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
52pub struct DirectoryLinkRequest {
53    pub src: String,
54    pub dst_parent_token: fidl::Handle,
55    pub dst: String,
56}
57
58impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for DirectoryLinkRequest {}
59
60#[derive(Debug, PartialEq)]
61pub struct DirectoryOpenRequest {
62    pub path: String,
63    pub flags: Flags,
64    pub options: Options,
65    pub object: fidl::Channel,
66}
67
68impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for DirectoryOpenRequest {}
69
70#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
71pub struct DirectoryRenameRequest {
72    pub src: String,
73    pub dst_parent_token: fidl::Event,
74    pub dst: String,
75}
76
77impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for DirectoryRenameRequest {}
78
79#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
80pub struct DirectoryWatchRequest {
81    pub mask: WatchMask,
82    pub options: u32,
83    pub watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
84}
85
86impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for DirectoryWatchRequest {}
87
88#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
89pub struct FileAllocateRequest {
90    pub offset: u64,
91    pub length: u64,
92    /// If an empty bits is passed for mode, the default behavior is used. Otherwise the
93    /// behavior is modified as described for each mode bit. If the backing filesystem doesn't
94    /// support a particular provided mode bit, or combination of mode bits, an error is
95    /// returned.
96    pub mode: AllocateMode,
97}
98
99impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for FileAllocateRequest {}
100
101#[derive(Debug, PartialEq)]
102pub struct FileEnableVerityRequest {
103    pub options: VerificationOptions,
104}
105
106impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for FileEnableVerityRequest {}
107
108#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
109pub struct FileObject {
110    /// An optional event which transmits information about an object's readability
111    /// or writability. This event relays information about the underlying object, not
112    /// the capability granted to client: this event may be signalled "readable" on a
113    /// connection that does not have the capability to read.
114    ///
115    /// The "`FILE_SIGNAL_`" values may be observed on this event.
116    pub event: Option<fidl::Event>,
117    /// A placeholder for future stream support.
118    ///
119    /// Currently, servers are required not to send a handle in this field.
120    pub stream: Option<fidl::Stream>,
121}
122
123impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for FileObject {}
124
125#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
126pub struct FileGetBackingMemoryResponse {
127    pub vmo: fidl::Vmo,
128}
129
130impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
131    for FileGetBackingMemoryResponse
132{
133}
134
135#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
136pub struct LinkableLinkIntoRequest {
137    pub dst_parent_token: fidl::Event,
138    pub dst: String,
139}
140
141impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for LinkableLinkIntoRequest {}
142
143#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
144pub struct NodeDeprecatedCloneRequest {
145    pub flags: OpenFlags,
146    pub object: fidl::endpoints::ServerEnd<NodeMarker>,
147}
148
149impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
150    for NodeDeprecatedCloneRequest
151{
152}
153
154#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
155pub struct NodeListExtendedAttributesRequest {
156    pub iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
157}
158
159impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
160    for NodeListExtendedAttributesRequest
161{
162}
163
164#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
165pub struct NodeOnOpenRequest {
166    pub s: i32,
167    pub info: Option<Box<NodeInfoDeprecated>>,
168}
169
170impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for NodeOnOpenRequest {}
171
172#[derive(Debug, PartialEq)]
173pub struct NodeSetExtendedAttributeRequest {
174    pub name: Vec<u8>,
175    pub value: ExtendedAttributeValue,
176    /// Specifies the behavior based on the current state of the attribute.
177    pub mode: SetExtendedAttributeMode,
178}
179
180impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
181    for NodeSetExtendedAttributeRequest
182{
183}
184
185#[derive(Debug, Default, PartialEq)]
186pub struct ConnectionInfo {
187    /// The rights possessed by the current connection. Note: `rights` limits
188    /// the set of operations allowed on the connection, but does not guarantee
189    /// their availability. For example, one may have the [`Rights.EXECUTE`]
190    /// right on a file connection, but the file itself does not have the
191    /// `EXECUTE` ability, and hence cannot be executed. See
192    /// [`ConnectionOptions.rights`].
193    pub rights: Option<Operations>,
194    #[doc(hidden)]
195    pub __source_breaking: fidl::marker::SourceBreaking,
196}
197
198impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for ConnectionInfo {}
199
200/// Auxiliary data for the file representation of a node.
201#[derive(Debug, Default, PartialEq)]
202pub struct FileInfo {
203    /// True if the file is opened in append mode.
204    /// In append mode, the seek offset is moved to the end before every
205    /// write, the two steps performed in an atomic manner.
206    pub is_append: Option<bool>,
207    /// An optional event which transmits information about an object's
208    /// readability or writability. This event relays information about the
209    /// underlying object, not the capability granted to client: this event
210    /// may be signalled "readable" on a connection that does not have
211    /// the capability to read.
212    ///
213    /// This event will be present if the following conditions are met:
214    ///
215    /// - The `available_operations` on the file connection is not empty.
216    /// - The filesystem supports signalling readability/writability events.
217    ///
218    /// The [`FileSignal`] values may be observed on this event.
219    pub observer: Option<fidl::Event>,
220    /// An optional stream object, which can be used to read to and write from
221    /// the file.
222    ///
223    /// Reading and writing the file using the stream object can be up to 20x
224    /// faster than reading and writing the file using the Read and Write
225    /// operations in the [`File`] protocol.
226    pub stream: Option<fidl::Stream>,
227    /// Requested attributes for the file. This is only populated if requested.
228    pub attributes: Option<NodeAttributes2>,
229    #[doc(hidden)]
230    pub __source_breaking: fidl::marker::SourceBreaking,
231}
232
233impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for FileInfo {}
234
235/// The value type for an extended attribute. If the value is less than 32768
236/// bytes, then it is included inline. Values larger than this size are written
237/// into a vmo buffer.
238#[derive(Debug)]
239pub enum ExtendedAttributeValue {
240    Bytes(Vec<u8>),
241    Buffer(fidl::Vmo),
242    #[doc(hidden)]
243    __SourceBreaking {
244        unknown_ordinal: u64,
245    },
246}
247
248/// Pattern that matches an unknown `ExtendedAttributeValue` member.
249#[macro_export]
250macro_rules! ExtendedAttributeValueUnknown {
251    () => {
252        _
253    };
254}
255
256// Custom PartialEq so that unknown variants are not equal to themselves.
257impl PartialEq for ExtendedAttributeValue {
258    fn eq(&self, other: &Self) -> bool {
259        match (self, other) {
260            (Self::Bytes(x), Self::Bytes(y)) => *x == *y,
261            (Self::Buffer(x), Self::Buffer(y)) => *x == *y,
262            _ => false,
263        }
264    }
265}
266
267impl ExtendedAttributeValue {
268    #[inline]
269    pub fn ordinal(&self) -> u64 {
270        match *self {
271            Self::Bytes(_) => 1,
272            Self::Buffer(_) => 2,
273            Self::__SourceBreaking { unknown_ordinal } => unknown_ordinal,
274        }
275    }
276
277    #[inline]
278    pub fn unknown_variant_for_testing() -> Self {
279        Self::__SourceBreaking { unknown_ordinal: 0 }
280    }
281
282    #[inline]
283    pub fn is_unknown(&self) -> bool {
284        match self {
285            Self::__SourceBreaking { .. } => true,
286            _ => false,
287        }
288    }
289}
290
291impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for ExtendedAttributeValue {}
292
293#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
294pub enum NodeInfoDeprecated {
295    /// No protocol information was supplied by the connection.
296    Service(Service),
297    /// The connection composes [`File`].
298    File(FileObject),
299    /// The connection composes [`Directory`].
300    Directory(DirectoryObject),
301    /// The connection composes ['Symlink'].
302    Symlink(SymlinkObject),
303}
304
305impl NodeInfoDeprecated {
306    #[inline]
307    pub fn ordinal(&self) -> u64 {
308        match *self {
309            Self::Service(_) => 1,
310            Self::File(_) => 2,
311            Self::Directory(_) => 3,
312            Self::Symlink(_) => 4,
313        }
314    }
315
316    #[deprecated = "Strict unions should not use `is_unknown`"]
317    #[inline]
318    pub fn is_unknown(&self) -> bool {
319        false
320    }
321}
322
323impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for NodeInfoDeprecated {}
324
325#[derive(Debug)]
326pub enum Representation {
327    /// The [`Node`] protocol was negotiated for this connection.
328    Node(NodeInfo),
329    /// The [`File`] protocol was negotiated for this connection.
330    Directory(DirectoryInfo),
331    /// The [`File`] protocol was negotiated for this connection.
332    File(FileInfo),
333    /// The [`Symlink`] protocol was negotiated for this connection.
334    Symlink(SymlinkInfo),
335    #[doc(hidden)]
336    __SourceBreaking { unknown_ordinal: u64 },
337}
338
339/// Pattern that matches an unknown `Representation` member.
340#[macro_export]
341macro_rules! RepresentationUnknown {
342    () => {
343        _
344    };
345}
346
347// Custom PartialEq so that unknown variants are not equal to themselves.
348impl PartialEq for Representation {
349    fn eq(&self, other: &Self) -> bool {
350        match (self, other) {
351            (Self::Node(x), Self::Node(y)) => *x == *y,
352            (Self::Directory(x), Self::Directory(y)) => *x == *y,
353            (Self::File(x), Self::File(y)) => *x == *y,
354            (Self::Symlink(x), Self::Symlink(y)) => *x == *y,
355            _ => false,
356        }
357    }
358}
359
360impl Representation {
361    #[inline]
362    pub fn ordinal(&self) -> u64 {
363        match *self {
364            Self::Node(_) => 1,
365            Self::Directory(_) => 2,
366            Self::File(_) => 3,
367            Self::Symlink(_) => 4,
368            Self::__SourceBreaking { unknown_ordinal } => unknown_ordinal,
369        }
370    }
371
372    #[inline]
373    pub fn unknown_variant_for_testing() -> Self {
374        Self::__SourceBreaking { unknown_ordinal: 0 }
375    }
376
377    #[inline]
378    pub fn is_unknown(&self) -> bool {
379        match self {
380            Self::__SourceBreaking { .. } => true,
381            _ => false,
382        }
383    }
384}
385
386impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for Representation {}
387
388#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
389pub struct AdvisoryLockingMarker;
390
391impl fidl::endpoints::ProtocolMarker for AdvisoryLockingMarker {
392    type Proxy = AdvisoryLockingProxy;
393    type RequestStream = AdvisoryLockingRequestStream;
394    #[cfg(target_os = "fuchsia")]
395    type SynchronousProxy = AdvisoryLockingSynchronousProxy;
396
397    const DEBUG_NAME: &'static str = "(anonymous) AdvisoryLocking";
398}
399pub type AdvisoryLockingAdvisoryLockResult = Result<(), i32>;
400
401pub trait AdvisoryLockingProxyInterface: Send + Sync {
402    type AdvisoryLockResponseFut: std::future::Future<Output = Result<AdvisoryLockingAdvisoryLockResult, fidl::Error>>
403        + Send;
404    fn r#advisory_lock(&self, request: &AdvisoryLockRequest) -> Self::AdvisoryLockResponseFut;
405}
406#[derive(Debug)]
407#[cfg(target_os = "fuchsia")]
408pub struct AdvisoryLockingSynchronousProxy {
409    client: fidl::client::sync::Client,
410}
411
412#[cfg(target_os = "fuchsia")]
413impl fidl::endpoints::SynchronousProxy for AdvisoryLockingSynchronousProxy {
414    type Proxy = AdvisoryLockingProxy;
415    type Protocol = AdvisoryLockingMarker;
416
417    fn from_channel(inner: fidl::Channel) -> Self {
418        Self::new(inner)
419    }
420
421    fn into_channel(self) -> fidl::Channel {
422        self.client.into_channel()
423    }
424
425    fn as_channel(&self) -> &fidl::Channel {
426        self.client.as_channel()
427    }
428}
429
430#[cfg(target_os = "fuchsia")]
431impl AdvisoryLockingSynchronousProxy {
432    pub fn new(channel: fidl::Channel) -> Self {
433        let protocol_name = <AdvisoryLockingMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
434        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
435    }
436
437    pub fn into_channel(self) -> fidl::Channel {
438        self.client.into_channel()
439    }
440
441    /// Waits until an event arrives and returns it. It is safe for other
442    /// threads to make concurrent requests while waiting for an event.
443    pub fn wait_for_event(
444        &self,
445        deadline: zx::MonotonicInstant,
446    ) -> Result<AdvisoryLockingEvent, fidl::Error> {
447        AdvisoryLockingEvent::decode(self.client.wait_for_event(deadline)?)
448    }
449
450    /// Acquires an advisory lock on the underlying file.
451    ///
452    /// The lock lasts until either this connection is closed or
453    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
454    /// explicitly.
455    ///
456    /// Advisory locks are purely advisory. They do not prevent actual read or
457    /// write operations from occurring on the file, either through this
458    /// connection or through other connections.
459    ///
460    /// This method requires the following rights:
461    ///
462    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
463    /// * [`Rights.WRITE_BYTES`] if `request.type` is
464    ///   [`AdvisoryLockType.WRITE`].
465    ///
466    /// # Errors
467    ///
468    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
469    ///   example, another connection might hold a conflicting lock type.
470    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
471    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
472    ///   to acquire the given type of lock.
473    pub fn r#advisory_lock(
474        &self,
475        mut request: &AdvisoryLockRequest,
476        ___deadline: zx::MonotonicInstant,
477    ) -> Result<AdvisoryLockingAdvisoryLockResult, fidl::Error> {
478        let _response = self.client.send_query::<
479            AdvisoryLockingAdvisoryLockRequest,
480            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
481        >(
482            (request,),
483            0x6ee9c0ad53ec87aa,
484            fidl::encoding::DynamicFlags::empty(),
485            ___deadline,
486        )?;
487        Ok(_response.map(|x| x))
488    }
489}
490
491#[cfg(target_os = "fuchsia")]
492impl From<AdvisoryLockingSynchronousProxy> for zx::Handle {
493    fn from(value: AdvisoryLockingSynchronousProxy) -> Self {
494        value.into_channel().into()
495    }
496}
497
498#[cfg(target_os = "fuchsia")]
499impl From<fidl::Channel> for AdvisoryLockingSynchronousProxy {
500    fn from(value: fidl::Channel) -> Self {
501        Self::new(value)
502    }
503}
504
505#[derive(Debug, Clone)]
506pub struct AdvisoryLockingProxy {
507    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
508}
509
510impl fidl::endpoints::Proxy for AdvisoryLockingProxy {
511    type Protocol = AdvisoryLockingMarker;
512
513    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
514        Self::new(inner)
515    }
516
517    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
518        self.client.into_channel().map_err(|client| Self { client })
519    }
520
521    fn as_channel(&self) -> &::fidl::AsyncChannel {
522        self.client.as_channel()
523    }
524}
525
526impl AdvisoryLockingProxy {
527    /// Create a new Proxy for fuchsia.io/AdvisoryLocking.
528    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
529        let protocol_name = <AdvisoryLockingMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
530        Self { client: fidl::client::Client::new(channel, protocol_name) }
531    }
532
533    /// Get a Stream of events from the remote end of the protocol.
534    ///
535    /// # Panics
536    ///
537    /// Panics if the event stream was already taken.
538    pub fn take_event_stream(&self) -> AdvisoryLockingEventStream {
539        AdvisoryLockingEventStream { event_receiver: self.client.take_event_receiver() }
540    }
541
542    /// Acquires an advisory lock on the underlying file.
543    ///
544    /// The lock lasts until either this connection is closed or
545    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
546    /// explicitly.
547    ///
548    /// Advisory locks are purely advisory. They do not prevent actual read or
549    /// write operations from occurring on the file, either through this
550    /// connection or through other connections.
551    ///
552    /// This method requires the following rights:
553    ///
554    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
555    /// * [`Rights.WRITE_BYTES`] if `request.type` is
556    ///   [`AdvisoryLockType.WRITE`].
557    ///
558    /// # Errors
559    ///
560    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
561    ///   example, another connection might hold a conflicting lock type.
562    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
563    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
564    ///   to acquire the given type of lock.
565    pub fn r#advisory_lock(
566        &self,
567        mut request: &AdvisoryLockRequest,
568    ) -> fidl::client::QueryResponseFut<
569        AdvisoryLockingAdvisoryLockResult,
570        fidl::encoding::DefaultFuchsiaResourceDialect,
571    > {
572        AdvisoryLockingProxyInterface::r#advisory_lock(self, request)
573    }
574}
575
576impl AdvisoryLockingProxyInterface for AdvisoryLockingProxy {
577    type AdvisoryLockResponseFut = fidl::client::QueryResponseFut<
578        AdvisoryLockingAdvisoryLockResult,
579        fidl::encoding::DefaultFuchsiaResourceDialect,
580    >;
581    fn r#advisory_lock(&self, mut request: &AdvisoryLockRequest) -> Self::AdvisoryLockResponseFut {
582        fn _decode(
583            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
584        ) -> Result<AdvisoryLockingAdvisoryLockResult, fidl::Error> {
585            let _response = fidl::client::decode_transaction_body::<
586                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
587                fidl::encoding::DefaultFuchsiaResourceDialect,
588                0x6ee9c0ad53ec87aa,
589            >(_buf?)?;
590            Ok(_response.map(|x| x))
591        }
592        self.client.send_query_and_decode::<
593            AdvisoryLockingAdvisoryLockRequest,
594            AdvisoryLockingAdvisoryLockResult,
595        >(
596            (request,),
597            0x6ee9c0ad53ec87aa,
598            fidl::encoding::DynamicFlags::empty(),
599            _decode,
600        )
601    }
602}
603
604pub struct AdvisoryLockingEventStream {
605    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
606}
607
608impl std::marker::Unpin for AdvisoryLockingEventStream {}
609
610impl futures::stream::FusedStream for AdvisoryLockingEventStream {
611    fn is_terminated(&self) -> bool {
612        self.event_receiver.is_terminated()
613    }
614}
615
616impl futures::Stream for AdvisoryLockingEventStream {
617    type Item = Result<AdvisoryLockingEvent, fidl::Error>;
618
619    fn poll_next(
620        mut self: std::pin::Pin<&mut Self>,
621        cx: &mut std::task::Context<'_>,
622    ) -> std::task::Poll<Option<Self::Item>> {
623        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
624            &mut self.event_receiver,
625            cx
626        )?) {
627            Some(buf) => std::task::Poll::Ready(Some(AdvisoryLockingEvent::decode(buf))),
628            None => std::task::Poll::Ready(None),
629        }
630    }
631}
632
633#[derive(Debug)]
634pub enum AdvisoryLockingEvent {}
635
636impl AdvisoryLockingEvent {
637    /// Decodes a message buffer as a [`AdvisoryLockingEvent`].
638    fn decode(
639        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
640    ) -> Result<AdvisoryLockingEvent, fidl::Error> {
641        let (bytes, _handles) = buf.split_mut();
642        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
643        debug_assert_eq!(tx_header.tx_id, 0);
644        match tx_header.ordinal {
645            _ => Err(fidl::Error::UnknownOrdinal {
646                ordinal: tx_header.ordinal,
647                protocol_name:
648                    <AdvisoryLockingMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
649            }),
650        }
651    }
652}
653
654/// A Stream of incoming requests for fuchsia.io/AdvisoryLocking.
655pub struct AdvisoryLockingRequestStream {
656    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
657    is_terminated: bool,
658}
659
660impl std::marker::Unpin for AdvisoryLockingRequestStream {}
661
662impl futures::stream::FusedStream for AdvisoryLockingRequestStream {
663    fn is_terminated(&self) -> bool {
664        self.is_terminated
665    }
666}
667
668impl fidl::endpoints::RequestStream for AdvisoryLockingRequestStream {
669    type Protocol = AdvisoryLockingMarker;
670    type ControlHandle = AdvisoryLockingControlHandle;
671
672    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
673        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
674    }
675
676    fn control_handle(&self) -> Self::ControlHandle {
677        AdvisoryLockingControlHandle { inner: self.inner.clone() }
678    }
679
680    fn into_inner(
681        self,
682    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
683    {
684        (self.inner, self.is_terminated)
685    }
686
687    fn from_inner(
688        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
689        is_terminated: bool,
690    ) -> Self {
691        Self { inner, is_terminated }
692    }
693}
694
695impl futures::Stream for AdvisoryLockingRequestStream {
696    type Item = Result<AdvisoryLockingRequest, fidl::Error>;
697
698    fn poll_next(
699        mut self: std::pin::Pin<&mut Self>,
700        cx: &mut std::task::Context<'_>,
701    ) -> std::task::Poll<Option<Self::Item>> {
702        let this = &mut *self;
703        if this.inner.check_shutdown(cx) {
704            this.is_terminated = true;
705            return std::task::Poll::Ready(None);
706        }
707        if this.is_terminated {
708            panic!("polled AdvisoryLockingRequestStream after completion");
709        }
710        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
711            |bytes, handles| {
712                match this.inner.channel().read_etc(cx, bytes, handles) {
713                    std::task::Poll::Ready(Ok(())) => {}
714                    std::task::Poll::Pending => return std::task::Poll::Pending,
715                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
716                        this.is_terminated = true;
717                        return std::task::Poll::Ready(None);
718                    }
719                    std::task::Poll::Ready(Err(e)) => {
720                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
721                            e.into(),
722                        ))))
723                    }
724                }
725
726                // A message has been received from the channel
727                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
728
729                std::task::Poll::Ready(Some(match header.ordinal {
730                    0x6ee9c0ad53ec87aa => {
731                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
732                        let mut req = fidl::new_empty!(
733                            AdvisoryLockingAdvisoryLockRequest,
734                            fidl::encoding::DefaultFuchsiaResourceDialect
735                        );
736                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<AdvisoryLockingAdvisoryLockRequest>(&header, _body_bytes, handles, &mut req)?;
737                        let control_handle =
738                            AdvisoryLockingControlHandle { inner: this.inner.clone() };
739                        Ok(AdvisoryLockingRequest::AdvisoryLock {
740                            request: req.request,
741
742                            responder: AdvisoryLockingAdvisoryLockResponder {
743                                control_handle: std::mem::ManuallyDrop::new(control_handle),
744                                tx_id: header.tx_id,
745                            },
746                        })
747                    }
748                    _ => Err(fidl::Error::UnknownOrdinal {
749                        ordinal: header.ordinal,
750                        protocol_name:
751                            <AdvisoryLockingMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
752                    }),
753                }))
754            },
755        )
756    }
757}
758
759/// Advisory locking protocol.
760///
761/// This protocol is intended to be composed into the |File| protocol to
762/// provide support for advisory locking.
763///
764/// Advisory locks are purely advisory. They do not prevent actual read or
765/// write operations from occurring on the file, either through this
766/// connection or through other connections.
767///
768/// These primitives are designed to support the flock() and fcntl(),
769/// specifically F_SETLK, F_SETLKW, and F_GETLK, functionality that code
770/// running on Fuchsia expects from other operating systems.
771#[derive(Debug)]
772pub enum AdvisoryLockingRequest {
773    /// Acquires an advisory lock on the underlying file.
774    ///
775    /// The lock lasts until either this connection is closed or
776    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
777    /// explicitly.
778    ///
779    /// Advisory locks are purely advisory. They do not prevent actual read or
780    /// write operations from occurring on the file, either through this
781    /// connection or through other connections.
782    ///
783    /// This method requires the following rights:
784    ///
785    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
786    /// * [`Rights.WRITE_BYTES`] if `request.type` is
787    ///   [`AdvisoryLockType.WRITE`].
788    ///
789    /// # Errors
790    ///
791    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
792    ///   example, another connection might hold a conflicting lock type.
793    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
794    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
795    ///   to acquire the given type of lock.
796    AdvisoryLock { request: AdvisoryLockRequest, responder: AdvisoryLockingAdvisoryLockResponder },
797}
798
799impl AdvisoryLockingRequest {
800    #[allow(irrefutable_let_patterns)]
801    pub fn into_advisory_lock(
802        self,
803    ) -> Option<(AdvisoryLockRequest, AdvisoryLockingAdvisoryLockResponder)> {
804        if let AdvisoryLockingRequest::AdvisoryLock { request, responder } = self {
805            Some((request, responder))
806        } else {
807            None
808        }
809    }
810
811    /// Name of the method defined in FIDL
812    pub fn method_name(&self) -> &'static str {
813        match *self {
814            AdvisoryLockingRequest::AdvisoryLock { .. } => "advisory_lock",
815        }
816    }
817}
818
819#[derive(Debug, Clone)]
820pub struct AdvisoryLockingControlHandle {
821    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
822}
823
824impl fidl::endpoints::ControlHandle for AdvisoryLockingControlHandle {
825    fn shutdown(&self) {
826        self.inner.shutdown()
827    }
828    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
829        self.inner.shutdown_with_epitaph(status)
830    }
831
832    fn is_closed(&self) -> bool {
833        self.inner.channel().is_closed()
834    }
835    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
836        self.inner.channel().on_closed()
837    }
838
839    #[cfg(target_os = "fuchsia")]
840    fn signal_peer(
841        &self,
842        clear_mask: zx::Signals,
843        set_mask: zx::Signals,
844    ) -> Result<(), zx_status::Status> {
845        use fidl::Peered;
846        self.inner.channel().signal_peer(clear_mask, set_mask)
847    }
848}
849
850impl AdvisoryLockingControlHandle {}
851
852#[must_use = "FIDL methods require a response to be sent"]
853#[derive(Debug)]
854pub struct AdvisoryLockingAdvisoryLockResponder {
855    control_handle: std::mem::ManuallyDrop<AdvisoryLockingControlHandle>,
856    tx_id: u32,
857}
858
859/// Set the the channel to be shutdown (see [`AdvisoryLockingControlHandle::shutdown`])
860/// if the responder is dropped without sending a response, so that the client
861/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
862impl std::ops::Drop for AdvisoryLockingAdvisoryLockResponder {
863    fn drop(&mut self) {
864        self.control_handle.shutdown();
865        // Safety: drops once, never accessed again
866        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
867    }
868}
869
870impl fidl::endpoints::Responder for AdvisoryLockingAdvisoryLockResponder {
871    type ControlHandle = AdvisoryLockingControlHandle;
872
873    fn control_handle(&self) -> &AdvisoryLockingControlHandle {
874        &self.control_handle
875    }
876
877    fn drop_without_shutdown(mut self) {
878        // Safety: drops once, never accessed again due to mem::forget
879        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
880        // Prevent Drop from running (which would shut down the channel)
881        std::mem::forget(self);
882    }
883}
884
885impl AdvisoryLockingAdvisoryLockResponder {
886    /// Sends a response to the FIDL transaction.
887    ///
888    /// Sets the channel to shutdown if an error occurs.
889    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
890        let _result = self.send_raw(result);
891        if _result.is_err() {
892            self.control_handle.shutdown();
893        }
894        self.drop_without_shutdown();
895        _result
896    }
897
898    /// Similar to "send" but does not shutdown the channel if an error occurs.
899    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
900        let _result = self.send_raw(result);
901        self.drop_without_shutdown();
902        _result
903    }
904
905    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
906        self.control_handle
907            .inner
908            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
909                result,
910                self.tx_id,
911                0x6ee9c0ad53ec87aa,
912                fidl::encoding::DynamicFlags::empty(),
913            )
914    }
915}
916
917#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
918pub struct DirectoryMarker;
919
920impl fidl::endpoints::ProtocolMarker for DirectoryMarker {
921    type Proxy = DirectoryProxy;
922    type RequestStream = DirectoryRequestStream;
923    #[cfg(target_os = "fuchsia")]
924    type SynchronousProxy = DirectorySynchronousProxy;
925
926    const DEBUG_NAME: &'static str = "fuchsia.io.Directory";
927}
928impl fidl::endpoints::DiscoverableProtocolMarker for DirectoryMarker {}
929pub type DirectoryUnlinkResult = Result<(), i32>;
930pub type DirectoryRenameResult = Result<(), i32>;
931pub type DirectoryCreateSymlinkResult = Result<(), i32>;
932
933pub trait DirectoryProxyInterface: Send + Sync {
934    type AdvisoryLockResponseFut: std::future::Future<Output = Result<AdvisoryLockingAdvisoryLockResult, fidl::Error>>
935        + Send;
936    fn r#advisory_lock(&self, request: &AdvisoryLockRequest) -> Self::AdvisoryLockResponseFut;
937    fn r#clone(
938        &self,
939        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
940    ) -> Result<(), fidl::Error>;
941    type CloseResponseFut: std::future::Future<
942            Output = Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error>,
943        > + Send;
944    fn r#close(&self) -> Self::CloseResponseFut;
945    type QueryResponseFut: std::future::Future<Output = Result<Vec<u8>, fidl::Error>> + Send;
946    fn r#query(&self) -> Self::QueryResponseFut;
947    fn r#deprecated_clone(
948        &self,
949        flags: OpenFlags,
950        object: fidl::endpoints::ServerEnd<NodeMarker>,
951    ) -> Result<(), fidl::Error>;
952    type GetAttrResponseFut: std::future::Future<Output = Result<(i32, NodeAttributes), fidl::Error>>
953        + Send;
954    fn r#get_attr(&self) -> Self::GetAttrResponseFut;
955    type SetAttrResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
956    fn r#set_attr(
957        &self,
958        flags: NodeAttributeFlags,
959        attributes: &NodeAttributes,
960    ) -> Self::SetAttrResponseFut;
961    type DeprecatedGetFlagsResponseFut: std::future::Future<Output = Result<(i32, OpenFlags), fidl::Error>>
962        + Send;
963    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut;
964    type DeprecatedSetFlagsResponseFut: std::future::Future<Output = Result<i32, fidl::Error>>
965        + Send;
966    fn r#deprecated_set_flags(&self, flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut;
967    type GetFlagsResponseFut: std::future::Future<Output = Result<NodeGetFlagsResult, fidl::Error>>
968        + Send;
969    fn r#get_flags(&self) -> Self::GetFlagsResponseFut;
970    type SetFlagsResponseFut: std::future::Future<Output = Result<NodeSetFlagsResult, fidl::Error>>
971        + Send;
972    fn r#set_flags(&self, flags: Flags) -> Self::SetFlagsResponseFut;
973    type QueryFilesystemResponseFut: std::future::Future<Output = Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error>>
974        + Send;
975    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut;
976    type GetConnectionInfoResponseFut: std::future::Future<Output = Result<ConnectionInfo, fidl::Error>>
977        + Send;
978    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut;
979    type GetAttributesResponseFut: std::future::Future<Output = Result<NodeGetAttributesResult, fidl::Error>>
980        + Send;
981    fn r#get_attributes(&self, query: NodeAttributesQuery) -> Self::GetAttributesResponseFut;
982    type UpdateAttributesResponseFut: std::future::Future<Output = Result<NodeUpdateAttributesResult, fidl::Error>>
983        + Send;
984    fn r#update_attributes(
985        &self,
986        payload: &MutableNodeAttributes,
987    ) -> Self::UpdateAttributesResponseFut;
988    type SyncResponseFut: std::future::Future<Output = Result<NodeSyncResult, fidl::Error>> + Send;
989    fn r#sync(&self) -> Self::SyncResponseFut;
990    fn r#list_extended_attributes(
991        &self,
992        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
993    ) -> Result<(), fidl::Error>;
994    type GetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeGetExtendedAttributeResult, fidl::Error>>
995        + Send;
996    fn r#get_extended_attribute(&self, name: &[u8]) -> Self::GetExtendedAttributeResponseFut;
997    type SetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeSetExtendedAttributeResult, fidl::Error>>
998        + Send;
999    fn r#set_extended_attribute(
1000        &self,
1001        name: &[u8],
1002        value: ExtendedAttributeValue,
1003        mode: SetExtendedAttributeMode,
1004    ) -> Self::SetExtendedAttributeResponseFut;
1005    type RemoveExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeRemoveExtendedAttributeResult, fidl::Error>>
1006        + Send;
1007    fn r#remove_extended_attribute(&self, name: &[u8]) -> Self::RemoveExtendedAttributeResponseFut;
1008    fn r#deprecated_open(
1009        &self,
1010        flags: OpenFlags,
1011        mode: ModeType,
1012        path: &str,
1013        object: fidl::endpoints::ServerEnd<NodeMarker>,
1014    ) -> Result<(), fidl::Error>;
1015    fn r#open(
1016        &self,
1017        path: &str,
1018        flags: Flags,
1019        options: &Options,
1020        object: fidl::Channel,
1021    ) -> Result<(), fidl::Error>;
1022    type ReadDirentsResponseFut: std::future::Future<Output = Result<(i32, Vec<u8>), fidl::Error>>
1023        + Send;
1024    fn r#read_dirents(&self, max_bytes: u64) -> Self::ReadDirentsResponseFut;
1025    type RewindResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
1026    fn r#rewind(&self) -> Self::RewindResponseFut;
1027    type GetTokenResponseFut: std::future::Future<Output = Result<(i32, Option<fidl::Handle>), fidl::Error>>
1028        + Send;
1029    fn r#get_token(&self) -> Self::GetTokenResponseFut;
1030    type LinkResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
1031    fn r#link(&self, src: &str, dst_parent_token: fidl::Handle, dst: &str)
1032        -> Self::LinkResponseFut;
1033    type UnlinkResponseFut: std::future::Future<Output = Result<DirectoryUnlinkResult, fidl::Error>>
1034        + Send;
1035    fn r#unlink(&self, name: &str, options: &UnlinkOptions) -> Self::UnlinkResponseFut;
1036    type RenameResponseFut: std::future::Future<Output = Result<DirectoryRenameResult, fidl::Error>>
1037        + Send;
1038    fn r#rename(
1039        &self,
1040        src: &str,
1041        dst_parent_token: fidl::Event,
1042        dst: &str,
1043    ) -> Self::RenameResponseFut;
1044    type CreateSymlinkResponseFut: std::future::Future<Output = Result<DirectoryCreateSymlinkResult, fidl::Error>>
1045        + Send;
1046    fn r#create_symlink(
1047        &self,
1048        name: &str,
1049        target: &[u8],
1050        connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
1051    ) -> Self::CreateSymlinkResponseFut;
1052    type WatchResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
1053    fn r#watch(
1054        &self,
1055        mask: WatchMask,
1056        options: u32,
1057        watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
1058    ) -> Self::WatchResponseFut;
1059}
1060#[derive(Debug)]
1061#[cfg(target_os = "fuchsia")]
1062pub struct DirectorySynchronousProxy {
1063    client: fidl::client::sync::Client,
1064}
1065
1066#[cfg(target_os = "fuchsia")]
1067impl fidl::endpoints::SynchronousProxy for DirectorySynchronousProxy {
1068    type Proxy = DirectoryProxy;
1069    type Protocol = DirectoryMarker;
1070
1071    fn from_channel(inner: fidl::Channel) -> Self {
1072        Self::new(inner)
1073    }
1074
1075    fn into_channel(self) -> fidl::Channel {
1076        self.client.into_channel()
1077    }
1078
1079    fn as_channel(&self) -> &fidl::Channel {
1080        self.client.as_channel()
1081    }
1082}
1083
1084#[cfg(target_os = "fuchsia")]
1085impl DirectorySynchronousProxy {
1086    pub fn new(channel: fidl::Channel) -> Self {
1087        let protocol_name = <DirectoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1088        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
1089    }
1090
1091    pub fn into_channel(self) -> fidl::Channel {
1092        self.client.into_channel()
1093    }
1094
1095    /// Waits until an event arrives and returns it. It is safe for other
1096    /// threads to make concurrent requests while waiting for an event.
1097    pub fn wait_for_event(
1098        &self,
1099        deadline: zx::MonotonicInstant,
1100    ) -> Result<DirectoryEvent, fidl::Error> {
1101        DirectoryEvent::decode(self.client.wait_for_event(deadline)?)
1102    }
1103
1104    /// Acquires an advisory lock on the underlying file.
1105    ///
1106    /// The lock lasts until either this connection is closed or
1107    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
1108    /// explicitly.
1109    ///
1110    /// Advisory locks are purely advisory. They do not prevent actual read or
1111    /// write operations from occurring on the file, either through this
1112    /// connection or through other connections.
1113    ///
1114    /// This method requires the following rights:
1115    ///
1116    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
1117    /// * [`Rights.WRITE_BYTES`] if `request.type` is
1118    ///   [`AdvisoryLockType.WRITE`].
1119    ///
1120    /// # Errors
1121    ///
1122    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
1123    ///   example, another connection might hold a conflicting lock type.
1124    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
1125    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
1126    ///   to acquire the given type of lock.
1127    pub fn r#advisory_lock(
1128        &self,
1129        mut request: &AdvisoryLockRequest,
1130        ___deadline: zx::MonotonicInstant,
1131    ) -> Result<AdvisoryLockingAdvisoryLockResult, fidl::Error> {
1132        let _response = self.client.send_query::<
1133            AdvisoryLockingAdvisoryLockRequest,
1134            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1135        >(
1136            (request,),
1137            0x6ee9c0ad53ec87aa,
1138            fidl::encoding::DynamicFlags::empty(),
1139            ___deadline,
1140        )?;
1141        Ok(_response.map(|x| x))
1142    }
1143
1144    pub fn r#clone(
1145        &self,
1146        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
1147    ) -> Result<(), fidl::Error> {
1148        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
1149            (request,),
1150            0x20d8a7aba2168a79,
1151            fidl::encoding::DynamicFlags::empty(),
1152        )
1153    }
1154
1155    /// Terminates the connection.
1156    ///
1157    /// After calling `Close`, the client must not send any other requests.
1158    ///
1159    /// Servers, after sending the status response, should close the connection
1160    /// regardless of status and without sending an epitaph.
1161    ///
1162    /// Closing the client end of the channel should be semantically equivalent
1163    /// to calling `Close` without knowing when the close has completed or its
1164    /// status.
1165    pub fn r#close(
1166        &self,
1167        ___deadline: zx::MonotonicInstant,
1168    ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
1169        let _response = self.client.send_query::<
1170            fidl::encoding::EmptyPayload,
1171            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1172        >(
1173            (),
1174            0x5ac5d459ad7f657e,
1175            fidl::encoding::DynamicFlags::empty(),
1176            ___deadline,
1177        )?;
1178        Ok(_response.map(|x| x))
1179    }
1180
1181    pub fn r#query(&self, ___deadline: zx::MonotonicInstant) -> Result<Vec<u8>, fidl::Error> {
1182        let _response = self.client.send_query::<
1183            fidl::encoding::EmptyPayload,
1184            fidl_fuchsia_unknown::QueryableQueryResponse,
1185        >(
1186            (),
1187            0x2658edee9decfc06,
1188            fidl::encoding::DynamicFlags::empty(),
1189            ___deadline,
1190        )?;
1191        Ok(_response.protocol)
1192    }
1193
1194    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
1195    pub fn r#deprecated_clone(
1196        &self,
1197        mut flags: OpenFlags,
1198        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
1199    ) -> Result<(), fidl::Error> {
1200        self.client.send::<NodeDeprecatedCloneRequest>(
1201            (flags, object),
1202            0x5a61678f293ce16f,
1203            fidl::encoding::DynamicFlags::FLEXIBLE,
1204        )
1205    }
1206
1207    /// Acquires information about the node.
1208    ///
1209    /// This method does not require any rights.
1210    pub fn r#get_attr(
1211        &self,
1212        ___deadline: zx::MonotonicInstant,
1213    ) -> Result<(i32, NodeAttributes), fidl::Error> {
1214        let _response =
1215            self.client.send_query::<fidl::encoding::EmptyPayload, NodeGetAttrResponse>(
1216                (),
1217                0x78985e216314dafd,
1218                fidl::encoding::DynamicFlags::empty(),
1219                ___deadline,
1220            )?;
1221        Ok((_response.s, _response.attributes))
1222    }
1223
1224    /// Updates information about the node.
1225    ///
1226    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
1227    ///
1228    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
1229    /// `ZX_ERR_BAD_HANDLE`.
1230    pub fn r#set_attr(
1231        &self,
1232        mut flags: NodeAttributeFlags,
1233        mut attributes: &NodeAttributes,
1234        ___deadline: zx::MonotonicInstant,
1235    ) -> Result<i32, fidl::Error> {
1236        let _response = self.client.send_query::<NodeSetAttrRequest, NodeSetAttrResponse>(
1237            (flags, attributes),
1238            0x4186c0f40d938f46,
1239            fidl::encoding::DynamicFlags::empty(),
1240            ___deadline,
1241        )?;
1242        Ok(_response.s)
1243    }
1244
1245    /// [DEPRECATED - Use new GetFlags method instead.]
1246    pub fn r#deprecated_get_flags(
1247        &self,
1248        ___deadline: zx::MonotonicInstant,
1249    ) -> Result<(i32, OpenFlags), fidl::Error> {
1250        let _response = self
1251            .client
1252            .send_query::<fidl::encoding::EmptyPayload, NodeDeprecatedGetFlagsResponse>(
1253                (),
1254                0x5b88fffb8eda3aa1,
1255                fidl::encoding::DynamicFlags::empty(),
1256                ___deadline,
1257            )?;
1258        Ok((_response.s, _response.flags))
1259    }
1260
1261    /// [DEPRECATED - Use new SetFlags method instead.]
1262    pub fn r#deprecated_set_flags(
1263        &self,
1264        mut flags: OpenFlags,
1265        ___deadline: zx::MonotonicInstant,
1266    ) -> Result<i32, fidl::Error> {
1267        let _response = self
1268            .client
1269            .send_query::<NodeDeprecatedSetFlagsRequest, NodeDeprecatedSetFlagsResponse>(
1270                (flags,),
1271                0x5295b76c71fde733,
1272                fidl::encoding::DynamicFlags::empty(),
1273                ___deadline,
1274            )?;
1275        Ok(_response.s)
1276    }
1277
1278    /// Queries the flags that apply to this node after it has been opened/created. This method does
1279    /// not require any rights.
1280    ///
1281    /// Note that the final set of flags that apply to the connection may differ from those
1282    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
1283    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
1284    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
1285    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
1286    pub fn r#get_flags(
1287        &self,
1288        ___deadline: zx::MonotonicInstant,
1289    ) -> Result<NodeGetFlagsResult, fidl::Error> {
1290        let _response = self.client.send_query::<
1291            fidl::encoding::EmptyPayload,
1292            fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
1293        >(
1294            (),
1295            0x176eb318f64ec23,
1296            fidl::encoding::DynamicFlags::FLEXIBLE,
1297            ___deadline,
1298        )?
1299        .into_result::<DirectoryMarker>("get_flags")?;
1300        Ok(_response.map(|x| x.flags))
1301    }
1302
1303    /// Sets the flags that apply to this node after it has been opened. This method does not
1304    /// require any rights.
1305    ///
1306    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
1307    /// clear append mode.
1308    ///
1309    /// Errors:
1310    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
1311    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
1312    pub fn r#set_flags(
1313        &self,
1314        mut flags: Flags,
1315        ___deadline: zx::MonotonicInstant,
1316    ) -> Result<NodeSetFlagsResult, fidl::Error> {
1317        let _response = self.client.send_query::<
1318            NodeSetFlagsRequest,
1319            fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
1320        >(
1321            (flags,),
1322            0x55a8028685791ea8,
1323            fidl::encoding::DynamicFlags::FLEXIBLE,
1324            ___deadline,
1325        )?
1326        .into_result::<DirectoryMarker>("set_flags")?;
1327        Ok(_response.map(|x| x))
1328    }
1329
1330    /// Query the filesystem for filesystem-specific information.
1331    pub fn r#query_filesystem(
1332        &self,
1333        ___deadline: zx::MonotonicInstant,
1334    ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
1335        let _response =
1336            self.client.send_query::<fidl::encoding::EmptyPayload, NodeQueryFilesystemResponse>(
1337                (),
1338                0x6f344a1c6b0a0610,
1339                fidl::encoding::DynamicFlags::empty(),
1340                ___deadline,
1341            )?;
1342        Ok((_response.s, _response.info))
1343    }
1344
1345    /// Acquires information about the connection.
1346    ///
1347    /// This method does not require any rights.
1348    pub fn r#get_connection_info(
1349        &self,
1350        ___deadline: zx::MonotonicInstant,
1351    ) -> Result<ConnectionInfo, fidl::Error> {
1352        let _response = self.client.send_query::<fidl::encoding::EmptyPayload, ConnectionInfo>(
1353            (),
1354            0x584c377c7c0a6d0b,
1355            fidl::encoding::DynamicFlags::empty(),
1356            ___deadline,
1357        )?;
1358        Ok(_response)
1359    }
1360
1361    /// Acquires information about the node.
1362    ///
1363    /// The attributes of a node should be stable, independent of the
1364    /// specific protocol used to access it.
1365    ///
1366    /// If a particular attribute is not applicable or not supported,
1367    /// filesystems should leave the corresponding field absent.
1368    ///
1369    /// + `query` a bit-mask specifying which attributes to fetch. The server
1370    ///   should not return more than necessary.
1371    /// - `attributes` the returned attributes.
1372    ///
1373    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
1374    pub fn r#get_attributes(
1375        &self,
1376        mut query: NodeAttributesQuery,
1377        ___deadline: zx::MonotonicInstant,
1378    ) -> Result<NodeGetAttributesResult, fidl::Error> {
1379        let _response = self.client.send_query::<
1380            NodeGetAttributesRequest,
1381            fidl::encoding::ResultType<NodeAttributes2, i32>,
1382        >(
1383            (query,),
1384            0x3d4396a638ea053b,
1385            fidl::encoding::DynamicFlags::empty(),
1386            ___deadline,
1387        )?;
1388        Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
1389    }
1390
1391    /// Updates information about the node.
1392    ///
1393    /// + `attributes` the presence of a table field in `attributes` indicates
1394    /// the intent to update the corresponding attribute.
1395    ///
1396    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
1397    ///
1398    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
1399    pub fn r#update_attributes(
1400        &self,
1401        mut payload: &MutableNodeAttributes,
1402        ___deadline: zx::MonotonicInstant,
1403    ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
1404        let _response = self.client.send_query::<
1405            MutableNodeAttributes,
1406            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1407        >(
1408            payload,
1409            0x3308c1da5a89bf08,
1410            fidl::encoding::DynamicFlags::empty(),
1411            ___deadline,
1412        )?;
1413        Ok(_response.map(|x| x))
1414    }
1415
1416    /// Synchronizes updates to the node to the underlying media, if it exists.
1417    ///
1418    /// This method will return when the filesystem server has flushed the
1419    /// relevant updates to the underlying media, but does not guarantee the
1420    /// underlying media has persisted the information, nor that any information
1421    /// is committed to hardware. Clients may use `Sync` to ensure ordering
1422    /// between operations.
1423    ///
1424    /// This method does not require any rights.
1425    pub fn r#sync(&self, ___deadline: zx::MonotonicInstant) -> Result<NodeSyncResult, fidl::Error> {
1426        let _response = self.client.send_query::<
1427            fidl::encoding::EmptyPayload,
1428            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1429        >(
1430            (),
1431            0x2c5c27ca0ab5dc49,
1432            fidl::encoding::DynamicFlags::empty(),
1433            ___deadline,
1434        )?;
1435        Ok(_response.map(|x| x))
1436    }
1437
1438    /// Creates an iterator over all the extended attribute names associated
1439    /// with this node. If an error occurs it is returned as an epitaph on the
1440    /// iterator request channel, and then the channel is closed.
1441    ///
1442    /// GetExtendedAttributes can be used with any of these names to retrieve
1443    /// the associated value.
1444    ///
1445    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
1446    pub fn r#list_extended_attributes(
1447        &self,
1448        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
1449    ) -> Result<(), fidl::Error> {
1450        self.client.send::<NodeListExtendedAttributesRequest>(
1451            (iterator,),
1452            0x4b61033de007fcd0,
1453            fidl::encoding::DynamicFlags::empty(),
1454        )
1455    }
1456
1457    /// Get the value associated with the given attribute `name` for this node.
1458    ///
1459    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
1460    /// particular structure is imposed on them.
1461    ///
1462    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
1463    pub fn r#get_extended_attribute(
1464        &self,
1465        mut name: &[u8],
1466        ___deadline: zx::MonotonicInstant,
1467    ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
1468        let _response = self.client.send_query::<
1469            NodeGetExtendedAttributeRequest,
1470            fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
1471        >(
1472            (name,),
1473            0x45ffa3ccfdeb76db,
1474            fidl::encoding::DynamicFlags::empty(),
1475            ___deadline,
1476        )?;
1477        Ok(_response.map(|x| x))
1478    }
1479
1480    /// Set the value for the given attribute `name` to `value` for this node.
1481    ///
1482    /// The attribute name may exist, in which case the attribute is updated.
1483    /// If the attribute doesn't exist, it is created. The name should have no
1484    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
1485    ///
1486    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
1487    pub fn r#set_extended_attribute(
1488        &self,
1489        mut name: &[u8],
1490        mut value: ExtendedAttributeValue,
1491        mut mode: SetExtendedAttributeMode,
1492        ___deadline: zx::MonotonicInstant,
1493    ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
1494        let _response = self.client.send_query::<
1495            NodeSetExtendedAttributeRequest,
1496            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1497        >(
1498            (name, &mut value, mode,),
1499            0x4a951362f681f23c,
1500            fidl::encoding::DynamicFlags::empty(),
1501            ___deadline,
1502        )?;
1503        Ok(_response.map(|x| x))
1504    }
1505
1506    /// Remove the specified extended attribute.
1507    ///
1508    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
1509    ///
1510    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
1511    pub fn r#remove_extended_attribute(
1512        &self,
1513        mut name: &[u8],
1514        ___deadline: zx::MonotonicInstant,
1515    ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
1516        let _response = self.client.send_query::<
1517            NodeRemoveExtendedAttributeRequest,
1518            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1519        >(
1520            (name,),
1521            0x7a0b9f3a9bf9032d,
1522            fidl::encoding::DynamicFlags::empty(),
1523            ___deadline,
1524        )?;
1525        Ok(_response.map(|x| x))
1526    }
1527
1528    /// DEPRECATED - Use `fuchsia.io/Directory.Open` instead.
1529    pub fn r#deprecated_open(
1530        &self,
1531        mut flags: OpenFlags,
1532        mut mode: ModeType,
1533        mut path: &str,
1534        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
1535    ) -> Result<(), fidl::Error> {
1536        self.client.send::<DirectoryDeprecatedOpenRequest>(
1537            (flags, mode, path, object),
1538            0x2c5044561d685ec0,
1539            fidl::encoding::DynamicFlags::empty(),
1540        )
1541    }
1542
1543    /// Open (or create) a node relative to this directory. Any errors are communicated via an
1544    /// epitaph sent on the `object` channel.
1545    ///
1546    /// Errors:
1547    /// * `ZX_ERR_BAD_PATH` if `path` is invalid
1548    /// * See [`Flags`] for other errors which may be communicated based on `flags`
1549    pub fn r#open(
1550        &self,
1551        mut path: &str,
1552        mut flags: Flags,
1553        mut options: &Options,
1554        mut object: fidl::Channel,
1555    ) -> Result<(), fidl::Error> {
1556        self.client.send::<DirectoryOpenRequest>(
1557            (path, flags, options, object),
1558            0x568ddcb9a9cbb6d9,
1559            fidl::encoding::DynamicFlags::empty(),
1560        )
1561    }
1562
1563    /// Reads a collection of variably sized dirents into a buffer.
1564    /// The number of dirents in a directory may be very large: akin to
1565    /// calling read multiple times on a file, directories have a seek
1566    /// offset which is updated on subsequent calls to ReadDirents.
1567    /// Each call to ReadDirents will only return whole dirent structures,
1568    /// they will not get split across ReadDirent calls. When the seek
1569    /// offset reaches the end, `dirents` will be empty.
1570    ///
1571    /// These dirents are of the form:
1572    /// ```
1573    /// struct dirent {
1574    ///   // Describes the inode of the entry.
1575    ///   uint64 ino;
1576    ///   // Describes the length of the dirent name in bytes.
1577    ///   uint8 size;
1578    ///   // Describes the type of the entry. Aligned with the
1579    ///   // POSIX d_type values. Use `DirentType` constants.
1580    ///   uint8 type;
1581    ///   // Unterminated name of entry.
1582    ///   char name[0];
1583    /// }
1584    /// ```
1585    ///
1586    /// This method does not require any rights, since one could always probe for
1587    /// directory contents by triggering name conflicts during file creation.
1588    pub fn r#read_dirents(
1589        &self,
1590        mut max_bytes: u64,
1591        ___deadline: zx::MonotonicInstant,
1592    ) -> Result<(i32, Vec<u8>), fidl::Error> {
1593        let _response =
1594            self.client.send_query::<DirectoryReadDirentsRequest, DirectoryReadDirentsResponse>(
1595                (max_bytes,),
1596                0x3582806bf27faa0a,
1597                fidl::encoding::DynamicFlags::empty(),
1598                ___deadline,
1599            )?;
1600        Ok((_response.s, _response.dirents))
1601    }
1602
1603    /// Resets the directory seek offset.
1604    ///
1605    /// This method does not require any rights, similar to ReadDirents.
1606    pub fn r#rewind(&self, ___deadline: zx::MonotonicInstant) -> Result<i32, fidl::Error> {
1607        let _response =
1608            self.client.send_query::<fidl::encoding::EmptyPayload, DirectoryRewindResponse>(
1609                (),
1610                0x16b1202af0f34c71,
1611                fidl::encoding::DynamicFlags::empty(),
1612                ___deadline,
1613            )?;
1614        Ok(_response.s)
1615    }
1616
1617    /// Acquires a token to a Directory which can be used to identify access to it at a later point
1618    /// in time. The token will remain valid for as long as the connection requesting the token
1619    /// remains open.
1620    ///
1621    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
1622    /// `ZX_ERR_BAD_HANDLE`.
1623    pub fn r#get_token(
1624        &self,
1625        ___deadline: zx::MonotonicInstant,
1626    ) -> Result<(i32, Option<fidl::Handle>), fidl::Error> {
1627        let _response =
1628            self.client.send_query::<fidl::encoding::EmptyPayload, DirectoryGetTokenResponse>(
1629                (),
1630                0x26ae9d18763c8655,
1631                fidl::encoding::DynamicFlags::empty(),
1632                ___deadline,
1633            )?;
1634        Ok((_response.s, _response.token))
1635    }
1636
1637    /// Creates a link to an object named src by the name dst, within a directory represented by
1638    /// token.
1639    ///
1640    /// `src` must be a resolved object name. Including "/" in the string will
1641    /// return `ZX_ERR_INVALID_ARGS`.
1642    ///
1643    /// `dst` must be a resolved object name. Including "/" in the string will
1644    /// return `ZX_ERR_INVALID_ARGS`.
1645    ///
1646    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE` and
1647    /// `OpenFlags.RIGHT_READABLE`, otherwise returns `ZX_ERR_BAD_HANDLE`.
1648    ///
1649    /// This will be atomic with respect to renaming or unlinking the source concurrently e.g. if
1650    /// there are two actors operating concurrently, and one actor performs a rename that affects
1651    /// the source within this directory, and the other does a link, each will appear to occur
1652    /// atomically in an unspecified order.
1653    pub fn r#link(
1654        &self,
1655        mut src: &str,
1656        mut dst_parent_token: fidl::Handle,
1657        mut dst: &str,
1658        ___deadline: zx::MonotonicInstant,
1659    ) -> Result<i32, fidl::Error> {
1660        let _response = self.client.send_query::<DirectoryLinkRequest, DirectoryLinkResponse>(
1661            (src, dst_parent_token, dst),
1662            0x740604c0c7c930e7,
1663            fidl::encoding::DynamicFlags::empty(),
1664            ___deadline,
1665        )?;
1666        Ok(_response.s)
1667    }
1668
1669    /// Removes a child node from the this directory's list of entries.
1670    ///
1671    /// Note: this does not guarantee that the underlying object is destroyed.
1672    /// Although the link will be removed from the containing directory,
1673    /// objects with multiple references (such as files which are still open)
1674    /// will not actually be destroyed until all references are closed.
1675    ///
1676    /// * error `ZX_ERR_ACCESS_DENIED` if the connection does not have
1677    ///   [`Rights.WRITE_BYTES`].
1678    /// * error `ZX_ERR_NOT_SUPPORTED` if the underlying filesystem does not
1679    ///   support writing.
1680    /// * error `ZX_ERR_BAD_PATH` if `name` is invalid.
1681    /// * error `ZX_ERR_NOT_EMPTY` if `name` refers to a non-empty directory.
1682    /// * error `ZX_ERR_UNAVAILABLE` if `name` refers to a mount point,
1683    ///   containing a remote channel.
1684    /// * error `ZX_ERR_NOT_DIR` if the options requested a directory but
1685    ///     something other than a directory was found.
1686    ///
1687    /// Other errors may be returned for filesystem-specific reasons.
1688    ///
1689    /// This method requires the following rights:
1690    ///
1691    /// * [`Rights.ENUMERATE`]
1692    /// * [`Rights.MODIFY_DIRECTORY`]
1693    pub fn r#unlink(
1694        &self,
1695        mut name: &str,
1696        mut options: &UnlinkOptions,
1697        ___deadline: zx::MonotonicInstant,
1698    ) -> Result<DirectoryUnlinkResult, fidl::Error> {
1699        let _response = self.client.send_query::<
1700            DirectoryUnlinkRequest,
1701            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1702        >(
1703            (name, options,),
1704            0x750a0326a78d7bed,
1705            fidl::encoding::DynamicFlags::empty(),
1706            ___deadline,
1707        )?;
1708        Ok(_response.map(|x| x))
1709    }
1710
1711    /// Renames a node named `src` to the name `dst`, in a directory represented
1712    /// by `dst_parent_token`.
1713    ///
1714    /// `src` and `dst` must be valid node names.
1715    /// See [`Name`] for what constitutes a valid name.
1716    ///
1717    /// This method requires the following rights on both the current connection, and the connection
1718    /// identified by `dst_parent_token`:
1719    ///
1720    /// * [`Rights.ENUMERATE`]
1721    /// * [`Rights.MODIFY_DIRECTORY`]
1722    ///
1723    /// The following requirements are necessary to avoid rights escalations.
1724    ///
1725    /// If the source and destination directory differ, the source directory must also have the
1726    /// maximal set of abilities supported for files, which would typically be
1727    /// [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`], [`Rights.GET_ATTRIBUTES`] and
1728    /// [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also support the [`Rights.EXECUTE`]
1729    /// right.
1730    ///
1731    /// If `src` refers to a directory, and differs from the destination directory, then the source
1732    /// directory must have also have the [`Rights.CONNECT`] and [`Rights.TRAVERSE`] rights.
1733    ///
1734    /// * error `ZX_ERR_INVALID_ARGS` if `src` or `dst` is invalid.
1735    /// * error `ZX_ERR_ACCESS_DENIED` for insufficient rights.
1736    pub fn r#rename(
1737        &self,
1738        mut src: &str,
1739        mut dst_parent_token: fidl::Event,
1740        mut dst: &str,
1741        ___deadline: zx::MonotonicInstant,
1742    ) -> Result<DirectoryRenameResult, fidl::Error> {
1743        let _response = self.client.send_query::<
1744            DirectoryRenameRequest,
1745            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1746        >(
1747            (src, dst_parent_token, dst,),
1748            0x7060e7723b9928de,
1749            fidl::encoding::DynamicFlags::empty(),
1750            ___deadline,
1751        )?;
1752        Ok(_response.map(|x| x))
1753    }
1754
1755    /// Creates a symbolic link.
1756    ///
1757    /// `name` is the name to be given to the created symbolic link.
1758    /// `target` is the target of the symbolic link, which has no meaning on the server. The server
1759    /// will perform no validation of `target` except for a server chosen maximum length.
1760    /// `connection` is an optional server end of a channel that will speak the Symlink protocol
1761    /// on the successfully created node.
1762    ///
1763    /// * [`Rights.MODIFY_DIRECTORY`]
1764    ///
1765    /// * error `ZX_ERR_ALREADY_EXISTS` if `name` already exists.
1766    /// * error `ZX_ERR_BAD_PATH` if `target` exceeds the server length limit for symbolic links.
1767    /// * error `ZX_ERR_INVALID_ARGS` if `name` is not a valid [`Name`].
1768    /// * error `ZX_ERR_NOT_SUPPORTED` if creating symbolic links is not supported by the server.
1769    pub fn r#create_symlink(
1770        &self,
1771        mut name: &str,
1772        mut target: &[u8],
1773        mut connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
1774        ___deadline: zx::MonotonicInstant,
1775    ) -> Result<DirectoryCreateSymlinkResult, fidl::Error> {
1776        let _response = self.client.send_query::<
1777            DirectoryCreateSymlinkRequest,
1778            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
1779        >(
1780            (name, target, connection,),
1781            0x21ce0f19ec043889,
1782            fidl::encoding::DynamicFlags::empty(),
1783            ___deadline,
1784        )?;
1785        Ok(_response.map(|x| x))
1786    }
1787
1788    /// Watches a directory, receiving events of added messages on the
1789    /// watcher request channel.
1790    ///
1791    /// Options must be zero; it is reserved.
1792    ///
1793    /// This method does not require any rights, similar to ReadDirents.
1794    pub fn r#watch(
1795        &self,
1796        mut mask: WatchMask,
1797        mut options: u32,
1798        mut watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
1799        ___deadline: zx::MonotonicInstant,
1800    ) -> Result<i32, fidl::Error> {
1801        let _response = self.client.send_query::<DirectoryWatchRequest, DirectoryWatchResponse>(
1802            (mask, options, watcher),
1803            0x5717193a59d66d91,
1804            fidl::encoding::DynamicFlags::empty(),
1805            ___deadline,
1806        )?;
1807        Ok(_response.s)
1808    }
1809}
1810
1811#[cfg(target_os = "fuchsia")]
1812impl From<DirectorySynchronousProxy> for zx::Handle {
1813    fn from(value: DirectorySynchronousProxy) -> Self {
1814        value.into_channel().into()
1815    }
1816}
1817
1818#[cfg(target_os = "fuchsia")]
1819impl From<fidl::Channel> for DirectorySynchronousProxy {
1820    fn from(value: fidl::Channel) -> Self {
1821        Self::new(value)
1822    }
1823}
1824
1825#[derive(Debug, Clone)]
1826pub struct DirectoryProxy {
1827    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
1828}
1829
1830impl fidl::endpoints::Proxy for DirectoryProxy {
1831    type Protocol = DirectoryMarker;
1832
1833    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
1834        Self::new(inner)
1835    }
1836
1837    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
1838        self.client.into_channel().map_err(|client| Self { client })
1839    }
1840
1841    fn as_channel(&self) -> &::fidl::AsyncChannel {
1842        self.client.as_channel()
1843    }
1844}
1845
1846impl DirectoryProxy {
1847    /// Create a new Proxy for fuchsia.io/Directory.
1848    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
1849        let protocol_name = <DirectoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1850        Self { client: fidl::client::Client::new(channel, protocol_name) }
1851    }
1852
1853    /// Get a Stream of events from the remote end of the protocol.
1854    ///
1855    /// # Panics
1856    ///
1857    /// Panics if the event stream was already taken.
1858    pub fn take_event_stream(&self) -> DirectoryEventStream {
1859        DirectoryEventStream { event_receiver: self.client.take_event_receiver() }
1860    }
1861
1862    /// Acquires an advisory lock on the underlying file.
1863    ///
1864    /// The lock lasts until either this connection is closed or
1865    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
1866    /// explicitly.
1867    ///
1868    /// Advisory locks are purely advisory. They do not prevent actual read or
1869    /// write operations from occurring on the file, either through this
1870    /// connection or through other connections.
1871    ///
1872    /// This method requires the following rights:
1873    ///
1874    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
1875    /// * [`Rights.WRITE_BYTES`] if `request.type` is
1876    ///   [`AdvisoryLockType.WRITE`].
1877    ///
1878    /// # Errors
1879    ///
1880    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
1881    ///   example, another connection might hold a conflicting lock type.
1882    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
1883    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
1884    ///   to acquire the given type of lock.
1885    pub fn r#advisory_lock(
1886        &self,
1887        mut request: &AdvisoryLockRequest,
1888    ) -> fidl::client::QueryResponseFut<
1889        AdvisoryLockingAdvisoryLockResult,
1890        fidl::encoding::DefaultFuchsiaResourceDialect,
1891    > {
1892        DirectoryProxyInterface::r#advisory_lock(self, request)
1893    }
1894
1895    pub fn r#clone(
1896        &self,
1897        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
1898    ) -> Result<(), fidl::Error> {
1899        DirectoryProxyInterface::r#clone(self, request)
1900    }
1901
1902    /// Terminates the connection.
1903    ///
1904    /// After calling `Close`, the client must not send any other requests.
1905    ///
1906    /// Servers, after sending the status response, should close the connection
1907    /// regardless of status and without sending an epitaph.
1908    ///
1909    /// Closing the client end of the channel should be semantically equivalent
1910    /// to calling `Close` without knowing when the close has completed or its
1911    /// status.
1912    pub fn r#close(
1913        &self,
1914    ) -> fidl::client::QueryResponseFut<
1915        fidl_fuchsia_unknown::CloseableCloseResult,
1916        fidl::encoding::DefaultFuchsiaResourceDialect,
1917    > {
1918        DirectoryProxyInterface::r#close(self)
1919    }
1920
1921    pub fn r#query(
1922        &self,
1923    ) -> fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>
1924    {
1925        DirectoryProxyInterface::r#query(self)
1926    }
1927
1928    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
1929    pub fn r#deprecated_clone(
1930        &self,
1931        mut flags: OpenFlags,
1932        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
1933    ) -> Result<(), fidl::Error> {
1934        DirectoryProxyInterface::r#deprecated_clone(self, flags, object)
1935    }
1936
1937    /// Acquires information about the node.
1938    ///
1939    /// This method does not require any rights.
1940    pub fn r#get_attr(
1941        &self,
1942    ) -> fidl::client::QueryResponseFut<
1943        (i32, NodeAttributes),
1944        fidl::encoding::DefaultFuchsiaResourceDialect,
1945    > {
1946        DirectoryProxyInterface::r#get_attr(self)
1947    }
1948
1949    /// Updates information about the node.
1950    ///
1951    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
1952    ///
1953    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
1954    /// `ZX_ERR_BAD_HANDLE`.
1955    pub fn r#set_attr(
1956        &self,
1957        mut flags: NodeAttributeFlags,
1958        mut attributes: &NodeAttributes,
1959    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
1960        DirectoryProxyInterface::r#set_attr(self, flags, attributes)
1961    }
1962
1963    /// [DEPRECATED - Use new GetFlags method instead.]
1964    pub fn r#deprecated_get_flags(
1965        &self,
1966    ) -> fidl::client::QueryResponseFut<
1967        (i32, OpenFlags),
1968        fidl::encoding::DefaultFuchsiaResourceDialect,
1969    > {
1970        DirectoryProxyInterface::r#deprecated_get_flags(self)
1971    }
1972
1973    /// [DEPRECATED - Use new SetFlags method instead.]
1974    pub fn r#deprecated_set_flags(
1975        &self,
1976        mut flags: OpenFlags,
1977    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
1978        DirectoryProxyInterface::r#deprecated_set_flags(self, flags)
1979    }
1980
1981    /// Queries the flags that apply to this node after it has been opened/created. This method does
1982    /// not require any rights.
1983    ///
1984    /// Note that the final set of flags that apply to the connection may differ from those
1985    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
1986    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
1987    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
1988    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
1989    pub fn r#get_flags(
1990        &self,
1991    ) -> fidl::client::QueryResponseFut<
1992        NodeGetFlagsResult,
1993        fidl::encoding::DefaultFuchsiaResourceDialect,
1994    > {
1995        DirectoryProxyInterface::r#get_flags(self)
1996    }
1997
1998    /// Sets the flags that apply to this node after it has been opened. This method does not
1999    /// require any rights.
2000    ///
2001    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
2002    /// clear append mode.
2003    ///
2004    /// Errors:
2005    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
2006    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
2007    pub fn r#set_flags(
2008        &self,
2009        mut flags: Flags,
2010    ) -> fidl::client::QueryResponseFut<
2011        NodeSetFlagsResult,
2012        fidl::encoding::DefaultFuchsiaResourceDialect,
2013    > {
2014        DirectoryProxyInterface::r#set_flags(self, flags)
2015    }
2016
2017    /// Query the filesystem for filesystem-specific information.
2018    pub fn r#query_filesystem(
2019        &self,
2020    ) -> fidl::client::QueryResponseFut<
2021        (i32, Option<Box<FilesystemInfo>>),
2022        fidl::encoding::DefaultFuchsiaResourceDialect,
2023    > {
2024        DirectoryProxyInterface::r#query_filesystem(self)
2025    }
2026
2027    /// Acquires information about the connection.
2028    ///
2029    /// This method does not require any rights.
2030    pub fn r#get_connection_info(
2031        &self,
2032    ) -> fidl::client::QueryResponseFut<ConnectionInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
2033    {
2034        DirectoryProxyInterface::r#get_connection_info(self)
2035    }
2036
2037    /// Acquires information about the node.
2038    ///
2039    /// The attributes of a node should be stable, independent of the
2040    /// specific protocol used to access it.
2041    ///
2042    /// If a particular attribute is not applicable or not supported,
2043    /// filesystems should leave the corresponding field absent.
2044    ///
2045    /// + `query` a bit-mask specifying which attributes to fetch. The server
2046    ///   should not return more than necessary.
2047    /// - `attributes` the returned attributes.
2048    ///
2049    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
2050    pub fn r#get_attributes(
2051        &self,
2052        mut query: NodeAttributesQuery,
2053    ) -> fidl::client::QueryResponseFut<
2054        NodeGetAttributesResult,
2055        fidl::encoding::DefaultFuchsiaResourceDialect,
2056    > {
2057        DirectoryProxyInterface::r#get_attributes(self, query)
2058    }
2059
2060    /// Updates information about the node.
2061    ///
2062    /// + `attributes` the presence of a table field in `attributes` indicates
2063    /// the intent to update the corresponding attribute.
2064    ///
2065    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
2066    ///
2067    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
2068    pub fn r#update_attributes(
2069        &self,
2070        mut payload: &MutableNodeAttributes,
2071    ) -> fidl::client::QueryResponseFut<
2072        NodeUpdateAttributesResult,
2073        fidl::encoding::DefaultFuchsiaResourceDialect,
2074    > {
2075        DirectoryProxyInterface::r#update_attributes(self, payload)
2076    }
2077
2078    /// Synchronizes updates to the node to the underlying media, if it exists.
2079    ///
2080    /// This method will return when the filesystem server has flushed the
2081    /// relevant updates to the underlying media, but does not guarantee the
2082    /// underlying media has persisted the information, nor that any information
2083    /// is committed to hardware. Clients may use `Sync` to ensure ordering
2084    /// between operations.
2085    ///
2086    /// This method does not require any rights.
2087    pub fn r#sync(
2088        &self,
2089    ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
2090    {
2091        DirectoryProxyInterface::r#sync(self)
2092    }
2093
2094    /// Creates an iterator over all the extended attribute names associated
2095    /// with this node. If an error occurs it is returned as an epitaph on the
2096    /// iterator request channel, and then the channel is closed.
2097    ///
2098    /// GetExtendedAttributes can be used with any of these names to retrieve
2099    /// the associated value.
2100    ///
2101    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
2102    pub fn r#list_extended_attributes(
2103        &self,
2104        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
2105    ) -> Result<(), fidl::Error> {
2106        DirectoryProxyInterface::r#list_extended_attributes(self, iterator)
2107    }
2108
2109    /// Get the value associated with the given attribute `name` for this node.
2110    ///
2111    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
2112    /// particular structure is imposed on them.
2113    ///
2114    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
2115    pub fn r#get_extended_attribute(
2116        &self,
2117        mut name: &[u8],
2118    ) -> fidl::client::QueryResponseFut<
2119        NodeGetExtendedAttributeResult,
2120        fidl::encoding::DefaultFuchsiaResourceDialect,
2121    > {
2122        DirectoryProxyInterface::r#get_extended_attribute(self, name)
2123    }
2124
2125    /// Set the value for the given attribute `name` to `value` for this node.
2126    ///
2127    /// The attribute name may exist, in which case the attribute is updated.
2128    /// If the attribute doesn't exist, it is created. The name should have no
2129    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
2130    ///
2131    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
2132    pub fn r#set_extended_attribute(
2133        &self,
2134        mut name: &[u8],
2135        mut value: ExtendedAttributeValue,
2136        mut mode: SetExtendedAttributeMode,
2137    ) -> fidl::client::QueryResponseFut<
2138        NodeSetExtendedAttributeResult,
2139        fidl::encoding::DefaultFuchsiaResourceDialect,
2140    > {
2141        DirectoryProxyInterface::r#set_extended_attribute(self, name, value, mode)
2142    }
2143
2144    /// Remove the specified extended attribute.
2145    ///
2146    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
2147    ///
2148    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
2149    pub fn r#remove_extended_attribute(
2150        &self,
2151        mut name: &[u8],
2152    ) -> fidl::client::QueryResponseFut<
2153        NodeRemoveExtendedAttributeResult,
2154        fidl::encoding::DefaultFuchsiaResourceDialect,
2155    > {
2156        DirectoryProxyInterface::r#remove_extended_attribute(self, name)
2157    }
2158
2159    /// DEPRECATED - Use `fuchsia.io/Directory.Open` instead.
2160    pub fn r#deprecated_open(
2161        &self,
2162        mut flags: OpenFlags,
2163        mut mode: ModeType,
2164        mut path: &str,
2165        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
2166    ) -> Result<(), fidl::Error> {
2167        DirectoryProxyInterface::r#deprecated_open(self, flags, mode, path, object)
2168    }
2169
2170    /// Open (or create) a node relative to this directory. Any errors are communicated via an
2171    /// epitaph sent on the `object` channel.
2172    ///
2173    /// Errors:
2174    /// * `ZX_ERR_BAD_PATH` if `path` is invalid
2175    /// * See [`Flags`] for other errors which may be communicated based on `flags`
2176    pub fn r#open(
2177        &self,
2178        mut path: &str,
2179        mut flags: Flags,
2180        mut options: &Options,
2181        mut object: fidl::Channel,
2182    ) -> Result<(), fidl::Error> {
2183        DirectoryProxyInterface::r#open(self, path, flags, options, object)
2184    }
2185
2186    /// Reads a collection of variably sized dirents into a buffer.
2187    /// The number of dirents in a directory may be very large: akin to
2188    /// calling read multiple times on a file, directories have a seek
2189    /// offset which is updated on subsequent calls to ReadDirents.
2190    /// Each call to ReadDirents will only return whole dirent structures,
2191    /// they will not get split across ReadDirent calls. When the seek
2192    /// offset reaches the end, `dirents` will be empty.
2193    ///
2194    /// These dirents are of the form:
2195    /// ```
2196    /// struct dirent {
2197    ///   // Describes the inode of the entry.
2198    ///   uint64 ino;
2199    ///   // Describes the length of the dirent name in bytes.
2200    ///   uint8 size;
2201    ///   // Describes the type of the entry. Aligned with the
2202    ///   // POSIX d_type values. Use `DirentType` constants.
2203    ///   uint8 type;
2204    ///   // Unterminated name of entry.
2205    ///   char name[0];
2206    /// }
2207    /// ```
2208    ///
2209    /// This method does not require any rights, since one could always probe for
2210    /// directory contents by triggering name conflicts during file creation.
2211    pub fn r#read_dirents(
2212        &self,
2213        mut max_bytes: u64,
2214    ) -> fidl::client::QueryResponseFut<(i32, Vec<u8>), fidl::encoding::DefaultFuchsiaResourceDialect>
2215    {
2216        DirectoryProxyInterface::r#read_dirents(self, max_bytes)
2217    }
2218
2219    /// Resets the directory seek offset.
2220    ///
2221    /// This method does not require any rights, similar to ReadDirents.
2222    pub fn r#rewind(
2223        &self,
2224    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
2225        DirectoryProxyInterface::r#rewind(self)
2226    }
2227
2228    /// Acquires a token to a Directory which can be used to identify access to it at a later point
2229    /// in time. The token will remain valid for as long as the connection requesting the token
2230    /// remains open.
2231    ///
2232    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
2233    /// `ZX_ERR_BAD_HANDLE`.
2234    pub fn r#get_token(
2235        &self,
2236    ) -> fidl::client::QueryResponseFut<
2237        (i32, Option<fidl::Handle>),
2238        fidl::encoding::DefaultFuchsiaResourceDialect,
2239    > {
2240        DirectoryProxyInterface::r#get_token(self)
2241    }
2242
2243    /// Creates a link to an object named src by the name dst, within a directory represented by
2244    /// token.
2245    ///
2246    /// `src` must be a resolved object name. Including "/" in the string will
2247    /// return `ZX_ERR_INVALID_ARGS`.
2248    ///
2249    /// `dst` must be a resolved object name. Including "/" in the string will
2250    /// return `ZX_ERR_INVALID_ARGS`.
2251    ///
2252    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE` and
2253    /// `OpenFlags.RIGHT_READABLE`, otherwise returns `ZX_ERR_BAD_HANDLE`.
2254    ///
2255    /// This will be atomic with respect to renaming or unlinking the source concurrently e.g. if
2256    /// there are two actors operating concurrently, and one actor performs a rename that affects
2257    /// the source within this directory, and the other does a link, each will appear to occur
2258    /// atomically in an unspecified order.
2259    pub fn r#link(
2260        &self,
2261        mut src: &str,
2262        mut dst_parent_token: fidl::Handle,
2263        mut dst: &str,
2264    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
2265        DirectoryProxyInterface::r#link(self, src, dst_parent_token, dst)
2266    }
2267
2268    /// Removes a child node from the this directory's list of entries.
2269    ///
2270    /// Note: this does not guarantee that the underlying object is destroyed.
2271    /// Although the link will be removed from the containing directory,
2272    /// objects with multiple references (such as files which are still open)
2273    /// will not actually be destroyed until all references are closed.
2274    ///
2275    /// * error `ZX_ERR_ACCESS_DENIED` if the connection does not have
2276    ///   [`Rights.WRITE_BYTES`].
2277    /// * error `ZX_ERR_NOT_SUPPORTED` if the underlying filesystem does not
2278    ///   support writing.
2279    /// * error `ZX_ERR_BAD_PATH` if `name` is invalid.
2280    /// * error `ZX_ERR_NOT_EMPTY` if `name` refers to a non-empty directory.
2281    /// * error `ZX_ERR_UNAVAILABLE` if `name` refers to a mount point,
2282    ///   containing a remote channel.
2283    /// * error `ZX_ERR_NOT_DIR` if the options requested a directory but
2284    ///     something other than a directory was found.
2285    ///
2286    /// Other errors may be returned for filesystem-specific reasons.
2287    ///
2288    /// This method requires the following rights:
2289    ///
2290    /// * [`Rights.ENUMERATE`]
2291    /// * [`Rights.MODIFY_DIRECTORY`]
2292    pub fn r#unlink(
2293        &self,
2294        mut name: &str,
2295        mut options: &UnlinkOptions,
2296    ) -> fidl::client::QueryResponseFut<
2297        DirectoryUnlinkResult,
2298        fidl::encoding::DefaultFuchsiaResourceDialect,
2299    > {
2300        DirectoryProxyInterface::r#unlink(self, name, options)
2301    }
2302
2303    /// Renames a node named `src` to the name `dst`, in a directory represented
2304    /// by `dst_parent_token`.
2305    ///
2306    /// `src` and `dst` must be valid node names.
2307    /// See [`Name`] for what constitutes a valid name.
2308    ///
2309    /// This method requires the following rights on both the current connection, and the connection
2310    /// identified by `dst_parent_token`:
2311    ///
2312    /// * [`Rights.ENUMERATE`]
2313    /// * [`Rights.MODIFY_DIRECTORY`]
2314    ///
2315    /// The following requirements are necessary to avoid rights escalations.
2316    ///
2317    /// If the source and destination directory differ, the source directory must also have the
2318    /// maximal set of abilities supported for files, which would typically be
2319    /// [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`], [`Rights.GET_ATTRIBUTES`] and
2320    /// [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also support the [`Rights.EXECUTE`]
2321    /// right.
2322    ///
2323    /// If `src` refers to a directory, and differs from the destination directory, then the source
2324    /// directory must have also have the [`Rights.CONNECT`] and [`Rights.TRAVERSE`] rights.
2325    ///
2326    /// * error `ZX_ERR_INVALID_ARGS` if `src` or `dst` is invalid.
2327    /// * error `ZX_ERR_ACCESS_DENIED` for insufficient rights.
2328    pub fn r#rename(
2329        &self,
2330        mut src: &str,
2331        mut dst_parent_token: fidl::Event,
2332        mut dst: &str,
2333    ) -> fidl::client::QueryResponseFut<
2334        DirectoryRenameResult,
2335        fidl::encoding::DefaultFuchsiaResourceDialect,
2336    > {
2337        DirectoryProxyInterface::r#rename(self, src, dst_parent_token, dst)
2338    }
2339
2340    /// Creates a symbolic link.
2341    ///
2342    /// `name` is the name to be given to the created symbolic link.
2343    /// `target` is the target of the symbolic link, which has no meaning on the server. The server
2344    /// will perform no validation of `target` except for a server chosen maximum length.
2345    /// `connection` is an optional server end of a channel that will speak the Symlink protocol
2346    /// on the successfully created node.
2347    ///
2348    /// * [`Rights.MODIFY_DIRECTORY`]
2349    ///
2350    /// * error `ZX_ERR_ALREADY_EXISTS` if `name` already exists.
2351    /// * error `ZX_ERR_BAD_PATH` if `target` exceeds the server length limit for symbolic links.
2352    /// * error `ZX_ERR_INVALID_ARGS` if `name` is not a valid [`Name`].
2353    /// * error `ZX_ERR_NOT_SUPPORTED` if creating symbolic links is not supported by the server.
2354    pub fn r#create_symlink(
2355        &self,
2356        mut name: &str,
2357        mut target: &[u8],
2358        mut connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
2359    ) -> fidl::client::QueryResponseFut<
2360        DirectoryCreateSymlinkResult,
2361        fidl::encoding::DefaultFuchsiaResourceDialect,
2362    > {
2363        DirectoryProxyInterface::r#create_symlink(self, name, target, connection)
2364    }
2365
2366    /// Watches a directory, receiving events of added messages on the
2367    /// watcher request channel.
2368    ///
2369    /// Options must be zero; it is reserved.
2370    ///
2371    /// This method does not require any rights, similar to ReadDirents.
2372    pub fn r#watch(
2373        &self,
2374        mut mask: WatchMask,
2375        mut options: u32,
2376        mut watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
2377    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
2378        DirectoryProxyInterface::r#watch(self, mask, options, watcher)
2379    }
2380}
2381
2382impl DirectoryProxyInterface for DirectoryProxy {
2383    type AdvisoryLockResponseFut = fidl::client::QueryResponseFut<
2384        AdvisoryLockingAdvisoryLockResult,
2385        fidl::encoding::DefaultFuchsiaResourceDialect,
2386    >;
2387    fn r#advisory_lock(&self, mut request: &AdvisoryLockRequest) -> Self::AdvisoryLockResponseFut {
2388        fn _decode(
2389            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2390        ) -> Result<AdvisoryLockingAdvisoryLockResult, fidl::Error> {
2391            let _response = fidl::client::decode_transaction_body::<
2392                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2393                fidl::encoding::DefaultFuchsiaResourceDialect,
2394                0x6ee9c0ad53ec87aa,
2395            >(_buf?)?;
2396            Ok(_response.map(|x| x))
2397        }
2398        self.client.send_query_and_decode::<
2399            AdvisoryLockingAdvisoryLockRequest,
2400            AdvisoryLockingAdvisoryLockResult,
2401        >(
2402            (request,),
2403            0x6ee9c0ad53ec87aa,
2404            fidl::encoding::DynamicFlags::empty(),
2405            _decode,
2406        )
2407    }
2408
2409    fn r#clone(
2410        &self,
2411        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
2412    ) -> Result<(), fidl::Error> {
2413        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
2414            (request,),
2415            0x20d8a7aba2168a79,
2416            fidl::encoding::DynamicFlags::empty(),
2417        )
2418    }
2419
2420    type CloseResponseFut = fidl::client::QueryResponseFut<
2421        fidl_fuchsia_unknown::CloseableCloseResult,
2422        fidl::encoding::DefaultFuchsiaResourceDialect,
2423    >;
2424    fn r#close(&self) -> Self::CloseResponseFut {
2425        fn _decode(
2426            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2427        ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
2428            let _response = fidl::client::decode_transaction_body::<
2429                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2430                fidl::encoding::DefaultFuchsiaResourceDialect,
2431                0x5ac5d459ad7f657e,
2432            >(_buf?)?;
2433            Ok(_response.map(|x| x))
2434        }
2435        self.client.send_query_and_decode::<
2436            fidl::encoding::EmptyPayload,
2437            fidl_fuchsia_unknown::CloseableCloseResult,
2438        >(
2439            (),
2440            0x5ac5d459ad7f657e,
2441            fidl::encoding::DynamicFlags::empty(),
2442            _decode,
2443        )
2444    }
2445
2446    type QueryResponseFut =
2447        fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>;
2448    fn r#query(&self) -> Self::QueryResponseFut {
2449        fn _decode(
2450            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2451        ) -> Result<Vec<u8>, fidl::Error> {
2452            let _response = fidl::client::decode_transaction_body::<
2453                fidl_fuchsia_unknown::QueryableQueryResponse,
2454                fidl::encoding::DefaultFuchsiaResourceDialect,
2455                0x2658edee9decfc06,
2456            >(_buf?)?;
2457            Ok(_response.protocol)
2458        }
2459        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<u8>>(
2460            (),
2461            0x2658edee9decfc06,
2462            fidl::encoding::DynamicFlags::empty(),
2463            _decode,
2464        )
2465    }
2466
2467    fn r#deprecated_clone(
2468        &self,
2469        mut flags: OpenFlags,
2470        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
2471    ) -> Result<(), fidl::Error> {
2472        self.client.send::<NodeDeprecatedCloneRequest>(
2473            (flags, object),
2474            0x5a61678f293ce16f,
2475            fidl::encoding::DynamicFlags::FLEXIBLE,
2476        )
2477    }
2478
2479    type GetAttrResponseFut = fidl::client::QueryResponseFut<
2480        (i32, NodeAttributes),
2481        fidl::encoding::DefaultFuchsiaResourceDialect,
2482    >;
2483    fn r#get_attr(&self) -> Self::GetAttrResponseFut {
2484        fn _decode(
2485            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2486        ) -> Result<(i32, NodeAttributes), fidl::Error> {
2487            let _response = fidl::client::decode_transaction_body::<
2488                NodeGetAttrResponse,
2489                fidl::encoding::DefaultFuchsiaResourceDialect,
2490                0x78985e216314dafd,
2491            >(_buf?)?;
2492            Ok((_response.s, _response.attributes))
2493        }
2494        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, NodeAttributes)>(
2495            (),
2496            0x78985e216314dafd,
2497            fidl::encoding::DynamicFlags::empty(),
2498            _decode,
2499        )
2500    }
2501
2502    type SetAttrResponseFut =
2503        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
2504    fn r#set_attr(
2505        &self,
2506        mut flags: NodeAttributeFlags,
2507        mut attributes: &NodeAttributes,
2508    ) -> Self::SetAttrResponseFut {
2509        fn _decode(
2510            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2511        ) -> Result<i32, fidl::Error> {
2512            let _response = fidl::client::decode_transaction_body::<
2513                NodeSetAttrResponse,
2514                fidl::encoding::DefaultFuchsiaResourceDialect,
2515                0x4186c0f40d938f46,
2516            >(_buf?)?;
2517            Ok(_response.s)
2518        }
2519        self.client.send_query_and_decode::<NodeSetAttrRequest, i32>(
2520            (flags, attributes),
2521            0x4186c0f40d938f46,
2522            fidl::encoding::DynamicFlags::empty(),
2523            _decode,
2524        )
2525    }
2526
2527    type DeprecatedGetFlagsResponseFut = fidl::client::QueryResponseFut<
2528        (i32, OpenFlags),
2529        fidl::encoding::DefaultFuchsiaResourceDialect,
2530    >;
2531    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut {
2532        fn _decode(
2533            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2534        ) -> Result<(i32, OpenFlags), fidl::Error> {
2535            let _response = fidl::client::decode_transaction_body::<
2536                NodeDeprecatedGetFlagsResponse,
2537                fidl::encoding::DefaultFuchsiaResourceDialect,
2538                0x5b88fffb8eda3aa1,
2539            >(_buf?)?;
2540            Ok((_response.s, _response.flags))
2541        }
2542        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, OpenFlags)>(
2543            (),
2544            0x5b88fffb8eda3aa1,
2545            fidl::encoding::DynamicFlags::empty(),
2546            _decode,
2547        )
2548    }
2549
2550    type DeprecatedSetFlagsResponseFut =
2551        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
2552    fn r#deprecated_set_flags(&self, mut flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut {
2553        fn _decode(
2554            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2555        ) -> Result<i32, fidl::Error> {
2556            let _response = fidl::client::decode_transaction_body::<
2557                NodeDeprecatedSetFlagsResponse,
2558                fidl::encoding::DefaultFuchsiaResourceDialect,
2559                0x5295b76c71fde733,
2560            >(_buf?)?;
2561            Ok(_response.s)
2562        }
2563        self.client.send_query_and_decode::<NodeDeprecatedSetFlagsRequest, i32>(
2564            (flags,),
2565            0x5295b76c71fde733,
2566            fidl::encoding::DynamicFlags::empty(),
2567            _decode,
2568        )
2569    }
2570
2571    type GetFlagsResponseFut = fidl::client::QueryResponseFut<
2572        NodeGetFlagsResult,
2573        fidl::encoding::DefaultFuchsiaResourceDialect,
2574    >;
2575    fn r#get_flags(&self) -> Self::GetFlagsResponseFut {
2576        fn _decode(
2577            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2578        ) -> Result<NodeGetFlagsResult, fidl::Error> {
2579            let _response = fidl::client::decode_transaction_body::<
2580                fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
2581                fidl::encoding::DefaultFuchsiaResourceDialect,
2582                0x176eb318f64ec23,
2583            >(_buf?)?
2584            .into_result::<DirectoryMarker>("get_flags")?;
2585            Ok(_response.map(|x| x.flags))
2586        }
2587        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeGetFlagsResult>(
2588            (),
2589            0x176eb318f64ec23,
2590            fidl::encoding::DynamicFlags::FLEXIBLE,
2591            _decode,
2592        )
2593    }
2594
2595    type SetFlagsResponseFut = fidl::client::QueryResponseFut<
2596        NodeSetFlagsResult,
2597        fidl::encoding::DefaultFuchsiaResourceDialect,
2598    >;
2599    fn r#set_flags(&self, mut flags: Flags) -> Self::SetFlagsResponseFut {
2600        fn _decode(
2601            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2602        ) -> Result<NodeSetFlagsResult, fidl::Error> {
2603            let _response = fidl::client::decode_transaction_body::<
2604                fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
2605                fidl::encoding::DefaultFuchsiaResourceDialect,
2606                0x55a8028685791ea8,
2607            >(_buf?)?
2608            .into_result::<DirectoryMarker>("set_flags")?;
2609            Ok(_response.map(|x| x))
2610        }
2611        self.client.send_query_and_decode::<NodeSetFlagsRequest, NodeSetFlagsResult>(
2612            (flags,),
2613            0x55a8028685791ea8,
2614            fidl::encoding::DynamicFlags::FLEXIBLE,
2615            _decode,
2616        )
2617    }
2618
2619    type QueryFilesystemResponseFut = fidl::client::QueryResponseFut<
2620        (i32, Option<Box<FilesystemInfo>>),
2621        fidl::encoding::DefaultFuchsiaResourceDialect,
2622    >;
2623    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut {
2624        fn _decode(
2625            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2626        ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
2627            let _response = fidl::client::decode_transaction_body::<
2628                NodeQueryFilesystemResponse,
2629                fidl::encoding::DefaultFuchsiaResourceDialect,
2630                0x6f344a1c6b0a0610,
2631            >(_buf?)?;
2632            Ok((_response.s, _response.info))
2633        }
2634        self.client.send_query_and_decode::<
2635            fidl::encoding::EmptyPayload,
2636            (i32, Option<Box<FilesystemInfo>>),
2637        >(
2638            (),
2639            0x6f344a1c6b0a0610,
2640            fidl::encoding::DynamicFlags::empty(),
2641            _decode,
2642        )
2643    }
2644
2645    type GetConnectionInfoResponseFut = fidl::client::QueryResponseFut<
2646        ConnectionInfo,
2647        fidl::encoding::DefaultFuchsiaResourceDialect,
2648    >;
2649    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut {
2650        fn _decode(
2651            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2652        ) -> Result<ConnectionInfo, fidl::Error> {
2653            let _response = fidl::client::decode_transaction_body::<
2654                ConnectionInfo,
2655                fidl::encoding::DefaultFuchsiaResourceDialect,
2656                0x584c377c7c0a6d0b,
2657            >(_buf?)?;
2658            Ok(_response)
2659        }
2660        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ConnectionInfo>(
2661            (),
2662            0x584c377c7c0a6d0b,
2663            fidl::encoding::DynamicFlags::empty(),
2664            _decode,
2665        )
2666    }
2667
2668    type GetAttributesResponseFut = fidl::client::QueryResponseFut<
2669        NodeGetAttributesResult,
2670        fidl::encoding::DefaultFuchsiaResourceDialect,
2671    >;
2672    fn r#get_attributes(&self, mut query: NodeAttributesQuery) -> Self::GetAttributesResponseFut {
2673        fn _decode(
2674            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2675        ) -> Result<NodeGetAttributesResult, fidl::Error> {
2676            let _response = fidl::client::decode_transaction_body::<
2677                fidl::encoding::ResultType<NodeAttributes2, i32>,
2678                fidl::encoding::DefaultFuchsiaResourceDialect,
2679                0x3d4396a638ea053b,
2680            >(_buf?)?;
2681            Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
2682        }
2683        self.client.send_query_and_decode::<NodeGetAttributesRequest, NodeGetAttributesResult>(
2684            (query,),
2685            0x3d4396a638ea053b,
2686            fidl::encoding::DynamicFlags::empty(),
2687            _decode,
2688        )
2689    }
2690
2691    type UpdateAttributesResponseFut = fidl::client::QueryResponseFut<
2692        NodeUpdateAttributesResult,
2693        fidl::encoding::DefaultFuchsiaResourceDialect,
2694    >;
2695    fn r#update_attributes(
2696        &self,
2697        mut payload: &MutableNodeAttributes,
2698    ) -> Self::UpdateAttributesResponseFut {
2699        fn _decode(
2700            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2701        ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
2702            let _response = fidl::client::decode_transaction_body::<
2703                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2704                fidl::encoding::DefaultFuchsiaResourceDialect,
2705                0x3308c1da5a89bf08,
2706            >(_buf?)?;
2707            Ok(_response.map(|x| x))
2708        }
2709        self.client.send_query_and_decode::<MutableNodeAttributes, NodeUpdateAttributesResult>(
2710            payload,
2711            0x3308c1da5a89bf08,
2712            fidl::encoding::DynamicFlags::empty(),
2713            _decode,
2714        )
2715    }
2716
2717    type SyncResponseFut = fidl::client::QueryResponseFut<
2718        NodeSyncResult,
2719        fidl::encoding::DefaultFuchsiaResourceDialect,
2720    >;
2721    fn r#sync(&self) -> Self::SyncResponseFut {
2722        fn _decode(
2723            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2724        ) -> Result<NodeSyncResult, fidl::Error> {
2725            let _response = fidl::client::decode_transaction_body::<
2726                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2727                fidl::encoding::DefaultFuchsiaResourceDialect,
2728                0x2c5c27ca0ab5dc49,
2729            >(_buf?)?;
2730            Ok(_response.map(|x| x))
2731        }
2732        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeSyncResult>(
2733            (),
2734            0x2c5c27ca0ab5dc49,
2735            fidl::encoding::DynamicFlags::empty(),
2736            _decode,
2737        )
2738    }
2739
2740    fn r#list_extended_attributes(
2741        &self,
2742        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
2743    ) -> Result<(), fidl::Error> {
2744        self.client.send::<NodeListExtendedAttributesRequest>(
2745            (iterator,),
2746            0x4b61033de007fcd0,
2747            fidl::encoding::DynamicFlags::empty(),
2748        )
2749    }
2750
2751    type GetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
2752        NodeGetExtendedAttributeResult,
2753        fidl::encoding::DefaultFuchsiaResourceDialect,
2754    >;
2755    fn r#get_extended_attribute(&self, mut name: &[u8]) -> Self::GetExtendedAttributeResponseFut {
2756        fn _decode(
2757            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2758        ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
2759            let _response = fidl::client::decode_transaction_body::<
2760                fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
2761                fidl::encoding::DefaultFuchsiaResourceDialect,
2762                0x45ffa3ccfdeb76db,
2763            >(_buf?)?;
2764            Ok(_response.map(|x| x))
2765        }
2766        self.client.send_query_and_decode::<
2767            NodeGetExtendedAttributeRequest,
2768            NodeGetExtendedAttributeResult,
2769        >(
2770            (name,),
2771            0x45ffa3ccfdeb76db,
2772            fidl::encoding::DynamicFlags::empty(),
2773            _decode,
2774        )
2775    }
2776
2777    type SetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
2778        NodeSetExtendedAttributeResult,
2779        fidl::encoding::DefaultFuchsiaResourceDialect,
2780    >;
2781    fn r#set_extended_attribute(
2782        &self,
2783        mut name: &[u8],
2784        mut value: ExtendedAttributeValue,
2785        mut mode: SetExtendedAttributeMode,
2786    ) -> Self::SetExtendedAttributeResponseFut {
2787        fn _decode(
2788            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2789        ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
2790            let _response = fidl::client::decode_transaction_body::<
2791                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2792                fidl::encoding::DefaultFuchsiaResourceDialect,
2793                0x4a951362f681f23c,
2794            >(_buf?)?;
2795            Ok(_response.map(|x| x))
2796        }
2797        self.client.send_query_and_decode::<
2798            NodeSetExtendedAttributeRequest,
2799            NodeSetExtendedAttributeResult,
2800        >(
2801            (name, &mut value, mode,),
2802            0x4a951362f681f23c,
2803            fidl::encoding::DynamicFlags::empty(),
2804            _decode,
2805        )
2806    }
2807
2808    type RemoveExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
2809        NodeRemoveExtendedAttributeResult,
2810        fidl::encoding::DefaultFuchsiaResourceDialect,
2811    >;
2812    fn r#remove_extended_attribute(
2813        &self,
2814        mut name: &[u8],
2815    ) -> Self::RemoveExtendedAttributeResponseFut {
2816        fn _decode(
2817            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2818        ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
2819            let _response = fidl::client::decode_transaction_body::<
2820                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2821                fidl::encoding::DefaultFuchsiaResourceDialect,
2822                0x7a0b9f3a9bf9032d,
2823            >(_buf?)?;
2824            Ok(_response.map(|x| x))
2825        }
2826        self.client.send_query_and_decode::<
2827            NodeRemoveExtendedAttributeRequest,
2828            NodeRemoveExtendedAttributeResult,
2829        >(
2830            (name,),
2831            0x7a0b9f3a9bf9032d,
2832            fidl::encoding::DynamicFlags::empty(),
2833            _decode,
2834        )
2835    }
2836
2837    fn r#deprecated_open(
2838        &self,
2839        mut flags: OpenFlags,
2840        mut mode: ModeType,
2841        mut path: &str,
2842        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
2843    ) -> Result<(), fidl::Error> {
2844        self.client.send::<DirectoryDeprecatedOpenRequest>(
2845            (flags, mode, path, object),
2846            0x2c5044561d685ec0,
2847            fidl::encoding::DynamicFlags::empty(),
2848        )
2849    }
2850
2851    fn r#open(
2852        &self,
2853        mut path: &str,
2854        mut flags: Flags,
2855        mut options: &Options,
2856        mut object: fidl::Channel,
2857    ) -> Result<(), fidl::Error> {
2858        self.client.send::<DirectoryOpenRequest>(
2859            (path, flags, options, object),
2860            0x568ddcb9a9cbb6d9,
2861            fidl::encoding::DynamicFlags::empty(),
2862        )
2863    }
2864
2865    type ReadDirentsResponseFut = fidl::client::QueryResponseFut<
2866        (i32, Vec<u8>),
2867        fidl::encoding::DefaultFuchsiaResourceDialect,
2868    >;
2869    fn r#read_dirents(&self, mut max_bytes: u64) -> Self::ReadDirentsResponseFut {
2870        fn _decode(
2871            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2872        ) -> Result<(i32, Vec<u8>), fidl::Error> {
2873            let _response = fidl::client::decode_transaction_body::<
2874                DirectoryReadDirentsResponse,
2875                fidl::encoding::DefaultFuchsiaResourceDialect,
2876                0x3582806bf27faa0a,
2877            >(_buf?)?;
2878            Ok((_response.s, _response.dirents))
2879        }
2880        self.client.send_query_and_decode::<DirectoryReadDirentsRequest, (i32, Vec<u8>)>(
2881            (max_bytes,),
2882            0x3582806bf27faa0a,
2883            fidl::encoding::DynamicFlags::empty(),
2884            _decode,
2885        )
2886    }
2887
2888    type RewindResponseFut =
2889        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
2890    fn r#rewind(&self) -> Self::RewindResponseFut {
2891        fn _decode(
2892            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2893        ) -> Result<i32, fidl::Error> {
2894            let _response = fidl::client::decode_transaction_body::<
2895                DirectoryRewindResponse,
2896                fidl::encoding::DefaultFuchsiaResourceDialect,
2897                0x16b1202af0f34c71,
2898            >(_buf?)?;
2899            Ok(_response.s)
2900        }
2901        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, i32>(
2902            (),
2903            0x16b1202af0f34c71,
2904            fidl::encoding::DynamicFlags::empty(),
2905            _decode,
2906        )
2907    }
2908
2909    type GetTokenResponseFut = fidl::client::QueryResponseFut<
2910        (i32, Option<fidl::Handle>),
2911        fidl::encoding::DefaultFuchsiaResourceDialect,
2912    >;
2913    fn r#get_token(&self) -> Self::GetTokenResponseFut {
2914        fn _decode(
2915            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2916        ) -> Result<(i32, Option<fidl::Handle>), fidl::Error> {
2917            let _response = fidl::client::decode_transaction_body::<
2918                DirectoryGetTokenResponse,
2919                fidl::encoding::DefaultFuchsiaResourceDialect,
2920                0x26ae9d18763c8655,
2921            >(_buf?)?;
2922            Ok((_response.s, _response.token))
2923        }
2924        self.client
2925            .send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, Option<fidl::Handle>)>(
2926                (),
2927                0x26ae9d18763c8655,
2928                fidl::encoding::DynamicFlags::empty(),
2929                _decode,
2930            )
2931    }
2932
2933    type LinkResponseFut =
2934        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
2935    fn r#link(
2936        &self,
2937        mut src: &str,
2938        mut dst_parent_token: fidl::Handle,
2939        mut dst: &str,
2940    ) -> Self::LinkResponseFut {
2941        fn _decode(
2942            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2943        ) -> Result<i32, fidl::Error> {
2944            let _response = fidl::client::decode_transaction_body::<
2945                DirectoryLinkResponse,
2946                fidl::encoding::DefaultFuchsiaResourceDialect,
2947                0x740604c0c7c930e7,
2948            >(_buf?)?;
2949            Ok(_response.s)
2950        }
2951        self.client.send_query_and_decode::<DirectoryLinkRequest, i32>(
2952            (src, dst_parent_token, dst),
2953            0x740604c0c7c930e7,
2954            fidl::encoding::DynamicFlags::empty(),
2955            _decode,
2956        )
2957    }
2958
2959    type UnlinkResponseFut = fidl::client::QueryResponseFut<
2960        DirectoryUnlinkResult,
2961        fidl::encoding::DefaultFuchsiaResourceDialect,
2962    >;
2963    fn r#unlink(&self, mut name: &str, mut options: &UnlinkOptions) -> Self::UnlinkResponseFut {
2964        fn _decode(
2965            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2966        ) -> Result<DirectoryUnlinkResult, fidl::Error> {
2967            let _response = fidl::client::decode_transaction_body::<
2968                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2969                fidl::encoding::DefaultFuchsiaResourceDialect,
2970                0x750a0326a78d7bed,
2971            >(_buf?)?;
2972            Ok(_response.map(|x| x))
2973        }
2974        self.client.send_query_and_decode::<DirectoryUnlinkRequest, DirectoryUnlinkResult>(
2975            (name, options),
2976            0x750a0326a78d7bed,
2977            fidl::encoding::DynamicFlags::empty(),
2978            _decode,
2979        )
2980    }
2981
2982    type RenameResponseFut = fidl::client::QueryResponseFut<
2983        DirectoryRenameResult,
2984        fidl::encoding::DefaultFuchsiaResourceDialect,
2985    >;
2986    fn r#rename(
2987        &self,
2988        mut src: &str,
2989        mut dst_parent_token: fidl::Event,
2990        mut dst: &str,
2991    ) -> Self::RenameResponseFut {
2992        fn _decode(
2993            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2994        ) -> Result<DirectoryRenameResult, fidl::Error> {
2995            let _response = fidl::client::decode_transaction_body::<
2996                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
2997                fidl::encoding::DefaultFuchsiaResourceDialect,
2998                0x7060e7723b9928de,
2999            >(_buf?)?;
3000            Ok(_response.map(|x| x))
3001        }
3002        self.client.send_query_and_decode::<DirectoryRenameRequest, DirectoryRenameResult>(
3003            (src, dst_parent_token, dst),
3004            0x7060e7723b9928de,
3005            fidl::encoding::DynamicFlags::empty(),
3006            _decode,
3007        )
3008    }
3009
3010    type CreateSymlinkResponseFut = fidl::client::QueryResponseFut<
3011        DirectoryCreateSymlinkResult,
3012        fidl::encoding::DefaultFuchsiaResourceDialect,
3013    >;
3014    fn r#create_symlink(
3015        &self,
3016        mut name: &str,
3017        mut target: &[u8],
3018        mut connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
3019    ) -> Self::CreateSymlinkResponseFut {
3020        fn _decode(
3021            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
3022        ) -> Result<DirectoryCreateSymlinkResult, fidl::Error> {
3023            let _response = fidl::client::decode_transaction_body::<
3024                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
3025                fidl::encoding::DefaultFuchsiaResourceDialect,
3026                0x21ce0f19ec043889,
3027            >(_buf?)?;
3028            Ok(_response.map(|x| x))
3029        }
3030        self.client
3031            .send_query_and_decode::<DirectoryCreateSymlinkRequest, DirectoryCreateSymlinkResult>(
3032                (name, target, connection),
3033                0x21ce0f19ec043889,
3034                fidl::encoding::DynamicFlags::empty(),
3035                _decode,
3036            )
3037    }
3038
3039    type WatchResponseFut =
3040        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
3041    fn r#watch(
3042        &self,
3043        mut mask: WatchMask,
3044        mut options: u32,
3045        mut watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
3046    ) -> Self::WatchResponseFut {
3047        fn _decode(
3048            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
3049        ) -> Result<i32, fidl::Error> {
3050            let _response = fidl::client::decode_transaction_body::<
3051                DirectoryWatchResponse,
3052                fidl::encoding::DefaultFuchsiaResourceDialect,
3053                0x5717193a59d66d91,
3054            >(_buf?)?;
3055            Ok(_response.s)
3056        }
3057        self.client.send_query_and_decode::<DirectoryWatchRequest, i32>(
3058            (mask, options, watcher),
3059            0x5717193a59d66d91,
3060            fidl::encoding::DynamicFlags::empty(),
3061            _decode,
3062        )
3063    }
3064}
3065
3066pub struct DirectoryEventStream {
3067    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
3068}
3069
3070impl std::marker::Unpin for DirectoryEventStream {}
3071
3072impl futures::stream::FusedStream for DirectoryEventStream {
3073    fn is_terminated(&self) -> bool {
3074        self.event_receiver.is_terminated()
3075    }
3076}
3077
3078impl futures::Stream for DirectoryEventStream {
3079    type Item = Result<DirectoryEvent, fidl::Error>;
3080
3081    fn poll_next(
3082        mut self: std::pin::Pin<&mut Self>,
3083        cx: &mut std::task::Context<'_>,
3084    ) -> std::task::Poll<Option<Self::Item>> {
3085        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
3086            &mut self.event_receiver,
3087            cx
3088        )?) {
3089            Some(buf) => std::task::Poll::Ready(Some(DirectoryEvent::decode(buf))),
3090            None => std::task::Poll::Ready(None),
3091        }
3092    }
3093}
3094
3095#[derive(Debug)]
3096pub enum DirectoryEvent {
3097    OnOpen_ {
3098        s: i32,
3099        info: Option<Box<NodeInfoDeprecated>>,
3100    },
3101    OnRepresentation {
3102        payload: Representation,
3103    },
3104    #[non_exhaustive]
3105    _UnknownEvent {
3106        /// Ordinal of the event that was sent.
3107        ordinal: u64,
3108    },
3109}
3110
3111impl DirectoryEvent {
3112    #[allow(irrefutable_let_patterns)]
3113    pub fn into_on_open_(self) -> Option<(i32, Option<Box<NodeInfoDeprecated>>)> {
3114        if let DirectoryEvent::OnOpen_ { s, info } = self {
3115            Some((s, info))
3116        } else {
3117            None
3118        }
3119    }
3120    #[allow(irrefutable_let_patterns)]
3121    pub fn into_on_representation(self) -> Option<Representation> {
3122        if let DirectoryEvent::OnRepresentation { payload } = self {
3123            Some((payload))
3124        } else {
3125            None
3126        }
3127    }
3128
3129    /// Decodes a message buffer as a [`DirectoryEvent`].
3130    fn decode(
3131        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
3132    ) -> Result<DirectoryEvent, fidl::Error> {
3133        let (bytes, _handles) = buf.split_mut();
3134        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
3135        debug_assert_eq!(tx_header.tx_id, 0);
3136        match tx_header.ordinal {
3137            0x7fc7bbb1dbfd1972 => {
3138                let mut out = fidl::new_empty!(
3139                    NodeOnOpenRequest,
3140                    fidl::encoding::DefaultFuchsiaResourceDialect
3141                );
3142                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeOnOpenRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
3143                Ok((DirectoryEvent::OnOpen_ { s: out.s, info: out.info }))
3144            }
3145            0x5cb40567d80a510c => {
3146                let mut out =
3147                    fidl::new_empty!(Representation, fidl::encoding::DefaultFuchsiaResourceDialect);
3148                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<Representation>(&tx_header, _body_bytes, _handles, &mut out)?;
3149                Ok((DirectoryEvent::OnRepresentation { payload: out }))
3150            }
3151            _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
3152                Ok(DirectoryEvent::_UnknownEvent { ordinal: tx_header.ordinal })
3153            }
3154            _ => Err(fidl::Error::UnknownOrdinal {
3155                ordinal: tx_header.ordinal,
3156                protocol_name: <DirectoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
3157            }),
3158        }
3159    }
3160}
3161
3162/// A Stream of incoming requests for fuchsia.io/Directory.
3163pub struct DirectoryRequestStream {
3164    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3165    is_terminated: bool,
3166}
3167
3168impl std::marker::Unpin for DirectoryRequestStream {}
3169
3170impl futures::stream::FusedStream for DirectoryRequestStream {
3171    fn is_terminated(&self) -> bool {
3172        self.is_terminated
3173    }
3174}
3175
3176impl fidl::endpoints::RequestStream for DirectoryRequestStream {
3177    type Protocol = DirectoryMarker;
3178    type ControlHandle = DirectoryControlHandle;
3179
3180    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
3181        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
3182    }
3183
3184    fn control_handle(&self) -> Self::ControlHandle {
3185        DirectoryControlHandle { inner: self.inner.clone() }
3186    }
3187
3188    fn into_inner(
3189        self,
3190    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
3191    {
3192        (self.inner, self.is_terminated)
3193    }
3194
3195    fn from_inner(
3196        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3197        is_terminated: bool,
3198    ) -> Self {
3199        Self { inner, is_terminated }
3200    }
3201}
3202
3203impl futures::Stream for DirectoryRequestStream {
3204    type Item = Result<DirectoryRequest, fidl::Error>;
3205
3206    fn poll_next(
3207        mut self: std::pin::Pin<&mut Self>,
3208        cx: &mut std::task::Context<'_>,
3209    ) -> std::task::Poll<Option<Self::Item>> {
3210        let this = &mut *self;
3211        if this.inner.check_shutdown(cx) {
3212            this.is_terminated = true;
3213            return std::task::Poll::Ready(None);
3214        }
3215        if this.is_terminated {
3216            panic!("polled DirectoryRequestStream after completion");
3217        }
3218        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
3219            |bytes, handles| {
3220                match this.inner.channel().read_etc(cx, bytes, handles) {
3221                    std::task::Poll::Ready(Ok(())) => {}
3222                    std::task::Poll::Pending => return std::task::Poll::Pending,
3223                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
3224                        this.is_terminated = true;
3225                        return std::task::Poll::Ready(None);
3226                    }
3227                    std::task::Poll::Ready(Err(e)) => {
3228                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
3229                            e.into(),
3230                        ))))
3231                    }
3232                }
3233
3234                // A message has been received from the channel
3235                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
3236
3237                std::task::Poll::Ready(Some(match header.ordinal {
3238                    0x6ee9c0ad53ec87aa => {
3239                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3240                        let mut req = fidl::new_empty!(
3241                            AdvisoryLockingAdvisoryLockRequest,
3242                            fidl::encoding::DefaultFuchsiaResourceDialect
3243                        );
3244                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<AdvisoryLockingAdvisoryLockRequest>(&header, _body_bytes, handles, &mut req)?;
3245                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3246                        Ok(DirectoryRequest::AdvisoryLock {
3247                            request: req.request,
3248
3249                            responder: DirectoryAdvisoryLockResponder {
3250                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3251                                tx_id: header.tx_id,
3252                            },
3253                        })
3254                    }
3255                    0x20d8a7aba2168a79 => {
3256                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
3257                        let mut req = fidl::new_empty!(
3258                            fidl_fuchsia_unknown::CloneableCloneRequest,
3259                            fidl::encoding::DefaultFuchsiaResourceDialect
3260                        );
3261                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_unknown::CloneableCloneRequest>(&header, _body_bytes, handles, &mut req)?;
3262                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3263                        Ok(DirectoryRequest::Clone { request: req.request, control_handle })
3264                    }
3265                    0x5ac5d459ad7f657e => {
3266                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3267                        let mut req = fidl::new_empty!(
3268                            fidl::encoding::EmptyPayload,
3269                            fidl::encoding::DefaultFuchsiaResourceDialect
3270                        );
3271                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3272                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3273                        Ok(DirectoryRequest::Close {
3274                            responder: DirectoryCloseResponder {
3275                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3276                                tx_id: header.tx_id,
3277                            },
3278                        })
3279                    }
3280                    0x2658edee9decfc06 => {
3281                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3282                        let mut req = fidl::new_empty!(
3283                            fidl::encoding::EmptyPayload,
3284                            fidl::encoding::DefaultFuchsiaResourceDialect
3285                        );
3286                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3287                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3288                        Ok(DirectoryRequest::Query {
3289                            responder: DirectoryQueryResponder {
3290                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3291                                tx_id: header.tx_id,
3292                            },
3293                        })
3294                    }
3295                    0x5a61678f293ce16f => {
3296                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
3297                        let mut req = fidl::new_empty!(
3298                            NodeDeprecatedCloneRequest,
3299                            fidl::encoding::DefaultFuchsiaResourceDialect
3300                        );
3301                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedCloneRequest>(&header, _body_bytes, handles, &mut req)?;
3302                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3303                        Ok(DirectoryRequest::DeprecatedClone {
3304                            flags: req.flags,
3305                            object: req.object,
3306
3307                            control_handle,
3308                        })
3309                    }
3310                    0x78985e216314dafd => {
3311                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3312                        let mut req = fidl::new_empty!(
3313                            fidl::encoding::EmptyPayload,
3314                            fidl::encoding::DefaultFuchsiaResourceDialect
3315                        );
3316                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3317                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3318                        Ok(DirectoryRequest::GetAttr {
3319                            responder: DirectoryGetAttrResponder {
3320                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3321                                tx_id: header.tx_id,
3322                            },
3323                        })
3324                    }
3325                    0x4186c0f40d938f46 => {
3326                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3327                        let mut req = fidl::new_empty!(
3328                            NodeSetAttrRequest,
3329                            fidl::encoding::DefaultFuchsiaResourceDialect
3330                        );
3331                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetAttrRequest>(&header, _body_bytes, handles, &mut req)?;
3332                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3333                        Ok(DirectoryRequest::SetAttr {
3334                            flags: req.flags,
3335                            attributes: req.attributes,
3336
3337                            responder: DirectorySetAttrResponder {
3338                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3339                                tx_id: header.tx_id,
3340                            },
3341                        })
3342                    }
3343                    0x5b88fffb8eda3aa1 => {
3344                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3345                        let mut req = fidl::new_empty!(
3346                            fidl::encoding::EmptyPayload,
3347                            fidl::encoding::DefaultFuchsiaResourceDialect
3348                        );
3349                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3350                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3351                        Ok(DirectoryRequest::DeprecatedGetFlags {
3352                            responder: DirectoryDeprecatedGetFlagsResponder {
3353                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3354                                tx_id: header.tx_id,
3355                            },
3356                        })
3357                    }
3358                    0x5295b76c71fde733 => {
3359                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3360                        let mut req = fidl::new_empty!(
3361                            NodeDeprecatedSetFlagsRequest,
3362                            fidl::encoding::DefaultFuchsiaResourceDialect
3363                        );
3364                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
3365                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3366                        Ok(DirectoryRequest::DeprecatedSetFlags {
3367                            flags: req.flags,
3368
3369                            responder: DirectoryDeprecatedSetFlagsResponder {
3370                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3371                                tx_id: header.tx_id,
3372                            },
3373                        })
3374                    }
3375                    0x176eb318f64ec23 => {
3376                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3377                        let mut req = fidl::new_empty!(
3378                            fidl::encoding::EmptyPayload,
3379                            fidl::encoding::DefaultFuchsiaResourceDialect
3380                        );
3381                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3382                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3383                        Ok(DirectoryRequest::GetFlags {
3384                            responder: DirectoryGetFlagsResponder {
3385                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3386                                tx_id: header.tx_id,
3387                            },
3388                        })
3389                    }
3390                    0x55a8028685791ea8 => {
3391                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3392                        let mut req = fidl::new_empty!(
3393                            NodeSetFlagsRequest,
3394                            fidl::encoding::DefaultFuchsiaResourceDialect
3395                        );
3396                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
3397                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3398                        Ok(DirectoryRequest::SetFlags {
3399                            flags: req.flags,
3400
3401                            responder: DirectorySetFlagsResponder {
3402                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3403                                tx_id: header.tx_id,
3404                            },
3405                        })
3406                    }
3407                    0x6f344a1c6b0a0610 => {
3408                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3409                        let mut req = fidl::new_empty!(
3410                            fidl::encoding::EmptyPayload,
3411                            fidl::encoding::DefaultFuchsiaResourceDialect
3412                        );
3413                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3414                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3415                        Ok(DirectoryRequest::QueryFilesystem {
3416                            responder: DirectoryQueryFilesystemResponder {
3417                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3418                                tx_id: header.tx_id,
3419                            },
3420                        })
3421                    }
3422                    0x584c377c7c0a6d0b => {
3423                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3424                        let mut req = fidl::new_empty!(
3425                            fidl::encoding::EmptyPayload,
3426                            fidl::encoding::DefaultFuchsiaResourceDialect
3427                        );
3428                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3429                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3430                        Ok(DirectoryRequest::GetConnectionInfo {
3431                            responder: DirectoryGetConnectionInfoResponder {
3432                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3433                                tx_id: header.tx_id,
3434                            },
3435                        })
3436                    }
3437                    0x3d4396a638ea053b => {
3438                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3439                        let mut req = fidl::new_empty!(
3440                            NodeGetAttributesRequest,
3441                            fidl::encoding::DefaultFuchsiaResourceDialect
3442                        );
3443                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
3444                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3445                        Ok(DirectoryRequest::GetAttributes {
3446                            query: req.query,
3447
3448                            responder: DirectoryGetAttributesResponder {
3449                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3450                                tx_id: header.tx_id,
3451                            },
3452                        })
3453                    }
3454                    0x3308c1da5a89bf08 => {
3455                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3456                        let mut req = fidl::new_empty!(
3457                            MutableNodeAttributes,
3458                            fidl::encoding::DefaultFuchsiaResourceDialect
3459                        );
3460                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<MutableNodeAttributes>(&header, _body_bytes, handles, &mut req)?;
3461                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3462                        Ok(DirectoryRequest::UpdateAttributes {
3463                            payload: req,
3464                            responder: DirectoryUpdateAttributesResponder {
3465                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3466                                tx_id: header.tx_id,
3467                            },
3468                        })
3469                    }
3470                    0x2c5c27ca0ab5dc49 => {
3471                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3472                        let mut req = fidl::new_empty!(
3473                            fidl::encoding::EmptyPayload,
3474                            fidl::encoding::DefaultFuchsiaResourceDialect
3475                        );
3476                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3477                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3478                        Ok(DirectoryRequest::Sync {
3479                            responder: DirectorySyncResponder {
3480                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3481                                tx_id: header.tx_id,
3482                            },
3483                        })
3484                    }
3485                    0x4b61033de007fcd0 => {
3486                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
3487                        let mut req = fidl::new_empty!(
3488                            NodeListExtendedAttributesRequest,
3489                            fidl::encoding::DefaultFuchsiaResourceDialect
3490                        );
3491                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeListExtendedAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
3492                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3493                        Ok(DirectoryRequest::ListExtendedAttributes {
3494                            iterator: req.iterator,
3495
3496                            control_handle,
3497                        })
3498                    }
3499                    0x45ffa3ccfdeb76db => {
3500                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3501                        let mut req = fidl::new_empty!(
3502                            NodeGetExtendedAttributeRequest,
3503                            fidl::encoding::DefaultFuchsiaResourceDialect
3504                        );
3505                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
3506                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3507                        Ok(DirectoryRequest::GetExtendedAttribute {
3508                            name: req.name,
3509
3510                            responder: DirectoryGetExtendedAttributeResponder {
3511                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3512                                tx_id: header.tx_id,
3513                            },
3514                        })
3515                    }
3516                    0x4a951362f681f23c => {
3517                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3518                        let mut req = fidl::new_empty!(
3519                            NodeSetExtendedAttributeRequest,
3520                            fidl::encoding::DefaultFuchsiaResourceDialect
3521                        );
3522                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
3523                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3524                        Ok(DirectoryRequest::SetExtendedAttribute {
3525                            name: req.name,
3526                            value: req.value,
3527                            mode: req.mode,
3528
3529                            responder: DirectorySetExtendedAttributeResponder {
3530                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3531                                tx_id: header.tx_id,
3532                            },
3533                        })
3534                    }
3535                    0x7a0b9f3a9bf9032d => {
3536                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3537                        let mut req = fidl::new_empty!(
3538                            NodeRemoveExtendedAttributeRequest,
3539                            fidl::encoding::DefaultFuchsiaResourceDialect
3540                        );
3541                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeRemoveExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
3542                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3543                        Ok(DirectoryRequest::RemoveExtendedAttribute {
3544                            name: req.name,
3545
3546                            responder: DirectoryRemoveExtendedAttributeResponder {
3547                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3548                                tx_id: header.tx_id,
3549                            },
3550                        })
3551                    }
3552                    0x2c5044561d685ec0 => {
3553                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
3554                        let mut req = fidl::new_empty!(
3555                            DirectoryDeprecatedOpenRequest,
3556                            fidl::encoding::DefaultFuchsiaResourceDialect
3557                        );
3558                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryDeprecatedOpenRequest>(&header, _body_bytes, handles, &mut req)?;
3559                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3560                        Ok(DirectoryRequest::DeprecatedOpen {
3561                            flags: req.flags,
3562                            mode: req.mode,
3563                            path: req.path,
3564                            object: req.object,
3565
3566                            control_handle,
3567                        })
3568                    }
3569                    0x568ddcb9a9cbb6d9 => {
3570                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
3571                        let mut req = fidl::new_empty!(
3572                            DirectoryOpenRequest,
3573                            fidl::encoding::DefaultFuchsiaResourceDialect
3574                        );
3575                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryOpenRequest>(&header, _body_bytes, handles, &mut req)?;
3576                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3577                        Ok(DirectoryRequest::Open {
3578                            path: req.path,
3579                            flags: req.flags,
3580                            options: req.options,
3581                            object: req.object,
3582
3583                            control_handle,
3584                        })
3585                    }
3586                    0x3582806bf27faa0a => {
3587                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3588                        let mut req = fidl::new_empty!(
3589                            DirectoryReadDirentsRequest,
3590                            fidl::encoding::DefaultFuchsiaResourceDialect
3591                        );
3592                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryReadDirentsRequest>(&header, _body_bytes, handles, &mut req)?;
3593                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3594                        Ok(DirectoryRequest::ReadDirents {
3595                            max_bytes: req.max_bytes,
3596
3597                            responder: DirectoryReadDirentsResponder {
3598                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3599                                tx_id: header.tx_id,
3600                            },
3601                        })
3602                    }
3603                    0x16b1202af0f34c71 => {
3604                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3605                        let mut req = fidl::new_empty!(
3606                            fidl::encoding::EmptyPayload,
3607                            fidl::encoding::DefaultFuchsiaResourceDialect
3608                        );
3609                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3610                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3611                        Ok(DirectoryRequest::Rewind {
3612                            responder: DirectoryRewindResponder {
3613                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3614                                tx_id: header.tx_id,
3615                            },
3616                        })
3617                    }
3618                    0x26ae9d18763c8655 => {
3619                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3620                        let mut req = fidl::new_empty!(
3621                            fidl::encoding::EmptyPayload,
3622                            fidl::encoding::DefaultFuchsiaResourceDialect
3623                        );
3624                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3625                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3626                        Ok(DirectoryRequest::GetToken {
3627                            responder: DirectoryGetTokenResponder {
3628                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3629                                tx_id: header.tx_id,
3630                            },
3631                        })
3632                    }
3633                    0x740604c0c7c930e7 => {
3634                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3635                        let mut req = fidl::new_empty!(
3636                            DirectoryLinkRequest,
3637                            fidl::encoding::DefaultFuchsiaResourceDialect
3638                        );
3639                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryLinkRequest>(&header, _body_bytes, handles, &mut req)?;
3640                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3641                        Ok(DirectoryRequest::Link {
3642                            src: req.src,
3643                            dst_parent_token: req.dst_parent_token,
3644                            dst: req.dst,
3645
3646                            responder: DirectoryLinkResponder {
3647                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3648                                tx_id: header.tx_id,
3649                            },
3650                        })
3651                    }
3652                    0x750a0326a78d7bed => {
3653                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3654                        let mut req = fidl::new_empty!(
3655                            DirectoryUnlinkRequest,
3656                            fidl::encoding::DefaultFuchsiaResourceDialect
3657                        );
3658                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryUnlinkRequest>(&header, _body_bytes, handles, &mut req)?;
3659                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3660                        Ok(DirectoryRequest::Unlink {
3661                            name: req.name,
3662                            options: req.options,
3663
3664                            responder: DirectoryUnlinkResponder {
3665                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3666                                tx_id: header.tx_id,
3667                            },
3668                        })
3669                    }
3670                    0x7060e7723b9928de => {
3671                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3672                        let mut req = fidl::new_empty!(
3673                            DirectoryRenameRequest,
3674                            fidl::encoding::DefaultFuchsiaResourceDialect
3675                        );
3676                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryRenameRequest>(&header, _body_bytes, handles, &mut req)?;
3677                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3678                        Ok(DirectoryRequest::Rename {
3679                            src: req.src,
3680                            dst_parent_token: req.dst_parent_token,
3681                            dst: req.dst,
3682
3683                            responder: DirectoryRenameResponder {
3684                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3685                                tx_id: header.tx_id,
3686                            },
3687                        })
3688                    }
3689                    0x21ce0f19ec043889 => {
3690                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3691                        let mut req = fidl::new_empty!(
3692                            DirectoryCreateSymlinkRequest,
3693                            fidl::encoding::DefaultFuchsiaResourceDialect
3694                        );
3695                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryCreateSymlinkRequest>(&header, _body_bytes, handles, &mut req)?;
3696                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3697                        Ok(DirectoryRequest::CreateSymlink {
3698                            name: req.name,
3699                            target: req.target,
3700                            connection: req.connection,
3701
3702                            responder: DirectoryCreateSymlinkResponder {
3703                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3704                                tx_id: header.tx_id,
3705                            },
3706                        })
3707                    }
3708                    0x5717193a59d66d91 => {
3709                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3710                        let mut req = fidl::new_empty!(
3711                            DirectoryWatchRequest,
3712                            fidl::encoding::DefaultFuchsiaResourceDialect
3713                        );
3714                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DirectoryWatchRequest>(&header, _body_bytes, handles, &mut req)?;
3715                        let control_handle = DirectoryControlHandle { inner: this.inner.clone() };
3716                        Ok(DirectoryRequest::Watch {
3717                            mask: req.mask,
3718                            options: req.options,
3719                            watcher: req.watcher,
3720
3721                            responder: DirectoryWatchResponder {
3722                                control_handle: std::mem::ManuallyDrop::new(control_handle),
3723                                tx_id: header.tx_id,
3724                            },
3725                        })
3726                    }
3727                    _ if header.tx_id == 0
3728                        && header
3729                            .dynamic_flags()
3730                            .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
3731                    {
3732                        Ok(DirectoryRequest::_UnknownMethod {
3733                            ordinal: header.ordinal,
3734                            control_handle: DirectoryControlHandle { inner: this.inner.clone() },
3735                            method_type: fidl::MethodType::OneWay,
3736                        })
3737                    }
3738                    _ if header
3739                        .dynamic_flags()
3740                        .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
3741                    {
3742                        this.inner.send_framework_err(
3743                            fidl::encoding::FrameworkErr::UnknownMethod,
3744                            header.tx_id,
3745                            header.ordinal,
3746                            header.dynamic_flags(),
3747                            (bytes, handles),
3748                        )?;
3749                        Ok(DirectoryRequest::_UnknownMethod {
3750                            ordinal: header.ordinal,
3751                            control_handle: DirectoryControlHandle { inner: this.inner.clone() },
3752                            method_type: fidl::MethodType::TwoWay,
3753                        })
3754                    }
3755                    _ => Err(fidl::Error::UnknownOrdinal {
3756                        ordinal: header.ordinal,
3757                        protocol_name:
3758                            <DirectoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
3759                    }),
3760                }))
3761            },
3762        )
3763    }
3764}
3765
3766/// Directory defines a node which is capable of containing other Objects.
3767#[derive(Debug)]
3768pub enum DirectoryRequest {
3769    /// Acquires an advisory lock on the underlying file.
3770    ///
3771    /// The lock lasts until either this connection is closed or
3772    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
3773    /// explicitly.
3774    ///
3775    /// Advisory locks are purely advisory. They do not prevent actual read or
3776    /// write operations from occurring on the file, either through this
3777    /// connection or through other connections.
3778    ///
3779    /// This method requires the following rights:
3780    ///
3781    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
3782    /// * [`Rights.WRITE_BYTES`] if `request.type` is
3783    ///   [`AdvisoryLockType.WRITE`].
3784    ///
3785    /// # Errors
3786    ///
3787    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
3788    ///   example, another connection might hold a conflicting lock type.
3789    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
3790    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
3791    ///   to acquire the given type of lock.
3792    AdvisoryLock {
3793        request: AdvisoryLockRequest,
3794        responder: DirectoryAdvisoryLockResponder,
3795    },
3796    Clone {
3797        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
3798        control_handle: DirectoryControlHandle,
3799    },
3800    /// Terminates the connection.
3801    ///
3802    /// After calling `Close`, the client must not send any other requests.
3803    ///
3804    /// Servers, after sending the status response, should close the connection
3805    /// regardless of status and without sending an epitaph.
3806    ///
3807    /// Closing the client end of the channel should be semantically equivalent
3808    /// to calling `Close` without knowing when the close has completed or its
3809    /// status.
3810    Close {
3811        responder: DirectoryCloseResponder,
3812    },
3813    Query {
3814        responder: DirectoryQueryResponder,
3815    },
3816    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
3817    DeprecatedClone {
3818        flags: OpenFlags,
3819        object: fidl::endpoints::ServerEnd<NodeMarker>,
3820        control_handle: DirectoryControlHandle,
3821    },
3822    /// Acquires information about the node.
3823    ///
3824    /// This method does not require any rights.
3825    GetAttr {
3826        responder: DirectoryGetAttrResponder,
3827    },
3828    /// Updates information about the node.
3829    ///
3830    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
3831    ///
3832    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
3833    /// `ZX_ERR_BAD_HANDLE`.
3834    SetAttr {
3835        flags: NodeAttributeFlags,
3836        attributes: NodeAttributes,
3837        responder: DirectorySetAttrResponder,
3838    },
3839    /// [DEPRECATED - Use new GetFlags method instead.]
3840    DeprecatedGetFlags {
3841        responder: DirectoryDeprecatedGetFlagsResponder,
3842    },
3843    /// [DEPRECATED - Use new SetFlags method instead.]
3844    DeprecatedSetFlags {
3845        flags: OpenFlags,
3846        responder: DirectoryDeprecatedSetFlagsResponder,
3847    },
3848    /// Queries the flags that apply to this node after it has been opened/created. This method does
3849    /// not require any rights.
3850    ///
3851    /// Note that the final set of flags that apply to the connection may differ from those
3852    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
3853    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
3854    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
3855    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
3856    GetFlags {
3857        responder: DirectoryGetFlagsResponder,
3858    },
3859    /// Sets the flags that apply to this node after it has been opened. This method does not
3860    /// require any rights.
3861    ///
3862    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
3863    /// clear append mode.
3864    ///
3865    /// Errors:
3866    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
3867    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
3868    SetFlags {
3869        flags: Flags,
3870        responder: DirectorySetFlagsResponder,
3871    },
3872    /// Query the filesystem for filesystem-specific information.
3873    QueryFilesystem {
3874        responder: DirectoryQueryFilesystemResponder,
3875    },
3876    /// Acquires information about the connection.
3877    ///
3878    /// This method does not require any rights.
3879    GetConnectionInfo {
3880        responder: DirectoryGetConnectionInfoResponder,
3881    },
3882    /// Acquires information about the node.
3883    ///
3884    /// The attributes of a node should be stable, independent of the
3885    /// specific protocol used to access it.
3886    ///
3887    /// If a particular attribute is not applicable or not supported,
3888    /// filesystems should leave the corresponding field absent.
3889    ///
3890    /// + `query` a bit-mask specifying which attributes to fetch. The server
3891    ///   should not return more than necessary.
3892    /// - `attributes` the returned attributes.
3893    ///
3894    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
3895    GetAttributes {
3896        query: NodeAttributesQuery,
3897        responder: DirectoryGetAttributesResponder,
3898    },
3899    /// Updates information about the node.
3900    ///
3901    /// + `attributes` the presence of a table field in `attributes` indicates
3902    /// the intent to update the corresponding attribute.
3903    ///
3904    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
3905    ///
3906    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
3907    UpdateAttributes {
3908        payload: MutableNodeAttributes,
3909        responder: DirectoryUpdateAttributesResponder,
3910    },
3911    /// Synchronizes updates to the node to the underlying media, if it exists.
3912    ///
3913    /// This method will return when the filesystem server has flushed the
3914    /// relevant updates to the underlying media, but does not guarantee the
3915    /// underlying media has persisted the information, nor that any information
3916    /// is committed to hardware. Clients may use `Sync` to ensure ordering
3917    /// between operations.
3918    ///
3919    /// This method does not require any rights.
3920    Sync {
3921        responder: DirectorySyncResponder,
3922    },
3923    /// Creates an iterator over all the extended attribute names associated
3924    /// with this node. If an error occurs it is returned as an epitaph on the
3925    /// iterator request channel, and then the channel is closed.
3926    ///
3927    /// GetExtendedAttributes can be used with any of these names to retrieve
3928    /// the associated value.
3929    ///
3930    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
3931    ListExtendedAttributes {
3932        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
3933        control_handle: DirectoryControlHandle,
3934    },
3935    /// Get the value associated with the given attribute `name` for this node.
3936    ///
3937    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
3938    /// particular structure is imposed on them.
3939    ///
3940    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
3941    GetExtendedAttribute {
3942        name: Vec<u8>,
3943        responder: DirectoryGetExtendedAttributeResponder,
3944    },
3945    /// Set the value for the given attribute `name` to `value` for this node.
3946    ///
3947    /// The attribute name may exist, in which case the attribute is updated.
3948    /// If the attribute doesn't exist, it is created. The name should have no
3949    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
3950    ///
3951    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
3952    SetExtendedAttribute {
3953        name: Vec<u8>,
3954        value: ExtendedAttributeValue,
3955        mode: SetExtendedAttributeMode,
3956        responder: DirectorySetExtendedAttributeResponder,
3957    },
3958    /// Remove the specified extended attribute.
3959    ///
3960    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
3961    ///
3962    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
3963    RemoveExtendedAttribute {
3964        name: Vec<u8>,
3965        responder: DirectoryRemoveExtendedAttributeResponder,
3966    },
3967    /// DEPRECATED - Use `fuchsia.io/Directory.Open` instead.
3968    DeprecatedOpen {
3969        flags: OpenFlags,
3970        mode: ModeType,
3971        path: String,
3972        object: fidl::endpoints::ServerEnd<NodeMarker>,
3973        control_handle: DirectoryControlHandle,
3974    },
3975    /// Open (or create) a node relative to this directory. Any errors are communicated via an
3976    /// epitaph sent on the `object` channel.
3977    ///
3978    /// Errors:
3979    /// * `ZX_ERR_BAD_PATH` if `path` is invalid
3980    /// * See [`Flags`] for other errors which may be communicated based on `flags`
3981    Open {
3982        path: String,
3983        flags: Flags,
3984        options: Options,
3985        object: fidl::Channel,
3986        control_handle: DirectoryControlHandle,
3987    },
3988    /// Reads a collection of variably sized dirents into a buffer.
3989    /// The number of dirents in a directory may be very large: akin to
3990    /// calling read multiple times on a file, directories have a seek
3991    /// offset which is updated on subsequent calls to ReadDirents.
3992    /// Each call to ReadDirents will only return whole dirent structures,
3993    /// they will not get split across ReadDirent calls. When the seek
3994    /// offset reaches the end, `dirents` will be empty.
3995    ///
3996    /// These dirents are of the form:
3997    /// ```
3998    /// struct dirent {
3999    ///   // Describes the inode of the entry.
4000    ///   uint64 ino;
4001    ///   // Describes the length of the dirent name in bytes.
4002    ///   uint8 size;
4003    ///   // Describes the type of the entry. Aligned with the
4004    ///   // POSIX d_type values. Use `DirentType` constants.
4005    ///   uint8 type;
4006    ///   // Unterminated name of entry.
4007    ///   char name[0];
4008    /// }
4009    /// ```
4010    ///
4011    /// This method does not require any rights, since one could always probe for
4012    /// directory contents by triggering name conflicts during file creation.
4013    ReadDirents {
4014        max_bytes: u64,
4015        responder: DirectoryReadDirentsResponder,
4016    },
4017    /// Resets the directory seek offset.
4018    ///
4019    /// This method does not require any rights, similar to ReadDirents.
4020    Rewind {
4021        responder: DirectoryRewindResponder,
4022    },
4023    /// Acquires a token to a Directory which can be used to identify access to it at a later point
4024    /// in time. The token will remain valid for as long as the connection requesting the token
4025    /// remains open.
4026    ///
4027    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
4028    /// `ZX_ERR_BAD_HANDLE`.
4029    GetToken {
4030        responder: DirectoryGetTokenResponder,
4031    },
4032    /// Creates a link to an object named src by the name dst, within a directory represented by
4033    /// token.
4034    ///
4035    /// `src` must be a resolved object name. Including "/" in the string will
4036    /// return `ZX_ERR_INVALID_ARGS`.
4037    ///
4038    /// `dst` must be a resolved object name. Including "/" in the string will
4039    /// return `ZX_ERR_INVALID_ARGS`.
4040    ///
4041    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE` and
4042    /// `OpenFlags.RIGHT_READABLE`, otherwise returns `ZX_ERR_BAD_HANDLE`.
4043    ///
4044    /// This will be atomic with respect to renaming or unlinking the source concurrently e.g. if
4045    /// there are two actors operating concurrently, and one actor performs a rename that affects
4046    /// the source within this directory, and the other does a link, each will appear to occur
4047    /// atomically in an unspecified order.
4048    Link {
4049        src: String,
4050        dst_parent_token: fidl::Handle,
4051        dst: String,
4052        responder: DirectoryLinkResponder,
4053    },
4054    /// Removes a child node from the this directory's list of entries.
4055    ///
4056    /// Note: this does not guarantee that the underlying object is destroyed.
4057    /// Although the link will be removed from the containing directory,
4058    /// objects with multiple references (such as files which are still open)
4059    /// will not actually be destroyed until all references are closed.
4060    ///
4061    /// * error `ZX_ERR_ACCESS_DENIED` if the connection does not have
4062    ///   [`Rights.WRITE_BYTES`].
4063    /// * error `ZX_ERR_NOT_SUPPORTED` if the underlying filesystem does not
4064    ///   support writing.
4065    /// * error `ZX_ERR_BAD_PATH` if `name` is invalid.
4066    /// * error `ZX_ERR_NOT_EMPTY` if `name` refers to a non-empty directory.
4067    /// * error `ZX_ERR_UNAVAILABLE` if `name` refers to a mount point,
4068    ///   containing a remote channel.
4069    /// * error `ZX_ERR_NOT_DIR` if the options requested a directory but
4070    ///     something other than a directory was found.
4071    ///
4072    /// Other errors may be returned for filesystem-specific reasons.
4073    ///
4074    /// This method requires the following rights:
4075    ///
4076    /// * [`Rights.ENUMERATE`]
4077    /// * [`Rights.MODIFY_DIRECTORY`]
4078    Unlink {
4079        name: String,
4080        options: UnlinkOptions,
4081        responder: DirectoryUnlinkResponder,
4082    },
4083    /// Renames a node named `src` to the name `dst`, in a directory represented
4084    /// by `dst_parent_token`.
4085    ///
4086    /// `src` and `dst` must be valid node names.
4087    /// See [`Name`] for what constitutes a valid name.
4088    ///
4089    /// This method requires the following rights on both the current connection, and the connection
4090    /// identified by `dst_parent_token`:
4091    ///
4092    /// * [`Rights.ENUMERATE`]
4093    /// * [`Rights.MODIFY_DIRECTORY`]
4094    ///
4095    /// The following requirements are necessary to avoid rights escalations.
4096    ///
4097    /// If the source and destination directory differ, the source directory must also have the
4098    /// maximal set of abilities supported for files, which would typically be
4099    /// [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`], [`Rights.GET_ATTRIBUTES`] and
4100    /// [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also support the [`Rights.EXECUTE`]
4101    /// right.
4102    ///
4103    /// If `src` refers to a directory, and differs from the destination directory, then the source
4104    /// directory must have also have the [`Rights.CONNECT`] and [`Rights.TRAVERSE`] rights.
4105    ///
4106    /// * error `ZX_ERR_INVALID_ARGS` if `src` or `dst` is invalid.
4107    /// * error `ZX_ERR_ACCESS_DENIED` for insufficient rights.
4108    Rename {
4109        src: String,
4110        dst_parent_token: fidl::Event,
4111        dst: String,
4112        responder: DirectoryRenameResponder,
4113    },
4114    /// Creates a symbolic link.
4115    ///
4116    /// `name` is the name to be given to the created symbolic link.
4117    /// `target` is the target of the symbolic link, which has no meaning on the server. The server
4118    /// will perform no validation of `target` except for a server chosen maximum length.
4119    /// `connection` is an optional server end of a channel that will speak the Symlink protocol
4120    /// on the successfully created node.
4121    ///
4122    /// * [`Rights.MODIFY_DIRECTORY`]
4123    ///
4124    /// * error `ZX_ERR_ALREADY_EXISTS` if `name` already exists.
4125    /// * error `ZX_ERR_BAD_PATH` if `target` exceeds the server length limit for symbolic links.
4126    /// * error `ZX_ERR_INVALID_ARGS` if `name` is not a valid [`Name`].
4127    /// * error `ZX_ERR_NOT_SUPPORTED` if creating symbolic links is not supported by the server.
4128    CreateSymlink {
4129        name: String,
4130        target: Vec<u8>,
4131        connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
4132        responder: DirectoryCreateSymlinkResponder,
4133    },
4134    /// Watches a directory, receiving events of added messages on the
4135    /// watcher request channel.
4136    ///
4137    /// Options must be zero; it is reserved.
4138    ///
4139    /// This method does not require any rights, similar to ReadDirents.
4140    Watch {
4141        mask: WatchMask,
4142        options: u32,
4143        watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
4144        responder: DirectoryWatchResponder,
4145    },
4146    /// An interaction was received which does not match any known method.
4147    #[non_exhaustive]
4148    _UnknownMethod {
4149        /// Ordinal of the method that was called.
4150        ordinal: u64,
4151        control_handle: DirectoryControlHandle,
4152        method_type: fidl::MethodType,
4153    },
4154}
4155
4156impl DirectoryRequest {
4157    #[allow(irrefutable_let_patterns)]
4158    pub fn into_advisory_lock(
4159        self,
4160    ) -> Option<(AdvisoryLockRequest, DirectoryAdvisoryLockResponder)> {
4161        if let DirectoryRequest::AdvisoryLock { request, responder } = self {
4162            Some((request, responder))
4163        } else {
4164            None
4165        }
4166    }
4167
4168    #[allow(irrefutable_let_patterns)]
4169    pub fn into_clone(
4170        self,
4171    ) -> Option<(
4172        fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
4173        DirectoryControlHandle,
4174    )> {
4175        if let DirectoryRequest::Clone { request, control_handle } = self {
4176            Some((request, control_handle))
4177        } else {
4178            None
4179        }
4180    }
4181
4182    #[allow(irrefutable_let_patterns)]
4183    pub fn into_close(self) -> Option<(DirectoryCloseResponder)> {
4184        if let DirectoryRequest::Close { responder } = self {
4185            Some((responder))
4186        } else {
4187            None
4188        }
4189    }
4190
4191    #[allow(irrefutable_let_patterns)]
4192    pub fn into_query(self) -> Option<(DirectoryQueryResponder)> {
4193        if let DirectoryRequest::Query { responder } = self {
4194            Some((responder))
4195        } else {
4196            None
4197        }
4198    }
4199
4200    #[allow(irrefutable_let_patterns)]
4201    pub fn into_deprecated_clone(
4202        self,
4203    ) -> Option<(OpenFlags, fidl::endpoints::ServerEnd<NodeMarker>, DirectoryControlHandle)> {
4204        if let DirectoryRequest::DeprecatedClone { flags, object, control_handle } = self {
4205            Some((flags, object, control_handle))
4206        } else {
4207            None
4208        }
4209    }
4210
4211    #[allow(irrefutable_let_patterns)]
4212    pub fn into_get_attr(self) -> Option<(DirectoryGetAttrResponder)> {
4213        if let DirectoryRequest::GetAttr { responder } = self {
4214            Some((responder))
4215        } else {
4216            None
4217        }
4218    }
4219
4220    #[allow(irrefutable_let_patterns)]
4221    pub fn into_set_attr(
4222        self,
4223    ) -> Option<(NodeAttributeFlags, NodeAttributes, DirectorySetAttrResponder)> {
4224        if let DirectoryRequest::SetAttr { flags, attributes, responder } = self {
4225            Some((flags, attributes, responder))
4226        } else {
4227            None
4228        }
4229    }
4230
4231    #[allow(irrefutable_let_patterns)]
4232    pub fn into_deprecated_get_flags(self) -> Option<(DirectoryDeprecatedGetFlagsResponder)> {
4233        if let DirectoryRequest::DeprecatedGetFlags { responder } = self {
4234            Some((responder))
4235        } else {
4236            None
4237        }
4238    }
4239
4240    #[allow(irrefutable_let_patterns)]
4241    pub fn into_deprecated_set_flags(
4242        self,
4243    ) -> Option<(OpenFlags, DirectoryDeprecatedSetFlagsResponder)> {
4244        if let DirectoryRequest::DeprecatedSetFlags { flags, responder } = self {
4245            Some((flags, responder))
4246        } else {
4247            None
4248        }
4249    }
4250
4251    #[allow(irrefutable_let_patterns)]
4252    pub fn into_get_flags(self) -> Option<(DirectoryGetFlagsResponder)> {
4253        if let DirectoryRequest::GetFlags { responder } = self {
4254            Some((responder))
4255        } else {
4256            None
4257        }
4258    }
4259
4260    #[allow(irrefutable_let_patterns)]
4261    pub fn into_set_flags(self) -> Option<(Flags, DirectorySetFlagsResponder)> {
4262        if let DirectoryRequest::SetFlags { flags, responder } = self {
4263            Some((flags, responder))
4264        } else {
4265            None
4266        }
4267    }
4268
4269    #[allow(irrefutable_let_patterns)]
4270    pub fn into_query_filesystem(self) -> Option<(DirectoryQueryFilesystemResponder)> {
4271        if let DirectoryRequest::QueryFilesystem { responder } = self {
4272            Some((responder))
4273        } else {
4274            None
4275        }
4276    }
4277
4278    #[allow(irrefutable_let_patterns)]
4279    pub fn into_get_connection_info(self) -> Option<(DirectoryGetConnectionInfoResponder)> {
4280        if let DirectoryRequest::GetConnectionInfo { responder } = self {
4281            Some((responder))
4282        } else {
4283            None
4284        }
4285    }
4286
4287    #[allow(irrefutable_let_patterns)]
4288    pub fn into_get_attributes(
4289        self,
4290    ) -> Option<(NodeAttributesQuery, DirectoryGetAttributesResponder)> {
4291        if let DirectoryRequest::GetAttributes { query, responder } = self {
4292            Some((query, responder))
4293        } else {
4294            None
4295        }
4296    }
4297
4298    #[allow(irrefutable_let_patterns)]
4299    pub fn into_update_attributes(
4300        self,
4301    ) -> Option<(MutableNodeAttributes, DirectoryUpdateAttributesResponder)> {
4302        if let DirectoryRequest::UpdateAttributes { payload, responder } = self {
4303            Some((payload, responder))
4304        } else {
4305            None
4306        }
4307    }
4308
4309    #[allow(irrefutable_let_patterns)]
4310    pub fn into_sync(self) -> Option<(DirectorySyncResponder)> {
4311        if let DirectoryRequest::Sync { responder } = self {
4312            Some((responder))
4313        } else {
4314            None
4315        }
4316    }
4317
4318    #[allow(irrefutable_let_patterns)]
4319    pub fn into_list_extended_attributes(
4320        self,
4321    ) -> Option<(fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>, DirectoryControlHandle)>
4322    {
4323        if let DirectoryRequest::ListExtendedAttributes { iterator, control_handle } = self {
4324            Some((iterator, control_handle))
4325        } else {
4326            None
4327        }
4328    }
4329
4330    #[allow(irrefutable_let_patterns)]
4331    pub fn into_get_extended_attribute(
4332        self,
4333    ) -> Option<(Vec<u8>, DirectoryGetExtendedAttributeResponder)> {
4334        if let DirectoryRequest::GetExtendedAttribute { name, responder } = self {
4335            Some((name, responder))
4336        } else {
4337            None
4338        }
4339    }
4340
4341    #[allow(irrefutable_let_patterns)]
4342    pub fn into_set_extended_attribute(
4343        self,
4344    ) -> Option<(
4345        Vec<u8>,
4346        ExtendedAttributeValue,
4347        SetExtendedAttributeMode,
4348        DirectorySetExtendedAttributeResponder,
4349    )> {
4350        if let DirectoryRequest::SetExtendedAttribute { name, value, mode, responder } = self {
4351            Some((name, value, mode, responder))
4352        } else {
4353            None
4354        }
4355    }
4356
4357    #[allow(irrefutable_let_patterns)]
4358    pub fn into_remove_extended_attribute(
4359        self,
4360    ) -> Option<(Vec<u8>, DirectoryRemoveExtendedAttributeResponder)> {
4361        if let DirectoryRequest::RemoveExtendedAttribute { name, responder } = self {
4362            Some((name, responder))
4363        } else {
4364            None
4365        }
4366    }
4367
4368    #[allow(irrefutable_let_patterns)]
4369    pub fn into_deprecated_open(
4370        self,
4371    ) -> Option<(
4372        OpenFlags,
4373        ModeType,
4374        String,
4375        fidl::endpoints::ServerEnd<NodeMarker>,
4376        DirectoryControlHandle,
4377    )> {
4378        if let DirectoryRequest::DeprecatedOpen { flags, mode, path, object, control_handle } = self
4379        {
4380            Some((flags, mode, path, object, control_handle))
4381        } else {
4382            None
4383        }
4384    }
4385
4386    #[allow(irrefutable_let_patterns)]
4387    pub fn into_open(
4388        self,
4389    ) -> Option<(String, Flags, Options, fidl::Channel, DirectoryControlHandle)> {
4390        if let DirectoryRequest::Open { path, flags, options, object, control_handle } = self {
4391            Some((path, flags, options, object, control_handle))
4392        } else {
4393            None
4394        }
4395    }
4396
4397    #[allow(irrefutable_let_patterns)]
4398    pub fn into_read_dirents(self) -> Option<(u64, DirectoryReadDirentsResponder)> {
4399        if let DirectoryRequest::ReadDirents { max_bytes, responder } = self {
4400            Some((max_bytes, responder))
4401        } else {
4402            None
4403        }
4404    }
4405
4406    #[allow(irrefutable_let_patterns)]
4407    pub fn into_rewind(self) -> Option<(DirectoryRewindResponder)> {
4408        if let DirectoryRequest::Rewind { responder } = self {
4409            Some((responder))
4410        } else {
4411            None
4412        }
4413    }
4414
4415    #[allow(irrefutable_let_patterns)]
4416    pub fn into_get_token(self) -> Option<(DirectoryGetTokenResponder)> {
4417        if let DirectoryRequest::GetToken { responder } = self {
4418            Some((responder))
4419        } else {
4420            None
4421        }
4422    }
4423
4424    #[allow(irrefutable_let_patterns)]
4425    pub fn into_link(self) -> Option<(String, fidl::Handle, String, DirectoryLinkResponder)> {
4426        if let DirectoryRequest::Link { src, dst_parent_token, dst, responder } = self {
4427            Some((src, dst_parent_token, dst, responder))
4428        } else {
4429            None
4430        }
4431    }
4432
4433    #[allow(irrefutable_let_patterns)]
4434    pub fn into_unlink(self) -> Option<(String, UnlinkOptions, DirectoryUnlinkResponder)> {
4435        if let DirectoryRequest::Unlink { name, options, responder } = self {
4436            Some((name, options, responder))
4437        } else {
4438            None
4439        }
4440    }
4441
4442    #[allow(irrefutable_let_patterns)]
4443    pub fn into_rename(self) -> Option<(String, fidl::Event, String, DirectoryRenameResponder)> {
4444        if let DirectoryRequest::Rename { src, dst_parent_token, dst, responder } = self {
4445            Some((src, dst_parent_token, dst, responder))
4446        } else {
4447            None
4448        }
4449    }
4450
4451    #[allow(irrefutable_let_patterns)]
4452    pub fn into_create_symlink(
4453        self,
4454    ) -> Option<(
4455        String,
4456        Vec<u8>,
4457        Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
4458        DirectoryCreateSymlinkResponder,
4459    )> {
4460        if let DirectoryRequest::CreateSymlink { name, target, connection, responder } = self {
4461            Some((name, target, connection, responder))
4462        } else {
4463            None
4464        }
4465    }
4466
4467    #[allow(irrefutable_let_patterns)]
4468    pub fn into_watch(
4469        self,
4470    ) -> Option<(
4471        WatchMask,
4472        u32,
4473        fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
4474        DirectoryWatchResponder,
4475    )> {
4476        if let DirectoryRequest::Watch { mask, options, watcher, responder } = self {
4477            Some((mask, options, watcher, responder))
4478        } else {
4479            None
4480        }
4481    }
4482
4483    /// Name of the method defined in FIDL
4484    pub fn method_name(&self) -> &'static str {
4485        match *self {
4486            DirectoryRequest::AdvisoryLock { .. } => "advisory_lock",
4487            DirectoryRequest::Clone { .. } => "clone",
4488            DirectoryRequest::Close { .. } => "close",
4489            DirectoryRequest::Query { .. } => "query",
4490            DirectoryRequest::DeprecatedClone { .. } => "deprecated_clone",
4491            DirectoryRequest::GetAttr { .. } => "get_attr",
4492            DirectoryRequest::SetAttr { .. } => "set_attr",
4493            DirectoryRequest::DeprecatedGetFlags { .. } => "deprecated_get_flags",
4494            DirectoryRequest::DeprecatedSetFlags { .. } => "deprecated_set_flags",
4495            DirectoryRequest::GetFlags { .. } => "get_flags",
4496            DirectoryRequest::SetFlags { .. } => "set_flags",
4497            DirectoryRequest::QueryFilesystem { .. } => "query_filesystem",
4498            DirectoryRequest::GetConnectionInfo { .. } => "get_connection_info",
4499            DirectoryRequest::GetAttributes { .. } => "get_attributes",
4500            DirectoryRequest::UpdateAttributes { .. } => "update_attributes",
4501            DirectoryRequest::Sync { .. } => "sync",
4502            DirectoryRequest::ListExtendedAttributes { .. } => "list_extended_attributes",
4503            DirectoryRequest::GetExtendedAttribute { .. } => "get_extended_attribute",
4504            DirectoryRequest::SetExtendedAttribute { .. } => "set_extended_attribute",
4505            DirectoryRequest::RemoveExtendedAttribute { .. } => "remove_extended_attribute",
4506            DirectoryRequest::DeprecatedOpen { .. } => "deprecated_open",
4507            DirectoryRequest::Open { .. } => "open",
4508            DirectoryRequest::ReadDirents { .. } => "read_dirents",
4509            DirectoryRequest::Rewind { .. } => "rewind",
4510            DirectoryRequest::GetToken { .. } => "get_token",
4511            DirectoryRequest::Link { .. } => "link",
4512            DirectoryRequest::Unlink { .. } => "unlink",
4513            DirectoryRequest::Rename { .. } => "rename",
4514            DirectoryRequest::CreateSymlink { .. } => "create_symlink",
4515            DirectoryRequest::Watch { .. } => "watch",
4516            DirectoryRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
4517                "unknown one-way method"
4518            }
4519            DirectoryRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
4520                "unknown two-way method"
4521            }
4522        }
4523    }
4524}
4525
4526#[derive(Debug, Clone)]
4527pub struct DirectoryControlHandle {
4528    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
4529}
4530
4531impl fidl::endpoints::ControlHandle for DirectoryControlHandle {
4532    fn shutdown(&self) {
4533        self.inner.shutdown()
4534    }
4535    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
4536        self.inner.shutdown_with_epitaph(status)
4537    }
4538
4539    fn is_closed(&self) -> bool {
4540        self.inner.channel().is_closed()
4541    }
4542    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
4543        self.inner.channel().on_closed()
4544    }
4545
4546    #[cfg(target_os = "fuchsia")]
4547    fn signal_peer(
4548        &self,
4549        clear_mask: zx::Signals,
4550        set_mask: zx::Signals,
4551    ) -> Result<(), zx_status::Status> {
4552        use fidl::Peered;
4553        self.inner.channel().signal_peer(clear_mask, set_mask)
4554    }
4555}
4556
4557impl DirectoryControlHandle {
4558    pub fn send_on_open_(
4559        &self,
4560        mut s: i32,
4561        mut info: Option<NodeInfoDeprecated>,
4562    ) -> Result<(), fidl::Error> {
4563        self.inner.send::<NodeOnOpenRequest>(
4564            (s, info.as_mut()),
4565            0,
4566            0x7fc7bbb1dbfd1972,
4567            fidl::encoding::DynamicFlags::empty(),
4568        )
4569    }
4570
4571    pub fn send_on_representation(&self, mut payload: Representation) -> Result<(), fidl::Error> {
4572        self.inner.send::<Representation>(
4573            &mut payload,
4574            0,
4575            0x5cb40567d80a510c,
4576            fidl::encoding::DynamicFlags::empty(),
4577        )
4578    }
4579}
4580
4581#[must_use = "FIDL methods require a response to be sent"]
4582#[derive(Debug)]
4583pub struct DirectoryAdvisoryLockResponder {
4584    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4585    tx_id: u32,
4586}
4587
4588/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4589/// if the responder is dropped without sending a response, so that the client
4590/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4591impl std::ops::Drop for DirectoryAdvisoryLockResponder {
4592    fn drop(&mut self) {
4593        self.control_handle.shutdown();
4594        // Safety: drops once, never accessed again
4595        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4596    }
4597}
4598
4599impl fidl::endpoints::Responder for DirectoryAdvisoryLockResponder {
4600    type ControlHandle = DirectoryControlHandle;
4601
4602    fn control_handle(&self) -> &DirectoryControlHandle {
4603        &self.control_handle
4604    }
4605
4606    fn drop_without_shutdown(mut self) {
4607        // Safety: drops once, never accessed again due to mem::forget
4608        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4609        // Prevent Drop from running (which would shut down the channel)
4610        std::mem::forget(self);
4611    }
4612}
4613
4614impl DirectoryAdvisoryLockResponder {
4615    /// Sends a response to the FIDL transaction.
4616    ///
4617    /// Sets the channel to shutdown if an error occurs.
4618    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
4619        let _result = self.send_raw(result);
4620        if _result.is_err() {
4621            self.control_handle.shutdown();
4622        }
4623        self.drop_without_shutdown();
4624        _result
4625    }
4626
4627    /// Similar to "send" but does not shutdown the channel if an error occurs.
4628    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
4629        let _result = self.send_raw(result);
4630        self.drop_without_shutdown();
4631        _result
4632    }
4633
4634    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
4635        self.control_handle
4636            .inner
4637            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
4638                result,
4639                self.tx_id,
4640                0x6ee9c0ad53ec87aa,
4641                fidl::encoding::DynamicFlags::empty(),
4642            )
4643    }
4644}
4645
4646#[must_use = "FIDL methods require a response to be sent"]
4647#[derive(Debug)]
4648pub struct DirectoryCloseResponder {
4649    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4650    tx_id: u32,
4651}
4652
4653/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4654/// if the responder is dropped without sending a response, so that the client
4655/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4656impl std::ops::Drop for DirectoryCloseResponder {
4657    fn drop(&mut self) {
4658        self.control_handle.shutdown();
4659        // Safety: drops once, never accessed again
4660        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4661    }
4662}
4663
4664impl fidl::endpoints::Responder for DirectoryCloseResponder {
4665    type ControlHandle = DirectoryControlHandle;
4666
4667    fn control_handle(&self) -> &DirectoryControlHandle {
4668        &self.control_handle
4669    }
4670
4671    fn drop_without_shutdown(mut self) {
4672        // Safety: drops once, never accessed again due to mem::forget
4673        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4674        // Prevent Drop from running (which would shut down the channel)
4675        std::mem::forget(self);
4676    }
4677}
4678
4679impl DirectoryCloseResponder {
4680    /// Sends a response to the FIDL transaction.
4681    ///
4682    /// Sets the channel to shutdown if an error occurs.
4683    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
4684        let _result = self.send_raw(result);
4685        if _result.is_err() {
4686            self.control_handle.shutdown();
4687        }
4688        self.drop_without_shutdown();
4689        _result
4690    }
4691
4692    /// Similar to "send" but does not shutdown the channel if an error occurs.
4693    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
4694        let _result = self.send_raw(result);
4695        self.drop_without_shutdown();
4696        _result
4697    }
4698
4699    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
4700        self.control_handle
4701            .inner
4702            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
4703                result,
4704                self.tx_id,
4705                0x5ac5d459ad7f657e,
4706                fidl::encoding::DynamicFlags::empty(),
4707            )
4708    }
4709}
4710
4711#[must_use = "FIDL methods require a response to be sent"]
4712#[derive(Debug)]
4713pub struct DirectoryQueryResponder {
4714    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4715    tx_id: u32,
4716}
4717
4718/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4719/// if the responder is dropped without sending a response, so that the client
4720/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4721impl std::ops::Drop for DirectoryQueryResponder {
4722    fn drop(&mut self) {
4723        self.control_handle.shutdown();
4724        // Safety: drops once, never accessed again
4725        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4726    }
4727}
4728
4729impl fidl::endpoints::Responder for DirectoryQueryResponder {
4730    type ControlHandle = DirectoryControlHandle;
4731
4732    fn control_handle(&self) -> &DirectoryControlHandle {
4733        &self.control_handle
4734    }
4735
4736    fn drop_without_shutdown(mut self) {
4737        // Safety: drops once, never accessed again due to mem::forget
4738        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4739        // Prevent Drop from running (which would shut down the channel)
4740        std::mem::forget(self);
4741    }
4742}
4743
4744impl DirectoryQueryResponder {
4745    /// Sends a response to the FIDL transaction.
4746    ///
4747    /// Sets the channel to shutdown if an error occurs.
4748    pub fn send(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
4749        let _result = self.send_raw(protocol);
4750        if _result.is_err() {
4751            self.control_handle.shutdown();
4752        }
4753        self.drop_without_shutdown();
4754        _result
4755    }
4756
4757    /// Similar to "send" but does not shutdown the channel if an error occurs.
4758    pub fn send_no_shutdown_on_err(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
4759        let _result = self.send_raw(protocol);
4760        self.drop_without_shutdown();
4761        _result
4762    }
4763
4764    fn send_raw(&self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
4765        self.control_handle.inner.send::<fidl_fuchsia_unknown::QueryableQueryResponse>(
4766            (protocol,),
4767            self.tx_id,
4768            0x2658edee9decfc06,
4769            fidl::encoding::DynamicFlags::empty(),
4770        )
4771    }
4772}
4773
4774#[must_use = "FIDL methods require a response to be sent"]
4775#[derive(Debug)]
4776pub struct DirectoryGetAttrResponder {
4777    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4778    tx_id: u32,
4779}
4780
4781/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4782/// if the responder is dropped without sending a response, so that the client
4783/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4784impl std::ops::Drop for DirectoryGetAttrResponder {
4785    fn drop(&mut self) {
4786        self.control_handle.shutdown();
4787        // Safety: drops once, never accessed again
4788        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4789    }
4790}
4791
4792impl fidl::endpoints::Responder for DirectoryGetAttrResponder {
4793    type ControlHandle = DirectoryControlHandle;
4794
4795    fn control_handle(&self) -> &DirectoryControlHandle {
4796        &self.control_handle
4797    }
4798
4799    fn drop_without_shutdown(mut self) {
4800        // Safety: drops once, never accessed again due to mem::forget
4801        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4802        // Prevent Drop from running (which would shut down the channel)
4803        std::mem::forget(self);
4804    }
4805}
4806
4807impl DirectoryGetAttrResponder {
4808    /// Sends a response to the FIDL transaction.
4809    ///
4810    /// Sets the channel to shutdown if an error occurs.
4811    pub fn send(self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
4812        let _result = self.send_raw(s, attributes);
4813        if _result.is_err() {
4814            self.control_handle.shutdown();
4815        }
4816        self.drop_without_shutdown();
4817        _result
4818    }
4819
4820    /// Similar to "send" but does not shutdown the channel if an error occurs.
4821    pub fn send_no_shutdown_on_err(
4822        self,
4823        mut s: i32,
4824        mut attributes: &NodeAttributes,
4825    ) -> Result<(), fidl::Error> {
4826        let _result = self.send_raw(s, attributes);
4827        self.drop_without_shutdown();
4828        _result
4829    }
4830
4831    fn send_raw(&self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
4832        self.control_handle.inner.send::<NodeGetAttrResponse>(
4833            (s, attributes),
4834            self.tx_id,
4835            0x78985e216314dafd,
4836            fidl::encoding::DynamicFlags::empty(),
4837        )
4838    }
4839}
4840
4841#[must_use = "FIDL methods require a response to be sent"]
4842#[derive(Debug)]
4843pub struct DirectorySetAttrResponder {
4844    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4845    tx_id: u32,
4846}
4847
4848/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4849/// if the responder is dropped without sending a response, so that the client
4850/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4851impl std::ops::Drop for DirectorySetAttrResponder {
4852    fn drop(&mut self) {
4853        self.control_handle.shutdown();
4854        // Safety: drops once, never accessed again
4855        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4856    }
4857}
4858
4859impl fidl::endpoints::Responder for DirectorySetAttrResponder {
4860    type ControlHandle = DirectoryControlHandle;
4861
4862    fn control_handle(&self) -> &DirectoryControlHandle {
4863        &self.control_handle
4864    }
4865
4866    fn drop_without_shutdown(mut self) {
4867        // Safety: drops once, never accessed again due to mem::forget
4868        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4869        // Prevent Drop from running (which would shut down the channel)
4870        std::mem::forget(self);
4871    }
4872}
4873
4874impl DirectorySetAttrResponder {
4875    /// Sends a response to the FIDL transaction.
4876    ///
4877    /// Sets the channel to shutdown if an error occurs.
4878    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
4879        let _result = self.send_raw(s);
4880        if _result.is_err() {
4881            self.control_handle.shutdown();
4882        }
4883        self.drop_without_shutdown();
4884        _result
4885    }
4886
4887    /// Similar to "send" but does not shutdown the channel if an error occurs.
4888    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
4889        let _result = self.send_raw(s);
4890        self.drop_without_shutdown();
4891        _result
4892    }
4893
4894    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
4895        self.control_handle.inner.send::<NodeSetAttrResponse>(
4896            (s,),
4897            self.tx_id,
4898            0x4186c0f40d938f46,
4899            fidl::encoding::DynamicFlags::empty(),
4900        )
4901    }
4902}
4903
4904#[must_use = "FIDL methods require a response to be sent"]
4905#[derive(Debug)]
4906pub struct DirectoryDeprecatedGetFlagsResponder {
4907    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4908    tx_id: u32,
4909}
4910
4911/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4912/// if the responder is dropped without sending a response, so that the client
4913/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4914impl std::ops::Drop for DirectoryDeprecatedGetFlagsResponder {
4915    fn drop(&mut self) {
4916        self.control_handle.shutdown();
4917        // Safety: drops once, never accessed again
4918        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4919    }
4920}
4921
4922impl fidl::endpoints::Responder for DirectoryDeprecatedGetFlagsResponder {
4923    type ControlHandle = DirectoryControlHandle;
4924
4925    fn control_handle(&self) -> &DirectoryControlHandle {
4926        &self.control_handle
4927    }
4928
4929    fn drop_without_shutdown(mut self) {
4930        // Safety: drops once, never accessed again due to mem::forget
4931        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4932        // Prevent Drop from running (which would shut down the channel)
4933        std::mem::forget(self);
4934    }
4935}
4936
4937impl DirectoryDeprecatedGetFlagsResponder {
4938    /// Sends a response to the FIDL transaction.
4939    ///
4940    /// Sets the channel to shutdown if an error occurs.
4941    pub fn send(self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
4942        let _result = self.send_raw(s, flags);
4943        if _result.is_err() {
4944            self.control_handle.shutdown();
4945        }
4946        self.drop_without_shutdown();
4947        _result
4948    }
4949
4950    /// Similar to "send" but does not shutdown the channel if an error occurs.
4951    pub fn send_no_shutdown_on_err(
4952        self,
4953        mut s: i32,
4954        mut flags: OpenFlags,
4955    ) -> Result<(), fidl::Error> {
4956        let _result = self.send_raw(s, flags);
4957        self.drop_without_shutdown();
4958        _result
4959    }
4960
4961    fn send_raw(&self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
4962        self.control_handle.inner.send::<NodeDeprecatedGetFlagsResponse>(
4963            (s, flags),
4964            self.tx_id,
4965            0x5b88fffb8eda3aa1,
4966            fidl::encoding::DynamicFlags::empty(),
4967        )
4968    }
4969}
4970
4971#[must_use = "FIDL methods require a response to be sent"]
4972#[derive(Debug)]
4973pub struct DirectoryDeprecatedSetFlagsResponder {
4974    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
4975    tx_id: u32,
4976}
4977
4978/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
4979/// if the responder is dropped without sending a response, so that the client
4980/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
4981impl std::ops::Drop for DirectoryDeprecatedSetFlagsResponder {
4982    fn drop(&mut self) {
4983        self.control_handle.shutdown();
4984        // Safety: drops once, never accessed again
4985        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4986    }
4987}
4988
4989impl fidl::endpoints::Responder for DirectoryDeprecatedSetFlagsResponder {
4990    type ControlHandle = DirectoryControlHandle;
4991
4992    fn control_handle(&self) -> &DirectoryControlHandle {
4993        &self.control_handle
4994    }
4995
4996    fn drop_without_shutdown(mut self) {
4997        // Safety: drops once, never accessed again due to mem::forget
4998        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4999        // Prevent Drop from running (which would shut down the channel)
5000        std::mem::forget(self);
5001    }
5002}
5003
5004impl DirectoryDeprecatedSetFlagsResponder {
5005    /// Sends a response to the FIDL transaction.
5006    ///
5007    /// Sets the channel to shutdown if an error occurs.
5008    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
5009        let _result = self.send_raw(s);
5010        if _result.is_err() {
5011            self.control_handle.shutdown();
5012        }
5013        self.drop_without_shutdown();
5014        _result
5015    }
5016
5017    /// Similar to "send" but does not shutdown the channel if an error occurs.
5018    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
5019        let _result = self.send_raw(s);
5020        self.drop_without_shutdown();
5021        _result
5022    }
5023
5024    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
5025        self.control_handle.inner.send::<NodeDeprecatedSetFlagsResponse>(
5026            (s,),
5027            self.tx_id,
5028            0x5295b76c71fde733,
5029            fidl::encoding::DynamicFlags::empty(),
5030        )
5031    }
5032}
5033
5034#[must_use = "FIDL methods require a response to be sent"]
5035#[derive(Debug)]
5036pub struct DirectoryGetFlagsResponder {
5037    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5038    tx_id: u32,
5039}
5040
5041/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5042/// if the responder is dropped without sending a response, so that the client
5043/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5044impl std::ops::Drop for DirectoryGetFlagsResponder {
5045    fn drop(&mut self) {
5046        self.control_handle.shutdown();
5047        // Safety: drops once, never accessed again
5048        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5049    }
5050}
5051
5052impl fidl::endpoints::Responder for DirectoryGetFlagsResponder {
5053    type ControlHandle = DirectoryControlHandle;
5054
5055    fn control_handle(&self) -> &DirectoryControlHandle {
5056        &self.control_handle
5057    }
5058
5059    fn drop_without_shutdown(mut self) {
5060        // Safety: drops once, never accessed again due to mem::forget
5061        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5062        // Prevent Drop from running (which would shut down the channel)
5063        std::mem::forget(self);
5064    }
5065}
5066
5067impl DirectoryGetFlagsResponder {
5068    /// Sends a response to the FIDL transaction.
5069    ///
5070    /// Sets the channel to shutdown if an error occurs.
5071    pub fn send(self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
5072        let _result = self.send_raw(result);
5073        if _result.is_err() {
5074            self.control_handle.shutdown();
5075        }
5076        self.drop_without_shutdown();
5077        _result
5078    }
5079
5080    /// Similar to "send" but does not shutdown the channel if an error occurs.
5081    pub fn send_no_shutdown_on_err(
5082        self,
5083        mut result: Result<Flags, i32>,
5084    ) -> Result<(), fidl::Error> {
5085        let _result = self.send_raw(result);
5086        self.drop_without_shutdown();
5087        _result
5088    }
5089
5090    fn send_raw(&self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
5091        self.control_handle
5092            .inner
5093            .send::<fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>>(
5094                fidl::encoding::FlexibleResult::new(result.map(|flags| (flags,))),
5095                self.tx_id,
5096                0x176eb318f64ec23,
5097                fidl::encoding::DynamicFlags::FLEXIBLE,
5098            )
5099    }
5100}
5101
5102#[must_use = "FIDL methods require a response to be sent"]
5103#[derive(Debug)]
5104pub struct DirectorySetFlagsResponder {
5105    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5106    tx_id: u32,
5107}
5108
5109/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5110/// if the responder is dropped without sending a response, so that the client
5111/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5112impl std::ops::Drop for DirectorySetFlagsResponder {
5113    fn drop(&mut self) {
5114        self.control_handle.shutdown();
5115        // Safety: drops once, never accessed again
5116        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5117    }
5118}
5119
5120impl fidl::endpoints::Responder for DirectorySetFlagsResponder {
5121    type ControlHandle = DirectoryControlHandle;
5122
5123    fn control_handle(&self) -> &DirectoryControlHandle {
5124        &self.control_handle
5125    }
5126
5127    fn drop_without_shutdown(mut self) {
5128        // Safety: drops once, never accessed again due to mem::forget
5129        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5130        // Prevent Drop from running (which would shut down the channel)
5131        std::mem::forget(self);
5132    }
5133}
5134
5135impl DirectorySetFlagsResponder {
5136    /// Sends a response to the FIDL transaction.
5137    ///
5138    /// Sets the channel to shutdown if an error occurs.
5139    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5140        let _result = self.send_raw(result);
5141        if _result.is_err() {
5142            self.control_handle.shutdown();
5143        }
5144        self.drop_without_shutdown();
5145        _result
5146    }
5147
5148    /// Similar to "send" but does not shutdown the channel if an error occurs.
5149    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5150        let _result = self.send_raw(result);
5151        self.drop_without_shutdown();
5152        _result
5153    }
5154
5155    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5156        self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
5157            fidl::encoding::EmptyStruct,
5158            i32,
5159        >>(
5160            fidl::encoding::FlexibleResult::new(result),
5161            self.tx_id,
5162            0x55a8028685791ea8,
5163            fidl::encoding::DynamicFlags::FLEXIBLE,
5164        )
5165    }
5166}
5167
5168#[must_use = "FIDL methods require a response to be sent"]
5169#[derive(Debug)]
5170pub struct DirectoryQueryFilesystemResponder {
5171    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5172    tx_id: u32,
5173}
5174
5175/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5176/// if the responder is dropped without sending a response, so that the client
5177/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5178impl std::ops::Drop for DirectoryQueryFilesystemResponder {
5179    fn drop(&mut self) {
5180        self.control_handle.shutdown();
5181        // Safety: drops once, never accessed again
5182        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5183    }
5184}
5185
5186impl fidl::endpoints::Responder for DirectoryQueryFilesystemResponder {
5187    type ControlHandle = DirectoryControlHandle;
5188
5189    fn control_handle(&self) -> &DirectoryControlHandle {
5190        &self.control_handle
5191    }
5192
5193    fn drop_without_shutdown(mut self) {
5194        // Safety: drops once, never accessed again due to mem::forget
5195        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5196        // Prevent Drop from running (which would shut down the channel)
5197        std::mem::forget(self);
5198    }
5199}
5200
5201impl DirectoryQueryFilesystemResponder {
5202    /// Sends a response to the FIDL transaction.
5203    ///
5204    /// Sets the channel to shutdown if an error occurs.
5205    pub fn send(self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
5206        let _result = self.send_raw(s, info);
5207        if _result.is_err() {
5208            self.control_handle.shutdown();
5209        }
5210        self.drop_without_shutdown();
5211        _result
5212    }
5213
5214    /// Similar to "send" but does not shutdown the channel if an error occurs.
5215    pub fn send_no_shutdown_on_err(
5216        self,
5217        mut s: i32,
5218        mut info: Option<&FilesystemInfo>,
5219    ) -> Result<(), fidl::Error> {
5220        let _result = self.send_raw(s, info);
5221        self.drop_without_shutdown();
5222        _result
5223    }
5224
5225    fn send_raw(&self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
5226        self.control_handle.inner.send::<NodeQueryFilesystemResponse>(
5227            (s, info),
5228            self.tx_id,
5229            0x6f344a1c6b0a0610,
5230            fidl::encoding::DynamicFlags::empty(),
5231        )
5232    }
5233}
5234
5235#[must_use = "FIDL methods require a response to be sent"]
5236#[derive(Debug)]
5237pub struct DirectoryGetConnectionInfoResponder {
5238    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5239    tx_id: u32,
5240}
5241
5242/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5243/// if the responder is dropped without sending a response, so that the client
5244/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5245impl std::ops::Drop for DirectoryGetConnectionInfoResponder {
5246    fn drop(&mut self) {
5247        self.control_handle.shutdown();
5248        // Safety: drops once, never accessed again
5249        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5250    }
5251}
5252
5253impl fidl::endpoints::Responder for DirectoryGetConnectionInfoResponder {
5254    type ControlHandle = DirectoryControlHandle;
5255
5256    fn control_handle(&self) -> &DirectoryControlHandle {
5257        &self.control_handle
5258    }
5259
5260    fn drop_without_shutdown(mut self) {
5261        // Safety: drops once, never accessed again due to mem::forget
5262        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5263        // Prevent Drop from running (which would shut down the channel)
5264        std::mem::forget(self);
5265    }
5266}
5267
5268impl DirectoryGetConnectionInfoResponder {
5269    /// Sends a response to the FIDL transaction.
5270    ///
5271    /// Sets the channel to shutdown if an error occurs.
5272    pub fn send(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
5273        let _result = self.send_raw(payload);
5274        if _result.is_err() {
5275            self.control_handle.shutdown();
5276        }
5277        self.drop_without_shutdown();
5278        _result
5279    }
5280
5281    /// Similar to "send" but does not shutdown the channel if an error occurs.
5282    pub fn send_no_shutdown_on_err(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
5283        let _result = self.send_raw(payload);
5284        self.drop_without_shutdown();
5285        _result
5286    }
5287
5288    fn send_raw(&self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
5289        self.control_handle.inner.send::<ConnectionInfo>(
5290            &mut payload,
5291            self.tx_id,
5292            0x584c377c7c0a6d0b,
5293            fidl::encoding::DynamicFlags::empty(),
5294        )
5295    }
5296}
5297
5298#[must_use = "FIDL methods require a response to be sent"]
5299#[derive(Debug)]
5300pub struct DirectoryGetAttributesResponder {
5301    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5302    tx_id: u32,
5303}
5304
5305/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5306/// if the responder is dropped without sending a response, so that the client
5307/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5308impl std::ops::Drop for DirectoryGetAttributesResponder {
5309    fn drop(&mut self) {
5310        self.control_handle.shutdown();
5311        // Safety: drops once, never accessed again
5312        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5313    }
5314}
5315
5316impl fidl::endpoints::Responder for DirectoryGetAttributesResponder {
5317    type ControlHandle = DirectoryControlHandle;
5318
5319    fn control_handle(&self) -> &DirectoryControlHandle {
5320        &self.control_handle
5321    }
5322
5323    fn drop_without_shutdown(mut self) {
5324        // Safety: drops once, never accessed again due to mem::forget
5325        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5326        // Prevent Drop from running (which would shut down the channel)
5327        std::mem::forget(self);
5328    }
5329}
5330
5331impl DirectoryGetAttributesResponder {
5332    /// Sends a response to the FIDL transaction.
5333    ///
5334    /// Sets the channel to shutdown if an error occurs.
5335    pub fn send(
5336        self,
5337        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
5338    ) -> Result<(), fidl::Error> {
5339        let _result = self.send_raw(result);
5340        if _result.is_err() {
5341            self.control_handle.shutdown();
5342        }
5343        self.drop_without_shutdown();
5344        _result
5345    }
5346
5347    /// Similar to "send" but does not shutdown the channel if an error occurs.
5348    pub fn send_no_shutdown_on_err(
5349        self,
5350        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
5351    ) -> Result<(), fidl::Error> {
5352        let _result = self.send_raw(result);
5353        self.drop_without_shutdown();
5354        _result
5355    }
5356
5357    fn send_raw(
5358        &self,
5359        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
5360    ) -> Result<(), fidl::Error> {
5361        self.control_handle.inner.send::<fidl::encoding::ResultType<NodeAttributes2, i32>>(
5362            result,
5363            self.tx_id,
5364            0x3d4396a638ea053b,
5365            fidl::encoding::DynamicFlags::empty(),
5366        )
5367    }
5368}
5369
5370#[must_use = "FIDL methods require a response to be sent"]
5371#[derive(Debug)]
5372pub struct DirectoryUpdateAttributesResponder {
5373    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5374    tx_id: u32,
5375}
5376
5377/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5378/// if the responder is dropped without sending a response, so that the client
5379/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5380impl std::ops::Drop for DirectoryUpdateAttributesResponder {
5381    fn drop(&mut self) {
5382        self.control_handle.shutdown();
5383        // Safety: drops once, never accessed again
5384        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5385    }
5386}
5387
5388impl fidl::endpoints::Responder for DirectoryUpdateAttributesResponder {
5389    type ControlHandle = DirectoryControlHandle;
5390
5391    fn control_handle(&self) -> &DirectoryControlHandle {
5392        &self.control_handle
5393    }
5394
5395    fn drop_without_shutdown(mut self) {
5396        // Safety: drops once, never accessed again due to mem::forget
5397        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5398        // Prevent Drop from running (which would shut down the channel)
5399        std::mem::forget(self);
5400    }
5401}
5402
5403impl DirectoryUpdateAttributesResponder {
5404    /// Sends a response to the FIDL transaction.
5405    ///
5406    /// Sets the channel to shutdown if an error occurs.
5407    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5408        let _result = self.send_raw(result);
5409        if _result.is_err() {
5410            self.control_handle.shutdown();
5411        }
5412        self.drop_without_shutdown();
5413        _result
5414    }
5415
5416    /// Similar to "send" but does not shutdown the channel if an error occurs.
5417    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5418        let _result = self.send_raw(result);
5419        self.drop_without_shutdown();
5420        _result
5421    }
5422
5423    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5424        self.control_handle
5425            .inner
5426            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
5427                result,
5428                self.tx_id,
5429                0x3308c1da5a89bf08,
5430                fidl::encoding::DynamicFlags::empty(),
5431            )
5432    }
5433}
5434
5435#[must_use = "FIDL methods require a response to be sent"]
5436#[derive(Debug)]
5437pub struct DirectorySyncResponder {
5438    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5439    tx_id: u32,
5440}
5441
5442/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5443/// if the responder is dropped without sending a response, so that the client
5444/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5445impl std::ops::Drop for DirectorySyncResponder {
5446    fn drop(&mut self) {
5447        self.control_handle.shutdown();
5448        // Safety: drops once, never accessed again
5449        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5450    }
5451}
5452
5453impl fidl::endpoints::Responder for DirectorySyncResponder {
5454    type ControlHandle = DirectoryControlHandle;
5455
5456    fn control_handle(&self) -> &DirectoryControlHandle {
5457        &self.control_handle
5458    }
5459
5460    fn drop_without_shutdown(mut self) {
5461        // Safety: drops once, never accessed again due to mem::forget
5462        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5463        // Prevent Drop from running (which would shut down the channel)
5464        std::mem::forget(self);
5465    }
5466}
5467
5468impl DirectorySyncResponder {
5469    /// Sends a response to the FIDL transaction.
5470    ///
5471    /// Sets the channel to shutdown if an error occurs.
5472    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5473        let _result = self.send_raw(result);
5474        if _result.is_err() {
5475            self.control_handle.shutdown();
5476        }
5477        self.drop_without_shutdown();
5478        _result
5479    }
5480
5481    /// Similar to "send" but does not shutdown the channel if an error occurs.
5482    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5483        let _result = self.send_raw(result);
5484        self.drop_without_shutdown();
5485        _result
5486    }
5487
5488    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5489        self.control_handle
5490            .inner
5491            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
5492                result,
5493                self.tx_id,
5494                0x2c5c27ca0ab5dc49,
5495                fidl::encoding::DynamicFlags::empty(),
5496            )
5497    }
5498}
5499
5500#[must_use = "FIDL methods require a response to be sent"]
5501#[derive(Debug)]
5502pub struct DirectoryGetExtendedAttributeResponder {
5503    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5504    tx_id: u32,
5505}
5506
5507/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5508/// if the responder is dropped without sending a response, so that the client
5509/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5510impl std::ops::Drop for DirectoryGetExtendedAttributeResponder {
5511    fn drop(&mut self) {
5512        self.control_handle.shutdown();
5513        // Safety: drops once, never accessed again
5514        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5515    }
5516}
5517
5518impl fidl::endpoints::Responder for DirectoryGetExtendedAttributeResponder {
5519    type ControlHandle = DirectoryControlHandle;
5520
5521    fn control_handle(&self) -> &DirectoryControlHandle {
5522        &self.control_handle
5523    }
5524
5525    fn drop_without_shutdown(mut self) {
5526        // Safety: drops once, never accessed again due to mem::forget
5527        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5528        // Prevent Drop from running (which would shut down the channel)
5529        std::mem::forget(self);
5530    }
5531}
5532
5533impl DirectoryGetExtendedAttributeResponder {
5534    /// Sends a response to the FIDL transaction.
5535    ///
5536    /// Sets the channel to shutdown if an error occurs.
5537    pub fn send(self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
5538        let _result = self.send_raw(result);
5539        if _result.is_err() {
5540            self.control_handle.shutdown();
5541        }
5542        self.drop_without_shutdown();
5543        _result
5544    }
5545
5546    /// Similar to "send" but does not shutdown the channel if an error occurs.
5547    pub fn send_no_shutdown_on_err(
5548        self,
5549        mut result: Result<ExtendedAttributeValue, i32>,
5550    ) -> Result<(), fidl::Error> {
5551        let _result = self.send_raw(result);
5552        self.drop_without_shutdown();
5553        _result
5554    }
5555
5556    fn send_raw(&self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
5557        self.control_handle.inner.send::<fidl::encoding::ResultType<ExtendedAttributeValue, i32>>(
5558            result.as_mut().map_err(|e| *e),
5559            self.tx_id,
5560            0x45ffa3ccfdeb76db,
5561            fidl::encoding::DynamicFlags::empty(),
5562        )
5563    }
5564}
5565
5566#[must_use = "FIDL methods require a response to be sent"]
5567#[derive(Debug)]
5568pub struct DirectorySetExtendedAttributeResponder {
5569    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5570    tx_id: u32,
5571}
5572
5573/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5574/// if the responder is dropped without sending a response, so that the client
5575/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5576impl std::ops::Drop for DirectorySetExtendedAttributeResponder {
5577    fn drop(&mut self) {
5578        self.control_handle.shutdown();
5579        // Safety: drops once, never accessed again
5580        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5581    }
5582}
5583
5584impl fidl::endpoints::Responder for DirectorySetExtendedAttributeResponder {
5585    type ControlHandle = DirectoryControlHandle;
5586
5587    fn control_handle(&self) -> &DirectoryControlHandle {
5588        &self.control_handle
5589    }
5590
5591    fn drop_without_shutdown(mut self) {
5592        // Safety: drops once, never accessed again due to mem::forget
5593        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5594        // Prevent Drop from running (which would shut down the channel)
5595        std::mem::forget(self);
5596    }
5597}
5598
5599impl DirectorySetExtendedAttributeResponder {
5600    /// Sends a response to the FIDL transaction.
5601    ///
5602    /// Sets the channel to shutdown if an error occurs.
5603    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5604        let _result = self.send_raw(result);
5605        if _result.is_err() {
5606            self.control_handle.shutdown();
5607        }
5608        self.drop_without_shutdown();
5609        _result
5610    }
5611
5612    /// Similar to "send" but does not shutdown the channel if an error occurs.
5613    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5614        let _result = self.send_raw(result);
5615        self.drop_without_shutdown();
5616        _result
5617    }
5618
5619    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5620        self.control_handle
5621            .inner
5622            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
5623                result,
5624                self.tx_id,
5625                0x4a951362f681f23c,
5626                fidl::encoding::DynamicFlags::empty(),
5627            )
5628    }
5629}
5630
5631#[must_use = "FIDL methods require a response to be sent"]
5632#[derive(Debug)]
5633pub struct DirectoryRemoveExtendedAttributeResponder {
5634    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5635    tx_id: u32,
5636}
5637
5638/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5639/// if the responder is dropped without sending a response, so that the client
5640/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5641impl std::ops::Drop for DirectoryRemoveExtendedAttributeResponder {
5642    fn drop(&mut self) {
5643        self.control_handle.shutdown();
5644        // Safety: drops once, never accessed again
5645        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5646    }
5647}
5648
5649impl fidl::endpoints::Responder for DirectoryRemoveExtendedAttributeResponder {
5650    type ControlHandle = DirectoryControlHandle;
5651
5652    fn control_handle(&self) -> &DirectoryControlHandle {
5653        &self.control_handle
5654    }
5655
5656    fn drop_without_shutdown(mut self) {
5657        // Safety: drops once, never accessed again due to mem::forget
5658        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5659        // Prevent Drop from running (which would shut down the channel)
5660        std::mem::forget(self);
5661    }
5662}
5663
5664impl DirectoryRemoveExtendedAttributeResponder {
5665    /// Sends a response to the FIDL transaction.
5666    ///
5667    /// Sets the channel to shutdown if an error occurs.
5668    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5669        let _result = self.send_raw(result);
5670        if _result.is_err() {
5671            self.control_handle.shutdown();
5672        }
5673        self.drop_without_shutdown();
5674        _result
5675    }
5676
5677    /// Similar to "send" but does not shutdown the channel if an error occurs.
5678    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5679        let _result = self.send_raw(result);
5680        self.drop_without_shutdown();
5681        _result
5682    }
5683
5684    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5685        self.control_handle
5686            .inner
5687            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
5688                result,
5689                self.tx_id,
5690                0x7a0b9f3a9bf9032d,
5691                fidl::encoding::DynamicFlags::empty(),
5692            )
5693    }
5694}
5695
5696#[must_use = "FIDL methods require a response to be sent"]
5697#[derive(Debug)]
5698pub struct DirectoryReadDirentsResponder {
5699    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5700    tx_id: u32,
5701}
5702
5703/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5704/// if the responder is dropped without sending a response, so that the client
5705/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5706impl std::ops::Drop for DirectoryReadDirentsResponder {
5707    fn drop(&mut self) {
5708        self.control_handle.shutdown();
5709        // Safety: drops once, never accessed again
5710        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5711    }
5712}
5713
5714impl fidl::endpoints::Responder for DirectoryReadDirentsResponder {
5715    type ControlHandle = DirectoryControlHandle;
5716
5717    fn control_handle(&self) -> &DirectoryControlHandle {
5718        &self.control_handle
5719    }
5720
5721    fn drop_without_shutdown(mut self) {
5722        // Safety: drops once, never accessed again due to mem::forget
5723        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5724        // Prevent Drop from running (which would shut down the channel)
5725        std::mem::forget(self);
5726    }
5727}
5728
5729impl DirectoryReadDirentsResponder {
5730    /// Sends a response to the FIDL transaction.
5731    ///
5732    /// Sets the channel to shutdown if an error occurs.
5733    pub fn send(self, mut s: i32, mut dirents: &[u8]) -> Result<(), fidl::Error> {
5734        let _result = self.send_raw(s, dirents);
5735        if _result.is_err() {
5736            self.control_handle.shutdown();
5737        }
5738        self.drop_without_shutdown();
5739        _result
5740    }
5741
5742    /// Similar to "send" but does not shutdown the channel if an error occurs.
5743    pub fn send_no_shutdown_on_err(
5744        self,
5745        mut s: i32,
5746        mut dirents: &[u8],
5747    ) -> Result<(), fidl::Error> {
5748        let _result = self.send_raw(s, dirents);
5749        self.drop_without_shutdown();
5750        _result
5751    }
5752
5753    fn send_raw(&self, mut s: i32, mut dirents: &[u8]) -> Result<(), fidl::Error> {
5754        self.control_handle.inner.send::<DirectoryReadDirentsResponse>(
5755            (s, dirents),
5756            self.tx_id,
5757            0x3582806bf27faa0a,
5758            fidl::encoding::DynamicFlags::empty(),
5759        )
5760    }
5761}
5762
5763#[must_use = "FIDL methods require a response to be sent"]
5764#[derive(Debug)]
5765pub struct DirectoryRewindResponder {
5766    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5767    tx_id: u32,
5768}
5769
5770/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5771/// if the responder is dropped without sending a response, so that the client
5772/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5773impl std::ops::Drop for DirectoryRewindResponder {
5774    fn drop(&mut self) {
5775        self.control_handle.shutdown();
5776        // Safety: drops once, never accessed again
5777        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5778    }
5779}
5780
5781impl fidl::endpoints::Responder for DirectoryRewindResponder {
5782    type ControlHandle = DirectoryControlHandle;
5783
5784    fn control_handle(&self) -> &DirectoryControlHandle {
5785        &self.control_handle
5786    }
5787
5788    fn drop_without_shutdown(mut self) {
5789        // Safety: drops once, never accessed again due to mem::forget
5790        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5791        // Prevent Drop from running (which would shut down the channel)
5792        std::mem::forget(self);
5793    }
5794}
5795
5796impl DirectoryRewindResponder {
5797    /// Sends a response to the FIDL transaction.
5798    ///
5799    /// Sets the channel to shutdown if an error occurs.
5800    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
5801        let _result = self.send_raw(s);
5802        if _result.is_err() {
5803            self.control_handle.shutdown();
5804        }
5805        self.drop_without_shutdown();
5806        _result
5807    }
5808
5809    /// Similar to "send" but does not shutdown the channel if an error occurs.
5810    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
5811        let _result = self.send_raw(s);
5812        self.drop_without_shutdown();
5813        _result
5814    }
5815
5816    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
5817        self.control_handle.inner.send::<DirectoryRewindResponse>(
5818            (s,),
5819            self.tx_id,
5820            0x16b1202af0f34c71,
5821            fidl::encoding::DynamicFlags::empty(),
5822        )
5823    }
5824}
5825
5826#[must_use = "FIDL methods require a response to be sent"]
5827#[derive(Debug)]
5828pub struct DirectoryGetTokenResponder {
5829    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5830    tx_id: u32,
5831}
5832
5833/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5834/// if the responder is dropped without sending a response, so that the client
5835/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5836impl std::ops::Drop for DirectoryGetTokenResponder {
5837    fn drop(&mut self) {
5838        self.control_handle.shutdown();
5839        // Safety: drops once, never accessed again
5840        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5841    }
5842}
5843
5844impl fidl::endpoints::Responder for DirectoryGetTokenResponder {
5845    type ControlHandle = DirectoryControlHandle;
5846
5847    fn control_handle(&self) -> &DirectoryControlHandle {
5848        &self.control_handle
5849    }
5850
5851    fn drop_without_shutdown(mut self) {
5852        // Safety: drops once, never accessed again due to mem::forget
5853        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5854        // Prevent Drop from running (which would shut down the channel)
5855        std::mem::forget(self);
5856    }
5857}
5858
5859impl DirectoryGetTokenResponder {
5860    /// Sends a response to the FIDL transaction.
5861    ///
5862    /// Sets the channel to shutdown if an error occurs.
5863    pub fn send(self, mut s: i32, mut token: Option<fidl::Handle>) -> Result<(), fidl::Error> {
5864        let _result = self.send_raw(s, token);
5865        if _result.is_err() {
5866            self.control_handle.shutdown();
5867        }
5868        self.drop_without_shutdown();
5869        _result
5870    }
5871
5872    /// Similar to "send" but does not shutdown the channel if an error occurs.
5873    pub fn send_no_shutdown_on_err(
5874        self,
5875        mut s: i32,
5876        mut token: Option<fidl::Handle>,
5877    ) -> Result<(), fidl::Error> {
5878        let _result = self.send_raw(s, token);
5879        self.drop_without_shutdown();
5880        _result
5881    }
5882
5883    fn send_raw(&self, mut s: i32, mut token: Option<fidl::Handle>) -> Result<(), fidl::Error> {
5884        self.control_handle.inner.send::<DirectoryGetTokenResponse>(
5885            (s, token),
5886            self.tx_id,
5887            0x26ae9d18763c8655,
5888            fidl::encoding::DynamicFlags::empty(),
5889        )
5890    }
5891}
5892
5893#[must_use = "FIDL methods require a response to be sent"]
5894#[derive(Debug)]
5895pub struct DirectoryLinkResponder {
5896    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5897    tx_id: u32,
5898}
5899
5900/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5901/// if the responder is dropped without sending a response, so that the client
5902/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5903impl std::ops::Drop for DirectoryLinkResponder {
5904    fn drop(&mut self) {
5905        self.control_handle.shutdown();
5906        // Safety: drops once, never accessed again
5907        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5908    }
5909}
5910
5911impl fidl::endpoints::Responder for DirectoryLinkResponder {
5912    type ControlHandle = DirectoryControlHandle;
5913
5914    fn control_handle(&self) -> &DirectoryControlHandle {
5915        &self.control_handle
5916    }
5917
5918    fn drop_without_shutdown(mut self) {
5919        // Safety: drops once, never accessed again due to mem::forget
5920        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5921        // Prevent Drop from running (which would shut down the channel)
5922        std::mem::forget(self);
5923    }
5924}
5925
5926impl DirectoryLinkResponder {
5927    /// Sends a response to the FIDL transaction.
5928    ///
5929    /// Sets the channel to shutdown if an error occurs.
5930    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
5931        let _result = self.send_raw(s);
5932        if _result.is_err() {
5933            self.control_handle.shutdown();
5934        }
5935        self.drop_without_shutdown();
5936        _result
5937    }
5938
5939    /// Similar to "send" but does not shutdown the channel if an error occurs.
5940    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
5941        let _result = self.send_raw(s);
5942        self.drop_without_shutdown();
5943        _result
5944    }
5945
5946    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
5947        self.control_handle.inner.send::<DirectoryLinkResponse>(
5948            (s,),
5949            self.tx_id,
5950            0x740604c0c7c930e7,
5951            fidl::encoding::DynamicFlags::empty(),
5952        )
5953    }
5954}
5955
5956#[must_use = "FIDL methods require a response to be sent"]
5957#[derive(Debug)]
5958pub struct DirectoryUnlinkResponder {
5959    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
5960    tx_id: u32,
5961}
5962
5963/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
5964/// if the responder is dropped without sending a response, so that the client
5965/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
5966impl std::ops::Drop for DirectoryUnlinkResponder {
5967    fn drop(&mut self) {
5968        self.control_handle.shutdown();
5969        // Safety: drops once, never accessed again
5970        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5971    }
5972}
5973
5974impl fidl::endpoints::Responder for DirectoryUnlinkResponder {
5975    type ControlHandle = DirectoryControlHandle;
5976
5977    fn control_handle(&self) -> &DirectoryControlHandle {
5978        &self.control_handle
5979    }
5980
5981    fn drop_without_shutdown(mut self) {
5982        // Safety: drops once, never accessed again due to mem::forget
5983        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5984        // Prevent Drop from running (which would shut down the channel)
5985        std::mem::forget(self);
5986    }
5987}
5988
5989impl DirectoryUnlinkResponder {
5990    /// Sends a response to the FIDL transaction.
5991    ///
5992    /// Sets the channel to shutdown if an error occurs.
5993    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
5994        let _result = self.send_raw(result);
5995        if _result.is_err() {
5996            self.control_handle.shutdown();
5997        }
5998        self.drop_without_shutdown();
5999        _result
6000    }
6001
6002    /// Similar to "send" but does not shutdown the channel if an error occurs.
6003    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6004        let _result = self.send_raw(result);
6005        self.drop_without_shutdown();
6006        _result
6007    }
6008
6009    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6010        self.control_handle
6011            .inner
6012            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
6013                result,
6014                self.tx_id,
6015                0x750a0326a78d7bed,
6016                fidl::encoding::DynamicFlags::empty(),
6017            )
6018    }
6019}
6020
6021#[must_use = "FIDL methods require a response to be sent"]
6022#[derive(Debug)]
6023pub struct DirectoryRenameResponder {
6024    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
6025    tx_id: u32,
6026}
6027
6028/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
6029/// if the responder is dropped without sending a response, so that the client
6030/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
6031impl std::ops::Drop for DirectoryRenameResponder {
6032    fn drop(&mut self) {
6033        self.control_handle.shutdown();
6034        // Safety: drops once, never accessed again
6035        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6036    }
6037}
6038
6039impl fidl::endpoints::Responder for DirectoryRenameResponder {
6040    type ControlHandle = DirectoryControlHandle;
6041
6042    fn control_handle(&self) -> &DirectoryControlHandle {
6043        &self.control_handle
6044    }
6045
6046    fn drop_without_shutdown(mut self) {
6047        // Safety: drops once, never accessed again due to mem::forget
6048        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6049        // Prevent Drop from running (which would shut down the channel)
6050        std::mem::forget(self);
6051    }
6052}
6053
6054impl DirectoryRenameResponder {
6055    /// Sends a response to the FIDL transaction.
6056    ///
6057    /// Sets the channel to shutdown if an error occurs.
6058    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6059        let _result = self.send_raw(result);
6060        if _result.is_err() {
6061            self.control_handle.shutdown();
6062        }
6063        self.drop_without_shutdown();
6064        _result
6065    }
6066
6067    /// Similar to "send" but does not shutdown the channel if an error occurs.
6068    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6069        let _result = self.send_raw(result);
6070        self.drop_without_shutdown();
6071        _result
6072    }
6073
6074    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6075        self.control_handle
6076            .inner
6077            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
6078                result,
6079                self.tx_id,
6080                0x7060e7723b9928de,
6081                fidl::encoding::DynamicFlags::empty(),
6082            )
6083    }
6084}
6085
6086#[must_use = "FIDL methods require a response to be sent"]
6087#[derive(Debug)]
6088pub struct DirectoryCreateSymlinkResponder {
6089    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
6090    tx_id: u32,
6091}
6092
6093/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
6094/// if the responder is dropped without sending a response, so that the client
6095/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
6096impl std::ops::Drop for DirectoryCreateSymlinkResponder {
6097    fn drop(&mut self) {
6098        self.control_handle.shutdown();
6099        // Safety: drops once, never accessed again
6100        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6101    }
6102}
6103
6104impl fidl::endpoints::Responder for DirectoryCreateSymlinkResponder {
6105    type ControlHandle = DirectoryControlHandle;
6106
6107    fn control_handle(&self) -> &DirectoryControlHandle {
6108        &self.control_handle
6109    }
6110
6111    fn drop_without_shutdown(mut self) {
6112        // Safety: drops once, never accessed again due to mem::forget
6113        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6114        // Prevent Drop from running (which would shut down the channel)
6115        std::mem::forget(self);
6116    }
6117}
6118
6119impl DirectoryCreateSymlinkResponder {
6120    /// Sends a response to the FIDL transaction.
6121    ///
6122    /// Sets the channel to shutdown if an error occurs.
6123    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6124        let _result = self.send_raw(result);
6125        if _result.is_err() {
6126            self.control_handle.shutdown();
6127        }
6128        self.drop_without_shutdown();
6129        _result
6130    }
6131
6132    /// Similar to "send" but does not shutdown the channel if an error occurs.
6133    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6134        let _result = self.send_raw(result);
6135        self.drop_without_shutdown();
6136        _result
6137    }
6138
6139    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
6140        self.control_handle
6141            .inner
6142            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
6143                result,
6144                self.tx_id,
6145                0x21ce0f19ec043889,
6146                fidl::encoding::DynamicFlags::empty(),
6147            )
6148    }
6149}
6150
6151#[must_use = "FIDL methods require a response to be sent"]
6152#[derive(Debug)]
6153pub struct DirectoryWatchResponder {
6154    control_handle: std::mem::ManuallyDrop<DirectoryControlHandle>,
6155    tx_id: u32,
6156}
6157
6158/// Set the the channel to be shutdown (see [`DirectoryControlHandle::shutdown`])
6159/// if the responder is dropped without sending a response, so that the client
6160/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
6161impl std::ops::Drop for DirectoryWatchResponder {
6162    fn drop(&mut self) {
6163        self.control_handle.shutdown();
6164        // Safety: drops once, never accessed again
6165        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6166    }
6167}
6168
6169impl fidl::endpoints::Responder for DirectoryWatchResponder {
6170    type ControlHandle = DirectoryControlHandle;
6171
6172    fn control_handle(&self) -> &DirectoryControlHandle {
6173        &self.control_handle
6174    }
6175
6176    fn drop_without_shutdown(mut self) {
6177        // Safety: drops once, never accessed again due to mem::forget
6178        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6179        // Prevent Drop from running (which would shut down the channel)
6180        std::mem::forget(self);
6181    }
6182}
6183
6184impl DirectoryWatchResponder {
6185    /// Sends a response to the FIDL transaction.
6186    ///
6187    /// Sets the channel to shutdown if an error occurs.
6188    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
6189        let _result = self.send_raw(s);
6190        if _result.is_err() {
6191            self.control_handle.shutdown();
6192        }
6193        self.drop_without_shutdown();
6194        _result
6195    }
6196
6197    /// Similar to "send" but does not shutdown the channel if an error occurs.
6198    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
6199        let _result = self.send_raw(s);
6200        self.drop_without_shutdown();
6201        _result
6202    }
6203
6204    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
6205        self.control_handle.inner.send::<DirectoryWatchResponse>(
6206            (s,),
6207            self.tx_id,
6208            0x5717193a59d66d91,
6209            fidl::encoding::DynamicFlags::empty(),
6210        )
6211    }
6212}
6213
6214#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
6215pub struct DirectoryWatcherMarker;
6216
6217impl fidl::endpoints::ProtocolMarker for DirectoryWatcherMarker {
6218    type Proxy = DirectoryWatcherProxy;
6219    type RequestStream = DirectoryWatcherRequestStream;
6220    #[cfg(target_os = "fuchsia")]
6221    type SynchronousProxy = DirectoryWatcherSynchronousProxy;
6222
6223    const DEBUG_NAME: &'static str = "(anonymous) DirectoryWatcher";
6224}
6225
6226pub trait DirectoryWatcherProxyInterface: Send + Sync {}
6227#[derive(Debug)]
6228#[cfg(target_os = "fuchsia")]
6229pub struct DirectoryWatcherSynchronousProxy {
6230    client: fidl::client::sync::Client,
6231}
6232
6233#[cfg(target_os = "fuchsia")]
6234impl fidl::endpoints::SynchronousProxy for DirectoryWatcherSynchronousProxy {
6235    type Proxy = DirectoryWatcherProxy;
6236    type Protocol = DirectoryWatcherMarker;
6237
6238    fn from_channel(inner: fidl::Channel) -> Self {
6239        Self::new(inner)
6240    }
6241
6242    fn into_channel(self) -> fidl::Channel {
6243        self.client.into_channel()
6244    }
6245
6246    fn as_channel(&self) -> &fidl::Channel {
6247        self.client.as_channel()
6248    }
6249}
6250
6251#[cfg(target_os = "fuchsia")]
6252impl DirectoryWatcherSynchronousProxy {
6253    pub fn new(channel: fidl::Channel) -> Self {
6254        let protocol_name = <DirectoryWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
6255        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
6256    }
6257
6258    pub fn into_channel(self) -> fidl::Channel {
6259        self.client.into_channel()
6260    }
6261
6262    /// Waits until an event arrives and returns it. It is safe for other
6263    /// threads to make concurrent requests while waiting for an event.
6264    pub fn wait_for_event(
6265        &self,
6266        deadline: zx::MonotonicInstant,
6267    ) -> Result<DirectoryWatcherEvent, fidl::Error> {
6268        DirectoryWatcherEvent::decode(self.client.wait_for_event(deadline)?)
6269    }
6270}
6271
6272#[cfg(target_os = "fuchsia")]
6273impl From<DirectoryWatcherSynchronousProxy> for zx::Handle {
6274    fn from(value: DirectoryWatcherSynchronousProxy) -> Self {
6275        value.into_channel().into()
6276    }
6277}
6278
6279#[cfg(target_os = "fuchsia")]
6280impl From<fidl::Channel> for DirectoryWatcherSynchronousProxy {
6281    fn from(value: fidl::Channel) -> Self {
6282        Self::new(value)
6283    }
6284}
6285
6286#[derive(Debug, Clone)]
6287pub struct DirectoryWatcherProxy {
6288    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
6289}
6290
6291impl fidl::endpoints::Proxy for DirectoryWatcherProxy {
6292    type Protocol = DirectoryWatcherMarker;
6293
6294    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
6295        Self::new(inner)
6296    }
6297
6298    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
6299        self.client.into_channel().map_err(|client| Self { client })
6300    }
6301
6302    fn as_channel(&self) -> &::fidl::AsyncChannel {
6303        self.client.as_channel()
6304    }
6305}
6306
6307impl DirectoryWatcherProxy {
6308    /// Create a new Proxy for fuchsia.io/DirectoryWatcher.
6309    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
6310        let protocol_name = <DirectoryWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
6311        Self { client: fidl::client::Client::new(channel, protocol_name) }
6312    }
6313
6314    /// Get a Stream of events from the remote end of the protocol.
6315    ///
6316    /// # Panics
6317    ///
6318    /// Panics if the event stream was already taken.
6319    pub fn take_event_stream(&self) -> DirectoryWatcherEventStream {
6320        DirectoryWatcherEventStream { event_receiver: self.client.take_event_receiver() }
6321    }
6322}
6323
6324impl DirectoryWatcherProxyInterface for DirectoryWatcherProxy {}
6325
6326pub struct DirectoryWatcherEventStream {
6327    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
6328}
6329
6330impl std::marker::Unpin for DirectoryWatcherEventStream {}
6331
6332impl futures::stream::FusedStream for DirectoryWatcherEventStream {
6333    fn is_terminated(&self) -> bool {
6334        self.event_receiver.is_terminated()
6335    }
6336}
6337
6338impl futures::Stream for DirectoryWatcherEventStream {
6339    type Item = Result<DirectoryWatcherEvent, fidl::Error>;
6340
6341    fn poll_next(
6342        mut self: std::pin::Pin<&mut Self>,
6343        cx: &mut std::task::Context<'_>,
6344    ) -> std::task::Poll<Option<Self::Item>> {
6345        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
6346            &mut self.event_receiver,
6347            cx
6348        )?) {
6349            Some(buf) => std::task::Poll::Ready(Some(DirectoryWatcherEvent::decode(buf))),
6350            None => std::task::Poll::Ready(None),
6351        }
6352    }
6353}
6354
6355#[derive(Debug)]
6356pub enum DirectoryWatcherEvent {}
6357
6358impl DirectoryWatcherEvent {
6359    /// Decodes a message buffer as a [`DirectoryWatcherEvent`].
6360    fn decode(
6361        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
6362    ) -> Result<DirectoryWatcherEvent, fidl::Error> {
6363        let (bytes, _handles) = buf.split_mut();
6364        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
6365        debug_assert_eq!(tx_header.tx_id, 0);
6366        match tx_header.ordinal {
6367            _ => Err(fidl::Error::UnknownOrdinal {
6368                ordinal: tx_header.ordinal,
6369                protocol_name:
6370                    <DirectoryWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6371            }),
6372        }
6373    }
6374}
6375
6376/// A Stream of incoming requests for fuchsia.io/DirectoryWatcher.
6377pub struct DirectoryWatcherRequestStream {
6378    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6379    is_terminated: bool,
6380}
6381
6382impl std::marker::Unpin for DirectoryWatcherRequestStream {}
6383
6384impl futures::stream::FusedStream for DirectoryWatcherRequestStream {
6385    fn is_terminated(&self) -> bool {
6386        self.is_terminated
6387    }
6388}
6389
6390impl fidl::endpoints::RequestStream for DirectoryWatcherRequestStream {
6391    type Protocol = DirectoryWatcherMarker;
6392    type ControlHandle = DirectoryWatcherControlHandle;
6393
6394    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
6395        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
6396    }
6397
6398    fn control_handle(&self) -> Self::ControlHandle {
6399        DirectoryWatcherControlHandle { inner: self.inner.clone() }
6400    }
6401
6402    fn into_inner(
6403        self,
6404    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
6405    {
6406        (self.inner, self.is_terminated)
6407    }
6408
6409    fn from_inner(
6410        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6411        is_terminated: bool,
6412    ) -> Self {
6413        Self { inner, is_terminated }
6414    }
6415}
6416
6417impl futures::Stream for DirectoryWatcherRequestStream {
6418    type Item = Result<DirectoryWatcherRequest, fidl::Error>;
6419
6420    fn poll_next(
6421        mut self: std::pin::Pin<&mut Self>,
6422        cx: &mut std::task::Context<'_>,
6423    ) -> std::task::Poll<Option<Self::Item>> {
6424        let this = &mut *self;
6425        if this.inner.check_shutdown(cx) {
6426            this.is_terminated = true;
6427            return std::task::Poll::Ready(None);
6428        }
6429        if this.is_terminated {
6430            panic!("polled DirectoryWatcherRequestStream after completion");
6431        }
6432        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
6433            |bytes, handles| {
6434                match this.inner.channel().read_etc(cx, bytes, handles) {
6435                    std::task::Poll::Ready(Ok(())) => {}
6436                    std::task::Poll::Pending => return std::task::Poll::Pending,
6437                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
6438                        this.is_terminated = true;
6439                        return std::task::Poll::Ready(None);
6440                    }
6441                    std::task::Poll::Ready(Err(e)) => {
6442                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
6443                            e.into(),
6444                        ))))
6445                    }
6446                }
6447
6448                // A message has been received from the channel
6449                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
6450
6451                std::task::Poll::Ready(Some(match header.ordinal {
6452                    _ => Err(fidl::Error::UnknownOrdinal {
6453                        ordinal: header.ordinal,
6454                        protocol_name:
6455                            <DirectoryWatcherMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6456                    }),
6457                }))
6458            },
6459        )
6460    }
6461}
6462
6463/// DirectoryWatcher transmits messages from a filesystem server
6464/// about events happening in the filesystem. Clients can register
6465/// new watchers using the `Directory.Watch` method, where they can
6466/// filter which events they want to receive notifications for.
6467///
6468/// The DirectoryWatcher will send messages of the form:
6469/// ```
6470/// struct {
6471///   uint8 event;
6472///   uint8 len;
6473///   char name[];
6474/// };
6475/// ```
6476/// Where names are NOT null-terminated. The name is the relative
6477/// path to the entry the event is refering to. It will be empty if
6478/// the event isn't referencing a particular entry (e.g. for the
6479/// `IDLE` event).
6480#[derive(Debug)]
6481pub enum DirectoryWatcherRequest {}
6482
6483impl DirectoryWatcherRequest {
6484    /// Name of the method defined in FIDL
6485    pub fn method_name(&self) -> &'static str {
6486        match *self {}
6487    }
6488}
6489
6490#[derive(Debug, Clone)]
6491pub struct DirectoryWatcherControlHandle {
6492    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6493}
6494
6495impl fidl::endpoints::ControlHandle for DirectoryWatcherControlHandle {
6496    fn shutdown(&self) {
6497        self.inner.shutdown()
6498    }
6499    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
6500        self.inner.shutdown_with_epitaph(status)
6501    }
6502
6503    fn is_closed(&self) -> bool {
6504        self.inner.channel().is_closed()
6505    }
6506    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
6507        self.inner.channel().on_closed()
6508    }
6509
6510    #[cfg(target_os = "fuchsia")]
6511    fn signal_peer(
6512        &self,
6513        clear_mask: zx::Signals,
6514        set_mask: zx::Signals,
6515    ) -> Result<(), zx_status::Status> {
6516        use fidl::Peered;
6517        self.inner.channel().signal_peer(clear_mask, set_mask)
6518    }
6519}
6520
6521impl DirectoryWatcherControlHandle {}
6522
6523#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
6524pub struct ExtendedAttributeIteratorMarker;
6525
6526impl fidl::endpoints::ProtocolMarker for ExtendedAttributeIteratorMarker {
6527    type Proxy = ExtendedAttributeIteratorProxy;
6528    type RequestStream = ExtendedAttributeIteratorRequestStream;
6529    #[cfg(target_os = "fuchsia")]
6530    type SynchronousProxy = ExtendedAttributeIteratorSynchronousProxy;
6531
6532    const DEBUG_NAME: &'static str = "(anonymous) ExtendedAttributeIterator";
6533}
6534pub type ExtendedAttributeIteratorGetNextResult = Result<(Vec<Vec<u8>>, bool), i32>;
6535
6536pub trait ExtendedAttributeIteratorProxyInterface: Send + Sync {
6537    type GetNextResponseFut: std::future::Future<Output = Result<ExtendedAttributeIteratorGetNextResult, fidl::Error>>
6538        + Send;
6539    fn r#get_next(&self) -> Self::GetNextResponseFut;
6540}
6541#[derive(Debug)]
6542#[cfg(target_os = "fuchsia")]
6543pub struct ExtendedAttributeIteratorSynchronousProxy {
6544    client: fidl::client::sync::Client,
6545}
6546
6547#[cfg(target_os = "fuchsia")]
6548impl fidl::endpoints::SynchronousProxy for ExtendedAttributeIteratorSynchronousProxy {
6549    type Proxy = ExtendedAttributeIteratorProxy;
6550    type Protocol = ExtendedAttributeIteratorMarker;
6551
6552    fn from_channel(inner: fidl::Channel) -> Self {
6553        Self::new(inner)
6554    }
6555
6556    fn into_channel(self) -> fidl::Channel {
6557        self.client.into_channel()
6558    }
6559
6560    fn as_channel(&self) -> &fidl::Channel {
6561        self.client.as_channel()
6562    }
6563}
6564
6565#[cfg(target_os = "fuchsia")]
6566impl ExtendedAttributeIteratorSynchronousProxy {
6567    pub fn new(channel: fidl::Channel) -> Self {
6568        let protocol_name =
6569            <ExtendedAttributeIteratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
6570        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
6571    }
6572
6573    pub fn into_channel(self) -> fidl::Channel {
6574        self.client.into_channel()
6575    }
6576
6577    /// Waits until an event arrives and returns it. It is safe for other
6578    /// threads to make concurrent requests while waiting for an event.
6579    pub fn wait_for_event(
6580        &self,
6581        deadline: zx::MonotonicInstant,
6582    ) -> Result<ExtendedAttributeIteratorEvent, fidl::Error> {
6583        ExtendedAttributeIteratorEvent::decode(self.client.wait_for_event(deadline)?)
6584    }
6585
6586    /// Get the next chunk of extended attribute names. If this is the last
6587    /// chunk, last will be true, and the channel will be closed after the
6588    /// call.
6589    pub fn r#get_next(
6590        &self,
6591        ___deadline: zx::MonotonicInstant,
6592    ) -> Result<ExtendedAttributeIteratorGetNextResult, fidl::Error> {
6593        let _response = self.client.send_query::<
6594            fidl::encoding::EmptyPayload,
6595            fidl::encoding::ResultType<ExtendedAttributeIteratorGetNextResponse, i32>,
6596        >(
6597            (),
6598            0x3ba664a1c2e45a7,
6599            fidl::encoding::DynamicFlags::empty(),
6600            ___deadline,
6601        )?;
6602        Ok(_response.map(|x| (x.attributes, x.last)))
6603    }
6604}
6605
6606#[cfg(target_os = "fuchsia")]
6607impl From<ExtendedAttributeIteratorSynchronousProxy> for zx::Handle {
6608    fn from(value: ExtendedAttributeIteratorSynchronousProxy) -> Self {
6609        value.into_channel().into()
6610    }
6611}
6612
6613#[cfg(target_os = "fuchsia")]
6614impl From<fidl::Channel> for ExtendedAttributeIteratorSynchronousProxy {
6615    fn from(value: fidl::Channel) -> Self {
6616        Self::new(value)
6617    }
6618}
6619
6620#[derive(Debug, Clone)]
6621pub struct ExtendedAttributeIteratorProxy {
6622    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
6623}
6624
6625impl fidl::endpoints::Proxy for ExtendedAttributeIteratorProxy {
6626    type Protocol = ExtendedAttributeIteratorMarker;
6627
6628    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
6629        Self::new(inner)
6630    }
6631
6632    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
6633        self.client.into_channel().map_err(|client| Self { client })
6634    }
6635
6636    fn as_channel(&self) -> &::fidl::AsyncChannel {
6637        self.client.as_channel()
6638    }
6639}
6640
6641impl ExtendedAttributeIteratorProxy {
6642    /// Create a new Proxy for fuchsia.io/ExtendedAttributeIterator.
6643    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
6644        let protocol_name =
6645            <ExtendedAttributeIteratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
6646        Self { client: fidl::client::Client::new(channel, protocol_name) }
6647    }
6648
6649    /// Get a Stream of events from the remote end of the protocol.
6650    ///
6651    /// # Panics
6652    ///
6653    /// Panics if the event stream was already taken.
6654    pub fn take_event_stream(&self) -> ExtendedAttributeIteratorEventStream {
6655        ExtendedAttributeIteratorEventStream { event_receiver: self.client.take_event_receiver() }
6656    }
6657
6658    /// Get the next chunk of extended attribute names. If this is the last
6659    /// chunk, last will be true, and the channel will be closed after the
6660    /// call.
6661    pub fn r#get_next(
6662        &self,
6663    ) -> fidl::client::QueryResponseFut<
6664        ExtendedAttributeIteratorGetNextResult,
6665        fidl::encoding::DefaultFuchsiaResourceDialect,
6666    > {
6667        ExtendedAttributeIteratorProxyInterface::r#get_next(self)
6668    }
6669}
6670
6671impl ExtendedAttributeIteratorProxyInterface for ExtendedAttributeIteratorProxy {
6672    type GetNextResponseFut = fidl::client::QueryResponseFut<
6673        ExtendedAttributeIteratorGetNextResult,
6674        fidl::encoding::DefaultFuchsiaResourceDialect,
6675    >;
6676    fn r#get_next(&self) -> Self::GetNextResponseFut {
6677        fn _decode(
6678            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
6679        ) -> Result<ExtendedAttributeIteratorGetNextResult, fidl::Error> {
6680            let _response = fidl::client::decode_transaction_body::<
6681                fidl::encoding::ResultType<ExtendedAttributeIteratorGetNextResponse, i32>,
6682                fidl::encoding::DefaultFuchsiaResourceDialect,
6683                0x3ba664a1c2e45a7,
6684            >(_buf?)?;
6685            Ok(_response.map(|x| (x.attributes, x.last)))
6686        }
6687        self.client.send_query_and_decode::<
6688            fidl::encoding::EmptyPayload,
6689            ExtendedAttributeIteratorGetNextResult,
6690        >(
6691            (),
6692            0x3ba664a1c2e45a7,
6693            fidl::encoding::DynamicFlags::empty(),
6694            _decode,
6695        )
6696    }
6697}
6698
6699pub struct ExtendedAttributeIteratorEventStream {
6700    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
6701}
6702
6703impl std::marker::Unpin for ExtendedAttributeIteratorEventStream {}
6704
6705impl futures::stream::FusedStream for ExtendedAttributeIteratorEventStream {
6706    fn is_terminated(&self) -> bool {
6707        self.event_receiver.is_terminated()
6708    }
6709}
6710
6711impl futures::Stream for ExtendedAttributeIteratorEventStream {
6712    type Item = Result<ExtendedAttributeIteratorEvent, fidl::Error>;
6713
6714    fn poll_next(
6715        mut self: std::pin::Pin<&mut Self>,
6716        cx: &mut std::task::Context<'_>,
6717    ) -> std::task::Poll<Option<Self::Item>> {
6718        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
6719            &mut self.event_receiver,
6720            cx
6721        )?) {
6722            Some(buf) => std::task::Poll::Ready(Some(ExtendedAttributeIteratorEvent::decode(buf))),
6723            None => std::task::Poll::Ready(None),
6724        }
6725    }
6726}
6727
6728#[derive(Debug)]
6729pub enum ExtendedAttributeIteratorEvent {}
6730
6731impl ExtendedAttributeIteratorEvent {
6732    /// Decodes a message buffer as a [`ExtendedAttributeIteratorEvent`].
6733    fn decode(
6734        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
6735    ) -> Result<ExtendedAttributeIteratorEvent, fidl::Error> {
6736        let (bytes, _handles) = buf.split_mut();
6737        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
6738        debug_assert_eq!(tx_header.tx_id, 0);
6739        match tx_header.ordinal {
6740            _ => Err(fidl::Error::UnknownOrdinal {
6741                ordinal: tx_header.ordinal,
6742                protocol_name:
6743                    <ExtendedAttributeIteratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6744            }),
6745        }
6746    }
6747}
6748
6749/// A Stream of incoming requests for fuchsia.io/ExtendedAttributeIterator.
6750pub struct ExtendedAttributeIteratorRequestStream {
6751    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6752    is_terminated: bool,
6753}
6754
6755impl std::marker::Unpin for ExtendedAttributeIteratorRequestStream {}
6756
6757impl futures::stream::FusedStream for ExtendedAttributeIteratorRequestStream {
6758    fn is_terminated(&self) -> bool {
6759        self.is_terminated
6760    }
6761}
6762
6763impl fidl::endpoints::RequestStream for ExtendedAttributeIteratorRequestStream {
6764    type Protocol = ExtendedAttributeIteratorMarker;
6765    type ControlHandle = ExtendedAttributeIteratorControlHandle;
6766
6767    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
6768        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
6769    }
6770
6771    fn control_handle(&self) -> Self::ControlHandle {
6772        ExtendedAttributeIteratorControlHandle { inner: self.inner.clone() }
6773    }
6774
6775    fn into_inner(
6776        self,
6777    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
6778    {
6779        (self.inner, self.is_terminated)
6780    }
6781
6782    fn from_inner(
6783        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6784        is_terminated: bool,
6785    ) -> Self {
6786        Self { inner, is_terminated }
6787    }
6788}
6789
6790impl futures::Stream for ExtendedAttributeIteratorRequestStream {
6791    type Item = Result<ExtendedAttributeIteratorRequest, fidl::Error>;
6792
6793    fn poll_next(
6794        mut self: std::pin::Pin<&mut Self>,
6795        cx: &mut std::task::Context<'_>,
6796    ) -> std::task::Poll<Option<Self::Item>> {
6797        let this = &mut *self;
6798        if this.inner.check_shutdown(cx) {
6799            this.is_terminated = true;
6800            return std::task::Poll::Ready(None);
6801        }
6802        if this.is_terminated {
6803            panic!("polled ExtendedAttributeIteratorRequestStream after completion");
6804        }
6805        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
6806            |bytes, handles| {
6807                match this.inner.channel().read_etc(cx, bytes, handles) {
6808                    std::task::Poll::Ready(Ok(())) => {}
6809                    std::task::Poll::Pending => return std::task::Poll::Pending,
6810                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
6811                        this.is_terminated = true;
6812                        return std::task::Poll::Ready(None);
6813                    }
6814                    std::task::Poll::Ready(Err(e)) => {
6815                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
6816                            e.into(),
6817                        ))))
6818                    }
6819                }
6820
6821                // A message has been received from the channel
6822                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
6823
6824                std::task::Poll::Ready(Some(match header.ordinal {
6825                0x3ba664a1c2e45a7 => {
6826                    header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
6827                    let mut req = fidl::new_empty!(fidl::encoding::EmptyPayload, fidl::encoding::DefaultFuchsiaResourceDialect);
6828                    fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
6829                    let control_handle = ExtendedAttributeIteratorControlHandle {
6830                        inner: this.inner.clone(),
6831                    };
6832                    Ok(ExtendedAttributeIteratorRequest::GetNext {
6833                        responder: ExtendedAttributeIteratorGetNextResponder {
6834                            control_handle: std::mem::ManuallyDrop::new(control_handle),
6835                            tx_id: header.tx_id,
6836                        },
6837                    })
6838                }
6839                _ => Err(fidl::Error::UnknownOrdinal {
6840                    ordinal: header.ordinal,
6841                    protocol_name: <ExtendedAttributeIteratorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6842                }),
6843            }))
6844            },
6845        )
6846    }
6847}
6848
6849#[derive(Debug)]
6850pub enum ExtendedAttributeIteratorRequest {
6851    /// Get the next chunk of extended attribute names. If this is the last
6852    /// chunk, last will be true, and the channel will be closed after the
6853    /// call.
6854    GetNext { responder: ExtendedAttributeIteratorGetNextResponder },
6855}
6856
6857impl ExtendedAttributeIteratorRequest {
6858    #[allow(irrefutable_let_patterns)]
6859    pub fn into_get_next(self) -> Option<(ExtendedAttributeIteratorGetNextResponder)> {
6860        if let ExtendedAttributeIteratorRequest::GetNext { responder } = self {
6861            Some((responder))
6862        } else {
6863            None
6864        }
6865    }
6866
6867    /// Name of the method defined in FIDL
6868    pub fn method_name(&self) -> &'static str {
6869        match *self {
6870            ExtendedAttributeIteratorRequest::GetNext { .. } => "get_next",
6871        }
6872    }
6873}
6874
6875#[derive(Debug, Clone)]
6876pub struct ExtendedAttributeIteratorControlHandle {
6877    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6878}
6879
6880impl fidl::endpoints::ControlHandle for ExtendedAttributeIteratorControlHandle {
6881    fn shutdown(&self) {
6882        self.inner.shutdown()
6883    }
6884    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
6885        self.inner.shutdown_with_epitaph(status)
6886    }
6887
6888    fn is_closed(&self) -> bool {
6889        self.inner.channel().is_closed()
6890    }
6891    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
6892        self.inner.channel().on_closed()
6893    }
6894
6895    #[cfg(target_os = "fuchsia")]
6896    fn signal_peer(
6897        &self,
6898        clear_mask: zx::Signals,
6899        set_mask: zx::Signals,
6900    ) -> Result<(), zx_status::Status> {
6901        use fidl::Peered;
6902        self.inner.channel().signal_peer(clear_mask, set_mask)
6903    }
6904}
6905
6906impl ExtendedAttributeIteratorControlHandle {}
6907
6908#[must_use = "FIDL methods require a response to be sent"]
6909#[derive(Debug)]
6910pub struct ExtendedAttributeIteratorGetNextResponder {
6911    control_handle: std::mem::ManuallyDrop<ExtendedAttributeIteratorControlHandle>,
6912    tx_id: u32,
6913}
6914
6915/// Set the the channel to be shutdown (see [`ExtendedAttributeIteratorControlHandle::shutdown`])
6916/// if the responder is dropped without sending a response, so that the client
6917/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
6918impl std::ops::Drop for ExtendedAttributeIteratorGetNextResponder {
6919    fn drop(&mut self) {
6920        self.control_handle.shutdown();
6921        // Safety: drops once, never accessed again
6922        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6923    }
6924}
6925
6926impl fidl::endpoints::Responder for ExtendedAttributeIteratorGetNextResponder {
6927    type ControlHandle = ExtendedAttributeIteratorControlHandle;
6928
6929    fn control_handle(&self) -> &ExtendedAttributeIteratorControlHandle {
6930        &self.control_handle
6931    }
6932
6933    fn drop_without_shutdown(mut self) {
6934        // Safety: drops once, never accessed again due to mem::forget
6935        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6936        // Prevent Drop from running (which would shut down the channel)
6937        std::mem::forget(self);
6938    }
6939}
6940
6941impl ExtendedAttributeIteratorGetNextResponder {
6942    /// Sends a response to the FIDL transaction.
6943    ///
6944    /// Sets the channel to shutdown if an error occurs.
6945    pub fn send(self, mut result: Result<(&[Vec<u8>], bool), i32>) -> Result<(), fidl::Error> {
6946        let _result = self.send_raw(result);
6947        if _result.is_err() {
6948            self.control_handle.shutdown();
6949        }
6950        self.drop_without_shutdown();
6951        _result
6952    }
6953
6954    /// Similar to "send" but does not shutdown the channel if an error occurs.
6955    pub fn send_no_shutdown_on_err(
6956        self,
6957        mut result: Result<(&[Vec<u8>], bool), i32>,
6958    ) -> Result<(), fidl::Error> {
6959        let _result = self.send_raw(result);
6960        self.drop_without_shutdown();
6961        _result
6962    }
6963
6964    fn send_raw(&self, mut result: Result<(&[Vec<u8>], bool), i32>) -> Result<(), fidl::Error> {
6965        self.control_handle.inner.send::<fidl::encoding::ResultType<
6966            ExtendedAttributeIteratorGetNextResponse,
6967            i32,
6968        >>(
6969            result,
6970            self.tx_id,
6971            0x3ba664a1c2e45a7,
6972            fidl::encoding::DynamicFlags::empty(),
6973        )
6974    }
6975}
6976
6977#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
6978pub struct FileMarker;
6979
6980impl fidl::endpoints::ProtocolMarker for FileMarker {
6981    type Proxy = FileProxy;
6982    type RequestStream = FileRequestStream;
6983    #[cfg(target_os = "fuchsia")]
6984    type SynchronousProxy = FileSynchronousProxy;
6985
6986    const DEBUG_NAME: &'static str = "fuchsia.io.File";
6987}
6988impl fidl::endpoints::DiscoverableProtocolMarker for FileMarker {}
6989pub type FileSeekResult = Result<u64, i32>;
6990pub type FileReadAtResult = Result<Vec<u8>, i32>;
6991pub type FileWriteAtResult = Result<u64, i32>;
6992pub type FileResizeResult = Result<(), i32>;
6993pub type FileGetBackingMemoryResult = Result<fidl::Vmo, i32>;
6994pub type FileAllocateResult = Result<(), i32>;
6995pub type FileEnableVerityResult = Result<(), i32>;
6996
6997pub trait FileProxyInterface: Send + Sync {
6998    type AdvisoryLockResponseFut: std::future::Future<Output = Result<AdvisoryLockingAdvisoryLockResult, fidl::Error>>
6999        + Send;
7000    fn r#advisory_lock(&self, request: &AdvisoryLockRequest) -> Self::AdvisoryLockResponseFut;
7001    type LinkIntoResponseFut: std::future::Future<Output = Result<LinkableLinkIntoResult, fidl::Error>>
7002        + Send;
7003    fn r#link_into(&self, dst_parent_token: fidl::Event, dst: &str) -> Self::LinkIntoResponseFut;
7004    fn r#clone(
7005        &self,
7006        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
7007    ) -> Result<(), fidl::Error>;
7008    type CloseResponseFut: std::future::Future<
7009            Output = Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error>,
7010        > + Send;
7011    fn r#close(&self) -> Self::CloseResponseFut;
7012    type QueryResponseFut: std::future::Future<Output = Result<Vec<u8>, fidl::Error>> + Send;
7013    fn r#query(&self) -> Self::QueryResponseFut;
7014    fn r#deprecated_clone(
7015        &self,
7016        flags: OpenFlags,
7017        object: fidl::endpoints::ServerEnd<NodeMarker>,
7018    ) -> Result<(), fidl::Error>;
7019    type GetAttrResponseFut: std::future::Future<Output = Result<(i32, NodeAttributes), fidl::Error>>
7020        + Send;
7021    fn r#get_attr(&self) -> Self::GetAttrResponseFut;
7022    type SetAttrResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
7023    fn r#set_attr(
7024        &self,
7025        flags: NodeAttributeFlags,
7026        attributes: &NodeAttributes,
7027    ) -> Self::SetAttrResponseFut;
7028    type DeprecatedGetFlagsResponseFut: std::future::Future<Output = Result<(i32, OpenFlags), fidl::Error>>
7029        + Send;
7030    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut;
7031    type DeprecatedSetFlagsResponseFut: std::future::Future<Output = Result<i32, fidl::Error>>
7032        + Send;
7033    fn r#deprecated_set_flags(&self, flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut;
7034    type GetFlagsResponseFut: std::future::Future<Output = Result<NodeGetFlagsResult, fidl::Error>>
7035        + Send;
7036    fn r#get_flags(&self) -> Self::GetFlagsResponseFut;
7037    type SetFlagsResponseFut: std::future::Future<Output = Result<NodeSetFlagsResult, fidl::Error>>
7038        + Send;
7039    fn r#set_flags(&self, flags: Flags) -> Self::SetFlagsResponseFut;
7040    type QueryFilesystemResponseFut: std::future::Future<Output = Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error>>
7041        + Send;
7042    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut;
7043    type GetConnectionInfoResponseFut: std::future::Future<Output = Result<ConnectionInfo, fidl::Error>>
7044        + Send;
7045    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut;
7046    type GetAttributesResponseFut: std::future::Future<Output = Result<NodeGetAttributesResult, fidl::Error>>
7047        + Send;
7048    fn r#get_attributes(&self, query: NodeAttributesQuery) -> Self::GetAttributesResponseFut;
7049    type UpdateAttributesResponseFut: std::future::Future<Output = Result<NodeUpdateAttributesResult, fidl::Error>>
7050        + Send;
7051    fn r#update_attributes(
7052        &self,
7053        payload: &MutableNodeAttributes,
7054    ) -> Self::UpdateAttributesResponseFut;
7055    type SyncResponseFut: std::future::Future<Output = Result<NodeSyncResult, fidl::Error>> + Send;
7056    fn r#sync(&self) -> Self::SyncResponseFut;
7057    fn r#list_extended_attributes(
7058        &self,
7059        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
7060    ) -> Result<(), fidl::Error>;
7061    type GetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeGetExtendedAttributeResult, fidl::Error>>
7062        + Send;
7063    fn r#get_extended_attribute(&self, name: &[u8]) -> Self::GetExtendedAttributeResponseFut;
7064    type SetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeSetExtendedAttributeResult, fidl::Error>>
7065        + Send;
7066    fn r#set_extended_attribute(
7067        &self,
7068        name: &[u8],
7069        value: ExtendedAttributeValue,
7070        mode: SetExtendedAttributeMode,
7071    ) -> Self::SetExtendedAttributeResponseFut;
7072    type RemoveExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeRemoveExtendedAttributeResult, fidl::Error>>
7073        + Send;
7074    fn r#remove_extended_attribute(&self, name: &[u8]) -> Self::RemoveExtendedAttributeResponseFut;
7075    type ReadResponseFut: std::future::Future<Output = Result<ReadableReadResult, fidl::Error>>
7076        + Send;
7077    fn r#read(&self, count: u64) -> Self::ReadResponseFut;
7078    type WriteResponseFut: std::future::Future<Output = Result<WritableWriteResult, fidl::Error>>
7079        + Send;
7080    fn r#write(&self, data: &[u8]) -> Self::WriteResponseFut;
7081    type DescribeResponseFut: std::future::Future<Output = Result<FileInfo, fidl::Error>> + Send;
7082    fn r#describe(&self) -> Self::DescribeResponseFut;
7083    type SeekResponseFut: std::future::Future<Output = Result<FileSeekResult, fidl::Error>> + Send;
7084    fn r#seek(&self, origin: SeekOrigin, offset: i64) -> Self::SeekResponseFut;
7085    type ReadAtResponseFut: std::future::Future<Output = Result<FileReadAtResult, fidl::Error>>
7086        + Send;
7087    fn r#read_at(&self, count: u64, offset: u64) -> Self::ReadAtResponseFut;
7088    type WriteAtResponseFut: std::future::Future<Output = Result<FileWriteAtResult, fidl::Error>>
7089        + Send;
7090    fn r#write_at(&self, data: &[u8], offset: u64) -> Self::WriteAtResponseFut;
7091    type ResizeResponseFut: std::future::Future<Output = Result<FileResizeResult, fidl::Error>>
7092        + Send;
7093    fn r#resize(&self, length: u64) -> Self::ResizeResponseFut;
7094    type GetBackingMemoryResponseFut: std::future::Future<Output = Result<FileGetBackingMemoryResult, fidl::Error>>
7095        + Send;
7096    fn r#get_backing_memory(&self, flags: VmoFlags) -> Self::GetBackingMemoryResponseFut;
7097    type AllocateResponseFut: std::future::Future<Output = Result<FileAllocateResult, fidl::Error>>
7098        + Send;
7099    fn r#allocate(&self, offset: u64, length: u64, mode: AllocateMode)
7100        -> Self::AllocateResponseFut;
7101    type EnableVerityResponseFut: std::future::Future<Output = Result<FileEnableVerityResult, fidl::Error>>
7102        + Send;
7103    fn r#enable_verity(&self, options: &VerificationOptions) -> Self::EnableVerityResponseFut;
7104}
7105#[derive(Debug)]
7106#[cfg(target_os = "fuchsia")]
7107pub struct FileSynchronousProxy {
7108    client: fidl::client::sync::Client,
7109}
7110
7111#[cfg(target_os = "fuchsia")]
7112impl fidl::endpoints::SynchronousProxy for FileSynchronousProxy {
7113    type Proxy = FileProxy;
7114    type Protocol = FileMarker;
7115
7116    fn from_channel(inner: fidl::Channel) -> Self {
7117        Self::new(inner)
7118    }
7119
7120    fn into_channel(self) -> fidl::Channel {
7121        self.client.into_channel()
7122    }
7123
7124    fn as_channel(&self) -> &fidl::Channel {
7125        self.client.as_channel()
7126    }
7127}
7128
7129#[cfg(target_os = "fuchsia")]
7130impl FileSynchronousProxy {
7131    pub fn new(channel: fidl::Channel) -> Self {
7132        let protocol_name = <FileMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
7133        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
7134    }
7135
7136    pub fn into_channel(self) -> fidl::Channel {
7137        self.client.into_channel()
7138    }
7139
7140    /// Waits until an event arrives and returns it. It is safe for other
7141    /// threads to make concurrent requests while waiting for an event.
7142    pub fn wait_for_event(&self, deadline: zx::MonotonicInstant) -> Result<FileEvent, fidl::Error> {
7143        FileEvent::decode(self.client.wait_for_event(deadline)?)
7144    }
7145
7146    /// Acquires an advisory lock on the underlying file.
7147    ///
7148    /// The lock lasts until either this connection is closed or
7149    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
7150    /// explicitly.
7151    ///
7152    /// Advisory locks are purely advisory. They do not prevent actual read or
7153    /// write operations from occurring on the file, either through this
7154    /// connection or through other connections.
7155    ///
7156    /// This method requires the following rights:
7157    ///
7158    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
7159    /// * [`Rights.WRITE_BYTES`] if `request.type` is
7160    ///   [`AdvisoryLockType.WRITE`].
7161    ///
7162    /// # Errors
7163    ///
7164    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
7165    ///   example, another connection might hold a conflicting lock type.
7166    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
7167    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
7168    ///   to acquire the given type of lock.
7169    pub fn r#advisory_lock(
7170        &self,
7171        mut request: &AdvisoryLockRequest,
7172        ___deadline: zx::MonotonicInstant,
7173    ) -> Result<AdvisoryLockingAdvisoryLockResult, fidl::Error> {
7174        let _response = self.client.send_query::<
7175            AdvisoryLockingAdvisoryLockRequest,
7176            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7177        >(
7178            (request,),
7179            0x6ee9c0ad53ec87aa,
7180            fidl::encoding::DynamicFlags::empty(),
7181            ___deadline,
7182        )?;
7183        Ok(_response.map(|x| x))
7184    }
7185
7186    /// Creates a link to this this object with name `dst` in the directory represented by
7187    /// `dst_parent_token`.
7188    ///
7189    /// `dst` must be a resolved object name. Including "/" in the string will return
7190    /// `ZX_ERR_INVALID_ARGS`.
7191    ///
7192    /// This method requires the maximal set of rights supported by the filesystem for this object.
7193    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
7194    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
7195    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
7196    /// `ZX_ERR_ACCESS_DENIED`.
7197    ///
7198    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
7199    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
7200    ///
7201    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
7202    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
7203    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
7204    ///
7205    /// This method does not have the same atomicity properties has the `Directory::Link` method,
7206    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
7207    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
7208    pub fn r#link_into(
7209        &self,
7210        mut dst_parent_token: fidl::Event,
7211        mut dst: &str,
7212        ___deadline: zx::MonotonicInstant,
7213    ) -> Result<LinkableLinkIntoResult, fidl::Error> {
7214        let _response = self.client.send_query::<
7215            LinkableLinkIntoRequest,
7216            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7217        >(
7218            (dst_parent_token, dst,),
7219            0x54f3949246a03e74,
7220            fidl::encoding::DynamicFlags::empty(),
7221            ___deadline,
7222        )?;
7223        Ok(_response.map(|x| x))
7224    }
7225
7226    pub fn r#clone(
7227        &self,
7228        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
7229    ) -> Result<(), fidl::Error> {
7230        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
7231            (request,),
7232            0x20d8a7aba2168a79,
7233            fidl::encoding::DynamicFlags::empty(),
7234        )
7235    }
7236
7237    /// Terminates the connection.
7238    ///
7239    /// After calling `Close`, the client must not send any other requests.
7240    ///
7241    /// Servers, after sending the status response, should close the connection
7242    /// regardless of status and without sending an epitaph.
7243    ///
7244    /// Closing the client end of the channel should be semantically equivalent
7245    /// to calling `Close` without knowing when the close has completed or its
7246    /// status.
7247    pub fn r#close(
7248        &self,
7249        ___deadline: zx::MonotonicInstant,
7250    ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
7251        let _response = self.client.send_query::<
7252            fidl::encoding::EmptyPayload,
7253            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7254        >(
7255            (),
7256            0x5ac5d459ad7f657e,
7257            fidl::encoding::DynamicFlags::empty(),
7258            ___deadline,
7259        )?;
7260        Ok(_response.map(|x| x))
7261    }
7262
7263    pub fn r#query(&self, ___deadline: zx::MonotonicInstant) -> Result<Vec<u8>, fidl::Error> {
7264        let _response = self.client.send_query::<
7265            fidl::encoding::EmptyPayload,
7266            fidl_fuchsia_unknown::QueryableQueryResponse,
7267        >(
7268            (),
7269            0x2658edee9decfc06,
7270            fidl::encoding::DynamicFlags::empty(),
7271            ___deadline,
7272        )?;
7273        Ok(_response.protocol)
7274    }
7275
7276    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
7277    pub fn r#deprecated_clone(
7278        &self,
7279        mut flags: OpenFlags,
7280        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
7281    ) -> Result<(), fidl::Error> {
7282        self.client.send::<NodeDeprecatedCloneRequest>(
7283            (flags, object),
7284            0x5a61678f293ce16f,
7285            fidl::encoding::DynamicFlags::FLEXIBLE,
7286        )
7287    }
7288
7289    /// Acquires information about the node.
7290    ///
7291    /// This method does not require any rights.
7292    pub fn r#get_attr(
7293        &self,
7294        ___deadline: zx::MonotonicInstant,
7295    ) -> Result<(i32, NodeAttributes), fidl::Error> {
7296        let _response =
7297            self.client.send_query::<fidl::encoding::EmptyPayload, NodeGetAttrResponse>(
7298                (),
7299                0x78985e216314dafd,
7300                fidl::encoding::DynamicFlags::empty(),
7301                ___deadline,
7302            )?;
7303        Ok((_response.s, _response.attributes))
7304    }
7305
7306    /// Updates information about the node.
7307    ///
7308    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
7309    ///
7310    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
7311    /// `ZX_ERR_BAD_HANDLE`.
7312    pub fn r#set_attr(
7313        &self,
7314        mut flags: NodeAttributeFlags,
7315        mut attributes: &NodeAttributes,
7316        ___deadline: zx::MonotonicInstant,
7317    ) -> Result<i32, fidl::Error> {
7318        let _response = self.client.send_query::<NodeSetAttrRequest, NodeSetAttrResponse>(
7319            (flags, attributes),
7320            0x4186c0f40d938f46,
7321            fidl::encoding::DynamicFlags::empty(),
7322            ___deadline,
7323        )?;
7324        Ok(_response.s)
7325    }
7326
7327    /// [DEPRECATED - Use new GetFlags method instead.]
7328    pub fn r#deprecated_get_flags(
7329        &self,
7330        ___deadline: zx::MonotonicInstant,
7331    ) -> Result<(i32, OpenFlags), fidl::Error> {
7332        let _response = self
7333            .client
7334            .send_query::<fidl::encoding::EmptyPayload, NodeDeprecatedGetFlagsResponse>(
7335                (),
7336                0x5b88fffb8eda3aa1,
7337                fidl::encoding::DynamicFlags::empty(),
7338                ___deadline,
7339            )?;
7340        Ok((_response.s, _response.flags))
7341    }
7342
7343    /// [DEPRECATED - Use new SetFlags method instead.]
7344    pub fn r#deprecated_set_flags(
7345        &self,
7346        mut flags: OpenFlags,
7347        ___deadline: zx::MonotonicInstant,
7348    ) -> Result<i32, fidl::Error> {
7349        let _response = self
7350            .client
7351            .send_query::<NodeDeprecatedSetFlagsRequest, NodeDeprecatedSetFlagsResponse>(
7352                (flags,),
7353                0x5295b76c71fde733,
7354                fidl::encoding::DynamicFlags::empty(),
7355                ___deadline,
7356            )?;
7357        Ok(_response.s)
7358    }
7359
7360    /// Queries the flags that apply to this node after it has been opened/created. This method does
7361    /// not require any rights.
7362    ///
7363    /// Note that the final set of flags that apply to the connection may differ from those
7364    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
7365    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
7366    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
7367    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
7368    pub fn r#get_flags(
7369        &self,
7370        ___deadline: zx::MonotonicInstant,
7371    ) -> Result<NodeGetFlagsResult, fidl::Error> {
7372        let _response = self.client.send_query::<
7373            fidl::encoding::EmptyPayload,
7374            fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
7375        >(
7376            (),
7377            0x176eb318f64ec23,
7378            fidl::encoding::DynamicFlags::FLEXIBLE,
7379            ___deadline,
7380        )?
7381        .into_result::<FileMarker>("get_flags")?;
7382        Ok(_response.map(|x| x.flags))
7383    }
7384
7385    /// Sets the flags that apply to this node after it has been opened. This method does not
7386    /// require any rights.
7387    ///
7388    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
7389    /// clear append mode.
7390    ///
7391    /// Errors:
7392    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
7393    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
7394    pub fn r#set_flags(
7395        &self,
7396        mut flags: Flags,
7397        ___deadline: zx::MonotonicInstant,
7398    ) -> Result<NodeSetFlagsResult, fidl::Error> {
7399        let _response = self.client.send_query::<
7400            NodeSetFlagsRequest,
7401            fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
7402        >(
7403            (flags,),
7404            0x55a8028685791ea8,
7405            fidl::encoding::DynamicFlags::FLEXIBLE,
7406            ___deadline,
7407        )?
7408        .into_result::<FileMarker>("set_flags")?;
7409        Ok(_response.map(|x| x))
7410    }
7411
7412    /// Query the filesystem for filesystem-specific information.
7413    pub fn r#query_filesystem(
7414        &self,
7415        ___deadline: zx::MonotonicInstant,
7416    ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
7417        let _response =
7418            self.client.send_query::<fidl::encoding::EmptyPayload, NodeQueryFilesystemResponse>(
7419                (),
7420                0x6f344a1c6b0a0610,
7421                fidl::encoding::DynamicFlags::empty(),
7422                ___deadline,
7423            )?;
7424        Ok((_response.s, _response.info))
7425    }
7426
7427    /// Acquires information about the connection.
7428    ///
7429    /// This method does not require any rights.
7430    pub fn r#get_connection_info(
7431        &self,
7432        ___deadline: zx::MonotonicInstant,
7433    ) -> Result<ConnectionInfo, fidl::Error> {
7434        let _response = self.client.send_query::<fidl::encoding::EmptyPayload, ConnectionInfo>(
7435            (),
7436            0x584c377c7c0a6d0b,
7437            fidl::encoding::DynamicFlags::empty(),
7438            ___deadline,
7439        )?;
7440        Ok(_response)
7441    }
7442
7443    /// Acquires information about the node.
7444    ///
7445    /// The attributes of a node should be stable, independent of the
7446    /// specific protocol used to access it.
7447    ///
7448    /// If a particular attribute is not applicable or not supported,
7449    /// filesystems should leave the corresponding field absent.
7450    ///
7451    /// + `query` a bit-mask specifying which attributes to fetch. The server
7452    ///   should not return more than necessary.
7453    /// - `attributes` the returned attributes.
7454    ///
7455    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
7456    pub fn r#get_attributes(
7457        &self,
7458        mut query: NodeAttributesQuery,
7459        ___deadline: zx::MonotonicInstant,
7460    ) -> Result<NodeGetAttributesResult, fidl::Error> {
7461        let _response = self.client.send_query::<
7462            NodeGetAttributesRequest,
7463            fidl::encoding::ResultType<NodeAttributes2, i32>,
7464        >(
7465            (query,),
7466            0x3d4396a638ea053b,
7467            fidl::encoding::DynamicFlags::empty(),
7468            ___deadline,
7469        )?;
7470        Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
7471    }
7472
7473    /// Updates information about the node.
7474    ///
7475    /// + `attributes` the presence of a table field in `attributes` indicates
7476    /// the intent to update the corresponding attribute.
7477    ///
7478    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
7479    ///
7480    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
7481    pub fn r#update_attributes(
7482        &self,
7483        mut payload: &MutableNodeAttributes,
7484        ___deadline: zx::MonotonicInstant,
7485    ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
7486        let _response = self.client.send_query::<
7487            MutableNodeAttributes,
7488            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7489        >(
7490            payload,
7491            0x3308c1da5a89bf08,
7492            fidl::encoding::DynamicFlags::empty(),
7493            ___deadline,
7494        )?;
7495        Ok(_response.map(|x| x))
7496    }
7497
7498    /// Synchronizes updates to the node to the underlying media, if it exists.
7499    ///
7500    /// This method will return when the filesystem server has flushed the
7501    /// relevant updates to the underlying media, but does not guarantee the
7502    /// underlying media has persisted the information, nor that any information
7503    /// is committed to hardware. Clients may use `Sync` to ensure ordering
7504    /// between operations.
7505    ///
7506    /// This method does not require any rights.
7507    pub fn r#sync(&self, ___deadline: zx::MonotonicInstant) -> Result<NodeSyncResult, fidl::Error> {
7508        let _response = self.client.send_query::<
7509            fidl::encoding::EmptyPayload,
7510            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7511        >(
7512            (),
7513            0x2c5c27ca0ab5dc49,
7514            fidl::encoding::DynamicFlags::empty(),
7515            ___deadline,
7516        )?;
7517        Ok(_response.map(|x| x))
7518    }
7519
7520    /// Creates an iterator over all the extended attribute names associated
7521    /// with this node. If an error occurs it is returned as an epitaph on the
7522    /// iterator request channel, and then the channel is closed.
7523    ///
7524    /// GetExtendedAttributes can be used with any of these names to retrieve
7525    /// the associated value.
7526    ///
7527    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
7528    pub fn r#list_extended_attributes(
7529        &self,
7530        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
7531    ) -> Result<(), fidl::Error> {
7532        self.client.send::<NodeListExtendedAttributesRequest>(
7533            (iterator,),
7534            0x4b61033de007fcd0,
7535            fidl::encoding::DynamicFlags::empty(),
7536        )
7537    }
7538
7539    /// Get the value associated with the given attribute `name` for this node.
7540    ///
7541    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
7542    /// particular structure is imposed on them.
7543    ///
7544    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
7545    pub fn r#get_extended_attribute(
7546        &self,
7547        mut name: &[u8],
7548        ___deadline: zx::MonotonicInstant,
7549    ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
7550        let _response = self.client.send_query::<
7551            NodeGetExtendedAttributeRequest,
7552            fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
7553        >(
7554            (name,),
7555            0x45ffa3ccfdeb76db,
7556            fidl::encoding::DynamicFlags::empty(),
7557            ___deadline,
7558        )?;
7559        Ok(_response.map(|x| x))
7560    }
7561
7562    /// Set the value for the given attribute `name` to `value` for this node.
7563    ///
7564    /// The attribute name may exist, in which case the attribute is updated.
7565    /// If the attribute doesn't exist, it is created. The name should have no
7566    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
7567    ///
7568    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
7569    pub fn r#set_extended_attribute(
7570        &self,
7571        mut name: &[u8],
7572        mut value: ExtendedAttributeValue,
7573        mut mode: SetExtendedAttributeMode,
7574        ___deadline: zx::MonotonicInstant,
7575    ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
7576        let _response = self.client.send_query::<
7577            NodeSetExtendedAttributeRequest,
7578            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7579        >(
7580            (name, &mut value, mode,),
7581            0x4a951362f681f23c,
7582            fidl::encoding::DynamicFlags::empty(),
7583            ___deadline,
7584        )?;
7585        Ok(_response.map(|x| x))
7586    }
7587
7588    /// Remove the specified extended attribute.
7589    ///
7590    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
7591    ///
7592    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
7593    pub fn r#remove_extended_attribute(
7594        &self,
7595        mut name: &[u8],
7596        ___deadline: zx::MonotonicInstant,
7597    ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
7598        let _response = self.client.send_query::<
7599            NodeRemoveExtendedAttributeRequest,
7600            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7601        >(
7602            (name,),
7603            0x7a0b9f3a9bf9032d,
7604            fidl::encoding::DynamicFlags::empty(),
7605            ___deadline,
7606        )?;
7607        Ok(_response.map(|x| x))
7608    }
7609
7610    /// Reads up to 'count' bytes at the seek offset.
7611    /// The seek offset is moved forward by the number of bytes read.
7612    ///
7613    /// ## Invariants
7614    ///
7615    /// * The returned `data.length` will never be greater than `count`.
7616    /// * If `data.length` is less than `count`, it means that the seek offset
7617    ///   has reached the end of file as part of this operation.
7618    /// * If `data.length` is zero while `count` is not, it means that the
7619    ///   seek offset is already at or beyond the end of file, and no data could
7620    ///   be read.
7621    /// * If `count` is zero, the server should perform all the checks ensuring
7622    ///   read access without actually read anything, and return an empty
7623    ///   `data` vector.
7624    ///
7625    /// This method requires the [`Rights.READ_BYTES`] right.
7626    ///
7627    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
7628    pub fn r#read(
7629        &self,
7630        mut count: u64,
7631        ___deadline: zx::MonotonicInstant,
7632    ) -> Result<ReadableReadResult, fidl::Error> {
7633        let _response = self.client.send_query::<
7634            ReadableReadRequest,
7635            fidl::encoding::ResultType<ReadableReadResponse, i32>,
7636        >(
7637            (count,),
7638            0x57e419a298c8ede,
7639            fidl::encoding::DynamicFlags::empty(),
7640            ___deadline,
7641        )?;
7642        Ok(_response.map(|x| x.data))
7643    }
7644
7645    /// Writes data at the seek offset.
7646    /// The seek offset is moved forward by the number of bytes written.
7647    /// If the file is in append mode, the seek offset is first set to the end
7648    /// of the file, followed by the write, in one atomic step.
7649    ///
7650    /// The file size may grow if the seek offset plus `data.length` is beyond
7651    /// the current end of file.
7652    ///
7653    /// + request `data` the byte buffer to write to the file.
7654    /// - response `actual_count` the number of bytes written.
7655    ///
7656    /// ## Invariants
7657    ///
7658    /// * The returned `actual_count` will never be greater than `data.length`.
7659    /// * If the server is unable to write all the data due to e.g. not enough
7660    ///   space, `actual_count` may be less than `data.length`.  If no bytes
7661    ///   could be written, an error is returned.
7662    /// * If `data.length` is zero, the server should perform all the checks
7663    ///   ensuring write access without mutating the file and return a
7664    ///   successful write of zero bytes.  The seek offset is still updated if
7665    ///   in append mode.
7666    ///
7667    /// This method requires the [`Rights.WRITE_BYTES`] right.
7668    pub fn r#write(
7669        &self,
7670        mut data: &[u8],
7671        ___deadline: zx::MonotonicInstant,
7672    ) -> Result<WritableWriteResult, fidl::Error> {
7673        let _response = self.client.send_query::<
7674            WritableWriteRequest,
7675            fidl::encoding::ResultType<WritableWriteResponse, i32>,
7676        >(
7677            (data,),
7678            0x6a31437832469f82,
7679            fidl::encoding::DynamicFlags::empty(),
7680            ___deadline,
7681        )?;
7682        Ok(_response.map(|x| x.actual_count))
7683    }
7684
7685    pub fn r#describe(&self, ___deadline: zx::MonotonicInstant) -> Result<FileInfo, fidl::Error> {
7686        let _response = self.client.send_query::<fidl::encoding::EmptyPayload, FileInfo>(
7687            (),
7688            0x68b5ac00c62906bc,
7689            fidl::encoding::DynamicFlags::empty(),
7690            ___deadline,
7691        )?;
7692        Ok(_response)
7693    }
7694
7695    /// Moves the offset at which the next invocation of [`Read`] or [`Write`]
7696    /// will occur. The seek offset is specific to each file connection.
7697    ///
7698    /// + request `origin` the reference point where `offset` will be based on.
7699    /// + request `offset` the number of bytes to seek.
7700    /// - response `offset_from_start` the adjusted seek offset, from the start
7701    ///   of the file.
7702    ///
7703    /// This method does not require any rights.
7704    pub fn r#seek(
7705        &self,
7706        mut origin: SeekOrigin,
7707        mut offset: i64,
7708        ___deadline: zx::MonotonicInstant,
7709    ) -> Result<FileSeekResult, fidl::Error> {
7710        let _response = self
7711            .client
7712            .send_query::<FileSeekRequest, fidl::encoding::ResultType<FileSeekResponse, i32>>(
7713                (origin, offset),
7714                0x78079168162c5207,
7715                fidl::encoding::DynamicFlags::empty(),
7716                ___deadline,
7717            )?;
7718        Ok(_response.map(|x| x.offset_from_start))
7719    }
7720
7721    /// Reads up to 'count' bytes at the provided offset.
7722    /// Does not affect the seek offset.
7723    ///
7724    /// ## Invariants
7725    ///
7726    /// * The returned `data.length` will never be greater than `count`.
7727    /// * If `data.length` is less than `count`, it means that `ReadAt` has hit
7728    ///   the end of file as part of this operation.
7729    /// * If `data.length` is zero while `count` is not, it means that `offset`
7730    ///   is at or past the end of file, and no data can be read.
7731    /// * If `count` is zero, the server should perform all the checks ensuring
7732    ///   read access without actually reading anything, and return an empty
7733    ///   `data` vector.
7734    ///
7735    /// This method requires the [`Rights.READ_BYTES`] right.
7736    ///
7737    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
7738    pub fn r#read_at(
7739        &self,
7740        mut count: u64,
7741        mut offset: u64,
7742        ___deadline: zx::MonotonicInstant,
7743    ) -> Result<FileReadAtResult, fidl::Error> {
7744        let _response = self
7745            .client
7746            .send_query::<FileReadAtRequest, fidl::encoding::ResultType<FileReadAtResponse, i32>>(
7747                (count, offset),
7748                0x1607a293a60d723e,
7749                fidl::encoding::DynamicFlags::empty(),
7750                ___deadline,
7751            )?;
7752        Ok(_response.map(|x| x.data))
7753    }
7754
7755    /// Writes data at the provided offset.
7756    /// Does not affect the seek offset.
7757    ///
7758    /// The file size may grow if `offset` plus `data.length` is past the
7759    /// current end of file.
7760    ///
7761    /// + request `data` the byte buffer to write to the file.
7762    /// + request `offset` the offset from start of the file to begin writing.
7763    /// - response `actual_count` the number of bytes written.
7764    ///
7765    /// ## Invariants
7766    ///
7767    /// * The returned `actual_count` will never be greater than `data.length`.
7768    /// * If the server is unable to write all the data due to e.g. not enough
7769    ///   space, `actual_count` may be less than `data.length`.  If no bytes
7770    ///   could be written, an error is returned.
7771    /// * If `data.length` is zero, the server should perform all the checks
7772    ///   ensuring write access without mutating the file, and will return a
7773    ///   successful write of zero bytes.
7774    ///
7775    /// This method requires the [`Rights.WRITE_BYTES`] right.
7776    pub fn r#write_at(
7777        &self,
7778        mut data: &[u8],
7779        mut offset: u64,
7780        ___deadline: zx::MonotonicInstant,
7781    ) -> Result<FileWriteAtResult, fidl::Error> {
7782        let _response = self
7783            .client
7784            .send_query::<FileWriteAtRequest, fidl::encoding::ResultType<FileWriteAtResponse, i32>>(
7785                (data, offset),
7786                0x793eefc0045e792b,
7787                fidl::encoding::DynamicFlags::empty(),
7788                ___deadline,
7789            )?;
7790        Ok(_response.map(|x| x.actual_count))
7791    }
7792
7793    /// Shrinks or grows the file size to 'length' bytes.
7794    ///
7795    /// If file size is reduced by this operation, the extra trailing data'
7796    /// is discarded.
7797    /// If file size is increased by this operation, the extended area appears
7798    /// as if it was zeroed.
7799    ///
7800    /// This method requires the [`Rights.WRITE_BYTES`] right.
7801    pub fn r#resize(
7802        &self,
7803        mut length: u64,
7804        ___deadline: zx::MonotonicInstant,
7805    ) -> Result<FileResizeResult, fidl::Error> {
7806        let _response = self.client.send_query::<
7807            FileResizeRequest,
7808            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
7809        >(
7810            (length,),
7811            0x2b80825f0535743a,
7812            fidl::encoding::DynamicFlags::empty(),
7813            ___deadline,
7814        )?;
7815        Ok(_response.map(|x| x))
7816    }
7817
7818    /// Acquires a [`zx.Handle:VMO`] representing this file, if there is one,
7819    /// with the requested access rights.
7820    ///
7821    /// Implementations are not required to implement files backed by VMOs so
7822    /// this request may fail. Additionally, implementations may only support
7823    /// a certain subset of the flags. Clients should be prepared with fallback
7824    /// behavior if this request fails.
7825    ///
7826    /// If a client specifies neither `PRIVATE_CLONE` nor `SHARED_BUFFER`, the
7827    /// implementation is free to choose the semantics of the returned VMO.
7828    ///
7829    /// + request `flags` a [`VmoFlags`] indicating the desired mode of access.
7830    /// - response `vmo` the requested [`zx.Handle:VMO`].
7831    /// * error a [`zx.Status`] value indicating the failure.
7832    ///
7833    /// This method requires the following rights:
7834    ///
7835    /// * [`Rights.READ_BYTES`] if `flags` includes [`VmoFlags.READ`].
7836    /// * [`Rights.WRITE_BYTES`] if `flags` includes [`VmoFlags.WRITE`].
7837    /// * [`Rights.EXECUTE`] if `flags` includes [`VmoFlags.EXECUTE`].
7838    pub fn r#get_backing_memory(
7839        &self,
7840        mut flags: VmoFlags,
7841        ___deadline: zx::MonotonicInstant,
7842    ) -> Result<FileGetBackingMemoryResult, fidl::Error> {
7843        let _response = self.client.send_query::<
7844            FileGetBackingMemoryRequest,
7845            fidl::encoding::ResultType<FileGetBackingMemoryResponse, i32>,
7846        >(
7847            (flags,),
7848            0xa6a9e654cbf62b,
7849            fidl::encoding::DynamicFlags::empty(),
7850            ___deadline,
7851        )?;
7852        Ok(_response.map(|x| x.vmo))
7853    }
7854
7855    /// Pre-allocate on-disk space for this file.
7856    pub fn r#allocate(
7857        &self,
7858        mut offset: u64,
7859        mut length: u64,
7860        mut mode: AllocateMode,
7861        ___deadline: zx::MonotonicInstant,
7862    ) -> Result<FileAllocateResult, fidl::Error> {
7863        let _response = self.client.send_query::<
7864            FileAllocateRequest,
7865            fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
7866        >(
7867            (offset, length, mode,),
7868            0x77fa0c330b57fd2e,
7869            fidl::encoding::DynamicFlags::FLEXIBLE,
7870            ___deadline,
7871        )?
7872        .into_result::<FileMarker>("allocate")?;
7873        Ok(_response.map(|x| x))
7874    }
7875
7876    /// Enables verification for the file (permanently) which involves computing a merkle tree for
7877    /// the file. Forces a flush prior to building the merkle tree to ensure cached data is
7878    /// captured. Future reads will be verified against the computed merkle tree and writes will be
7879    /// rejected. This method can take some time to complete as it depends on the size of the file.
7880    /// This method can be aborted by closing the connection that this method was issued on.
7881    ///
7882    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
7883    /// Returns `ZX_ERR_NOT_SUPPORTED` if the filesystem does not support verity.
7884    /// Returns `ZX_ERR_ALREADY_EXISTS` if the file was already fsverity-enabled.
7885    /// Also returns any error that might arise from reading the file, or from flushing the file,
7886    /// such as `ZX_ERR_IO`.
7887    pub fn r#enable_verity(
7888        &self,
7889        mut options: &VerificationOptions,
7890        ___deadline: zx::MonotonicInstant,
7891    ) -> Result<FileEnableVerityResult, fidl::Error> {
7892        let _response = self.client.send_query::<
7893            FileEnableVerityRequest,
7894            fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
7895        >(
7896            (options,),
7897            0x2c421ec3faaeb8bb,
7898            fidl::encoding::DynamicFlags::FLEXIBLE,
7899            ___deadline,
7900        )?
7901        .into_result::<FileMarker>("enable_verity")?;
7902        Ok(_response.map(|x| x))
7903    }
7904}
7905
7906#[cfg(target_os = "fuchsia")]
7907impl From<FileSynchronousProxy> for zx::Handle {
7908    fn from(value: FileSynchronousProxy) -> Self {
7909        value.into_channel().into()
7910    }
7911}
7912
7913#[cfg(target_os = "fuchsia")]
7914impl From<fidl::Channel> for FileSynchronousProxy {
7915    fn from(value: fidl::Channel) -> Self {
7916        Self::new(value)
7917    }
7918}
7919
7920#[derive(Debug, Clone)]
7921pub struct FileProxy {
7922    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
7923}
7924
7925impl fidl::endpoints::Proxy for FileProxy {
7926    type Protocol = FileMarker;
7927
7928    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
7929        Self::new(inner)
7930    }
7931
7932    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
7933        self.client.into_channel().map_err(|client| Self { client })
7934    }
7935
7936    fn as_channel(&self) -> &::fidl::AsyncChannel {
7937        self.client.as_channel()
7938    }
7939}
7940
7941impl FileProxy {
7942    /// Create a new Proxy for fuchsia.io/File.
7943    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
7944        let protocol_name = <FileMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
7945        Self { client: fidl::client::Client::new(channel, protocol_name) }
7946    }
7947
7948    /// Get a Stream of events from the remote end of the protocol.
7949    ///
7950    /// # Panics
7951    ///
7952    /// Panics if the event stream was already taken.
7953    pub fn take_event_stream(&self) -> FileEventStream {
7954        FileEventStream { event_receiver: self.client.take_event_receiver() }
7955    }
7956
7957    /// Acquires an advisory lock on the underlying file.
7958    ///
7959    /// The lock lasts until either this connection is closed or
7960    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
7961    /// explicitly.
7962    ///
7963    /// Advisory locks are purely advisory. They do not prevent actual read or
7964    /// write operations from occurring on the file, either through this
7965    /// connection or through other connections.
7966    ///
7967    /// This method requires the following rights:
7968    ///
7969    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
7970    /// * [`Rights.WRITE_BYTES`] if `request.type` is
7971    ///   [`AdvisoryLockType.WRITE`].
7972    ///
7973    /// # Errors
7974    ///
7975    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
7976    ///   example, another connection might hold a conflicting lock type.
7977    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
7978    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
7979    ///   to acquire the given type of lock.
7980    pub fn r#advisory_lock(
7981        &self,
7982        mut request: &AdvisoryLockRequest,
7983    ) -> fidl::client::QueryResponseFut<
7984        AdvisoryLockingAdvisoryLockResult,
7985        fidl::encoding::DefaultFuchsiaResourceDialect,
7986    > {
7987        FileProxyInterface::r#advisory_lock(self, request)
7988    }
7989
7990    /// Creates a link to this this object with name `dst` in the directory represented by
7991    /// `dst_parent_token`.
7992    ///
7993    /// `dst` must be a resolved object name. Including "/" in the string will return
7994    /// `ZX_ERR_INVALID_ARGS`.
7995    ///
7996    /// This method requires the maximal set of rights supported by the filesystem for this object.
7997    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
7998    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
7999    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
8000    /// `ZX_ERR_ACCESS_DENIED`.
8001    ///
8002    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
8003    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
8004    ///
8005    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
8006    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
8007    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
8008    ///
8009    /// This method does not have the same atomicity properties has the `Directory::Link` method,
8010    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
8011    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
8012    pub fn r#link_into(
8013        &self,
8014        mut dst_parent_token: fidl::Event,
8015        mut dst: &str,
8016    ) -> fidl::client::QueryResponseFut<
8017        LinkableLinkIntoResult,
8018        fidl::encoding::DefaultFuchsiaResourceDialect,
8019    > {
8020        FileProxyInterface::r#link_into(self, dst_parent_token, dst)
8021    }
8022
8023    pub fn r#clone(
8024        &self,
8025        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
8026    ) -> Result<(), fidl::Error> {
8027        FileProxyInterface::r#clone(self, request)
8028    }
8029
8030    /// Terminates the connection.
8031    ///
8032    /// After calling `Close`, the client must not send any other requests.
8033    ///
8034    /// Servers, after sending the status response, should close the connection
8035    /// regardless of status and without sending an epitaph.
8036    ///
8037    /// Closing the client end of the channel should be semantically equivalent
8038    /// to calling `Close` without knowing when the close has completed or its
8039    /// status.
8040    pub fn r#close(
8041        &self,
8042    ) -> fidl::client::QueryResponseFut<
8043        fidl_fuchsia_unknown::CloseableCloseResult,
8044        fidl::encoding::DefaultFuchsiaResourceDialect,
8045    > {
8046        FileProxyInterface::r#close(self)
8047    }
8048
8049    pub fn r#query(
8050        &self,
8051    ) -> fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>
8052    {
8053        FileProxyInterface::r#query(self)
8054    }
8055
8056    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
8057    pub fn r#deprecated_clone(
8058        &self,
8059        mut flags: OpenFlags,
8060        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
8061    ) -> Result<(), fidl::Error> {
8062        FileProxyInterface::r#deprecated_clone(self, flags, object)
8063    }
8064
8065    /// Acquires information about the node.
8066    ///
8067    /// This method does not require any rights.
8068    pub fn r#get_attr(
8069        &self,
8070    ) -> fidl::client::QueryResponseFut<
8071        (i32, NodeAttributes),
8072        fidl::encoding::DefaultFuchsiaResourceDialect,
8073    > {
8074        FileProxyInterface::r#get_attr(self)
8075    }
8076
8077    /// Updates information about the node.
8078    ///
8079    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
8080    ///
8081    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
8082    /// `ZX_ERR_BAD_HANDLE`.
8083    pub fn r#set_attr(
8084        &self,
8085        mut flags: NodeAttributeFlags,
8086        mut attributes: &NodeAttributes,
8087    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
8088        FileProxyInterface::r#set_attr(self, flags, attributes)
8089    }
8090
8091    /// [DEPRECATED - Use new GetFlags method instead.]
8092    pub fn r#deprecated_get_flags(
8093        &self,
8094    ) -> fidl::client::QueryResponseFut<
8095        (i32, OpenFlags),
8096        fidl::encoding::DefaultFuchsiaResourceDialect,
8097    > {
8098        FileProxyInterface::r#deprecated_get_flags(self)
8099    }
8100
8101    /// [DEPRECATED - Use new SetFlags method instead.]
8102    pub fn r#deprecated_set_flags(
8103        &self,
8104        mut flags: OpenFlags,
8105    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
8106        FileProxyInterface::r#deprecated_set_flags(self, flags)
8107    }
8108
8109    /// Queries the flags that apply to this node after it has been opened/created. This method does
8110    /// not require any rights.
8111    ///
8112    /// Note that the final set of flags that apply to the connection may differ from those
8113    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
8114    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
8115    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
8116    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
8117    pub fn r#get_flags(
8118        &self,
8119    ) -> fidl::client::QueryResponseFut<
8120        NodeGetFlagsResult,
8121        fidl::encoding::DefaultFuchsiaResourceDialect,
8122    > {
8123        FileProxyInterface::r#get_flags(self)
8124    }
8125
8126    /// Sets the flags that apply to this node after it has been opened. This method does not
8127    /// require any rights.
8128    ///
8129    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
8130    /// clear append mode.
8131    ///
8132    /// Errors:
8133    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
8134    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
8135    pub fn r#set_flags(
8136        &self,
8137        mut flags: Flags,
8138    ) -> fidl::client::QueryResponseFut<
8139        NodeSetFlagsResult,
8140        fidl::encoding::DefaultFuchsiaResourceDialect,
8141    > {
8142        FileProxyInterface::r#set_flags(self, flags)
8143    }
8144
8145    /// Query the filesystem for filesystem-specific information.
8146    pub fn r#query_filesystem(
8147        &self,
8148    ) -> fidl::client::QueryResponseFut<
8149        (i32, Option<Box<FilesystemInfo>>),
8150        fidl::encoding::DefaultFuchsiaResourceDialect,
8151    > {
8152        FileProxyInterface::r#query_filesystem(self)
8153    }
8154
8155    /// Acquires information about the connection.
8156    ///
8157    /// This method does not require any rights.
8158    pub fn r#get_connection_info(
8159        &self,
8160    ) -> fidl::client::QueryResponseFut<ConnectionInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
8161    {
8162        FileProxyInterface::r#get_connection_info(self)
8163    }
8164
8165    /// Acquires information about the node.
8166    ///
8167    /// The attributes of a node should be stable, independent of the
8168    /// specific protocol used to access it.
8169    ///
8170    /// If a particular attribute is not applicable or not supported,
8171    /// filesystems should leave the corresponding field absent.
8172    ///
8173    /// + `query` a bit-mask specifying which attributes to fetch. The server
8174    ///   should not return more than necessary.
8175    /// - `attributes` the returned attributes.
8176    ///
8177    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
8178    pub fn r#get_attributes(
8179        &self,
8180        mut query: NodeAttributesQuery,
8181    ) -> fidl::client::QueryResponseFut<
8182        NodeGetAttributesResult,
8183        fidl::encoding::DefaultFuchsiaResourceDialect,
8184    > {
8185        FileProxyInterface::r#get_attributes(self, query)
8186    }
8187
8188    /// Updates information about the node.
8189    ///
8190    /// + `attributes` the presence of a table field in `attributes` indicates
8191    /// the intent to update the corresponding attribute.
8192    ///
8193    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
8194    ///
8195    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
8196    pub fn r#update_attributes(
8197        &self,
8198        mut payload: &MutableNodeAttributes,
8199    ) -> fidl::client::QueryResponseFut<
8200        NodeUpdateAttributesResult,
8201        fidl::encoding::DefaultFuchsiaResourceDialect,
8202    > {
8203        FileProxyInterface::r#update_attributes(self, payload)
8204    }
8205
8206    /// Synchronizes updates to the node to the underlying media, if it exists.
8207    ///
8208    /// This method will return when the filesystem server has flushed the
8209    /// relevant updates to the underlying media, but does not guarantee the
8210    /// underlying media has persisted the information, nor that any information
8211    /// is committed to hardware. Clients may use `Sync` to ensure ordering
8212    /// between operations.
8213    ///
8214    /// This method does not require any rights.
8215    pub fn r#sync(
8216        &self,
8217    ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
8218    {
8219        FileProxyInterface::r#sync(self)
8220    }
8221
8222    /// Creates an iterator over all the extended attribute names associated
8223    /// with this node. If an error occurs it is returned as an epitaph on the
8224    /// iterator request channel, and then the channel is closed.
8225    ///
8226    /// GetExtendedAttributes can be used with any of these names to retrieve
8227    /// the associated value.
8228    ///
8229    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
8230    pub fn r#list_extended_attributes(
8231        &self,
8232        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
8233    ) -> Result<(), fidl::Error> {
8234        FileProxyInterface::r#list_extended_attributes(self, iterator)
8235    }
8236
8237    /// Get the value associated with the given attribute `name` for this node.
8238    ///
8239    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
8240    /// particular structure is imposed on them.
8241    ///
8242    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
8243    pub fn r#get_extended_attribute(
8244        &self,
8245        mut name: &[u8],
8246    ) -> fidl::client::QueryResponseFut<
8247        NodeGetExtendedAttributeResult,
8248        fidl::encoding::DefaultFuchsiaResourceDialect,
8249    > {
8250        FileProxyInterface::r#get_extended_attribute(self, name)
8251    }
8252
8253    /// Set the value for the given attribute `name` to `value` for this node.
8254    ///
8255    /// The attribute name may exist, in which case the attribute is updated.
8256    /// If the attribute doesn't exist, it is created. The name should have no
8257    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
8258    ///
8259    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
8260    pub fn r#set_extended_attribute(
8261        &self,
8262        mut name: &[u8],
8263        mut value: ExtendedAttributeValue,
8264        mut mode: SetExtendedAttributeMode,
8265    ) -> fidl::client::QueryResponseFut<
8266        NodeSetExtendedAttributeResult,
8267        fidl::encoding::DefaultFuchsiaResourceDialect,
8268    > {
8269        FileProxyInterface::r#set_extended_attribute(self, name, value, mode)
8270    }
8271
8272    /// Remove the specified extended attribute.
8273    ///
8274    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
8275    ///
8276    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
8277    pub fn r#remove_extended_attribute(
8278        &self,
8279        mut name: &[u8],
8280    ) -> fidl::client::QueryResponseFut<
8281        NodeRemoveExtendedAttributeResult,
8282        fidl::encoding::DefaultFuchsiaResourceDialect,
8283    > {
8284        FileProxyInterface::r#remove_extended_attribute(self, name)
8285    }
8286
8287    /// Reads up to 'count' bytes at the seek offset.
8288    /// The seek offset is moved forward by the number of bytes read.
8289    ///
8290    /// ## Invariants
8291    ///
8292    /// * The returned `data.length` will never be greater than `count`.
8293    /// * If `data.length` is less than `count`, it means that the seek offset
8294    ///   has reached the end of file as part of this operation.
8295    /// * If `data.length` is zero while `count` is not, it means that the
8296    ///   seek offset is already at or beyond the end of file, and no data could
8297    ///   be read.
8298    /// * If `count` is zero, the server should perform all the checks ensuring
8299    ///   read access without actually read anything, and return an empty
8300    ///   `data` vector.
8301    ///
8302    /// This method requires the [`Rights.READ_BYTES`] right.
8303    ///
8304    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
8305    pub fn r#read(
8306        &self,
8307        mut count: u64,
8308    ) -> fidl::client::QueryResponseFut<
8309        ReadableReadResult,
8310        fidl::encoding::DefaultFuchsiaResourceDialect,
8311    > {
8312        FileProxyInterface::r#read(self, count)
8313    }
8314
8315    /// Writes data at the seek offset.
8316    /// The seek offset is moved forward by the number of bytes written.
8317    /// If the file is in append mode, the seek offset is first set to the end
8318    /// of the file, followed by the write, in one atomic step.
8319    ///
8320    /// The file size may grow if the seek offset plus `data.length` is beyond
8321    /// the current end of file.
8322    ///
8323    /// + request `data` the byte buffer to write to the file.
8324    /// - response `actual_count` the number of bytes written.
8325    ///
8326    /// ## Invariants
8327    ///
8328    /// * The returned `actual_count` will never be greater than `data.length`.
8329    /// * If the server is unable to write all the data due to e.g. not enough
8330    ///   space, `actual_count` may be less than `data.length`.  If no bytes
8331    ///   could be written, an error is returned.
8332    /// * If `data.length` is zero, the server should perform all the checks
8333    ///   ensuring write access without mutating the file and return a
8334    ///   successful write of zero bytes.  The seek offset is still updated if
8335    ///   in append mode.
8336    ///
8337    /// This method requires the [`Rights.WRITE_BYTES`] right.
8338    pub fn r#write(
8339        &self,
8340        mut data: &[u8],
8341    ) -> fidl::client::QueryResponseFut<
8342        WritableWriteResult,
8343        fidl::encoding::DefaultFuchsiaResourceDialect,
8344    > {
8345        FileProxyInterface::r#write(self, data)
8346    }
8347
8348    pub fn r#describe(
8349        &self,
8350    ) -> fidl::client::QueryResponseFut<FileInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
8351    {
8352        FileProxyInterface::r#describe(self)
8353    }
8354
8355    /// Moves the offset at which the next invocation of [`Read`] or [`Write`]
8356    /// will occur. The seek offset is specific to each file connection.
8357    ///
8358    /// + request `origin` the reference point where `offset` will be based on.
8359    /// + request `offset` the number of bytes to seek.
8360    /// - response `offset_from_start` the adjusted seek offset, from the start
8361    ///   of the file.
8362    ///
8363    /// This method does not require any rights.
8364    pub fn r#seek(
8365        &self,
8366        mut origin: SeekOrigin,
8367        mut offset: i64,
8368    ) -> fidl::client::QueryResponseFut<FileSeekResult, fidl::encoding::DefaultFuchsiaResourceDialect>
8369    {
8370        FileProxyInterface::r#seek(self, origin, offset)
8371    }
8372
8373    /// Reads up to 'count' bytes at the provided offset.
8374    /// Does not affect the seek offset.
8375    ///
8376    /// ## Invariants
8377    ///
8378    /// * The returned `data.length` will never be greater than `count`.
8379    /// * If `data.length` is less than `count`, it means that `ReadAt` has hit
8380    ///   the end of file as part of this operation.
8381    /// * If `data.length` is zero while `count` is not, it means that `offset`
8382    ///   is at or past the end of file, and no data can be read.
8383    /// * If `count` is zero, the server should perform all the checks ensuring
8384    ///   read access without actually reading anything, and return an empty
8385    ///   `data` vector.
8386    ///
8387    /// This method requires the [`Rights.READ_BYTES`] right.
8388    ///
8389    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
8390    pub fn r#read_at(
8391        &self,
8392        mut count: u64,
8393        mut offset: u64,
8394    ) -> fidl::client::QueryResponseFut<
8395        FileReadAtResult,
8396        fidl::encoding::DefaultFuchsiaResourceDialect,
8397    > {
8398        FileProxyInterface::r#read_at(self, count, offset)
8399    }
8400
8401    /// Writes data at the provided offset.
8402    /// Does not affect the seek offset.
8403    ///
8404    /// The file size may grow if `offset` plus `data.length` is past the
8405    /// current end of file.
8406    ///
8407    /// + request `data` the byte buffer to write to the file.
8408    /// + request `offset` the offset from start of the file to begin writing.
8409    /// - response `actual_count` the number of bytes written.
8410    ///
8411    /// ## Invariants
8412    ///
8413    /// * The returned `actual_count` will never be greater than `data.length`.
8414    /// * If the server is unable to write all the data due to e.g. not enough
8415    ///   space, `actual_count` may be less than `data.length`.  If no bytes
8416    ///   could be written, an error is returned.
8417    /// * If `data.length` is zero, the server should perform all the checks
8418    ///   ensuring write access without mutating the file, and will return a
8419    ///   successful write of zero bytes.
8420    ///
8421    /// This method requires the [`Rights.WRITE_BYTES`] right.
8422    pub fn r#write_at(
8423        &self,
8424        mut data: &[u8],
8425        mut offset: u64,
8426    ) -> fidl::client::QueryResponseFut<
8427        FileWriteAtResult,
8428        fidl::encoding::DefaultFuchsiaResourceDialect,
8429    > {
8430        FileProxyInterface::r#write_at(self, data, offset)
8431    }
8432
8433    /// Shrinks or grows the file size to 'length' bytes.
8434    ///
8435    /// If file size is reduced by this operation, the extra trailing data'
8436    /// is discarded.
8437    /// If file size is increased by this operation, the extended area appears
8438    /// as if it was zeroed.
8439    ///
8440    /// This method requires the [`Rights.WRITE_BYTES`] right.
8441    pub fn r#resize(
8442        &self,
8443        mut length: u64,
8444    ) -> fidl::client::QueryResponseFut<
8445        FileResizeResult,
8446        fidl::encoding::DefaultFuchsiaResourceDialect,
8447    > {
8448        FileProxyInterface::r#resize(self, length)
8449    }
8450
8451    /// Acquires a [`zx.Handle:VMO`] representing this file, if there is one,
8452    /// with the requested access rights.
8453    ///
8454    /// Implementations are not required to implement files backed by VMOs so
8455    /// this request may fail. Additionally, implementations may only support
8456    /// a certain subset of the flags. Clients should be prepared with fallback
8457    /// behavior if this request fails.
8458    ///
8459    /// If a client specifies neither `PRIVATE_CLONE` nor `SHARED_BUFFER`, the
8460    /// implementation is free to choose the semantics of the returned VMO.
8461    ///
8462    /// + request `flags` a [`VmoFlags`] indicating the desired mode of access.
8463    /// - response `vmo` the requested [`zx.Handle:VMO`].
8464    /// * error a [`zx.Status`] value indicating the failure.
8465    ///
8466    /// This method requires the following rights:
8467    ///
8468    /// * [`Rights.READ_BYTES`] if `flags` includes [`VmoFlags.READ`].
8469    /// * [`Rights.WRITE_BYTES`] if `flags` includes [`VmoFlags.WRITE`].
8470    /// * [`Rights.EXECUTE`] if `flags` includes [`VmoFlags.EXECUTE`].
8471    pub fn r#get_backing_memory(
8472        &self,
8473        mut flags: VmoFlags,
8474    ) -> fidl::client::QueryResponseFut<
8475        FileGetBackingMemoryResult,
8476        fidl::encoding::DefaultFuchsiaResourceDialect,
8477    > {
8478        FileProxyInterface::r#get_backing_memory(self, flags)
8479    }
8480
8481    /// Pre-allocate on-disk space for this file.
8482    pub fn r#allocate(
8483        &self,
8484        mut offset: u64,
8485        mut length: u64,
8486        mut mode: AllocateMode,
8487    ) -> fidl::client::QueryResponseFut<
8488        FileAllocateResult,
8489        fidl::encoding::DefaultFuchsiaResourceDialect,
8490    > {
8491        FileProxyInterface::r#allocate(self, offset, length, mode)
8492    }
8493
8494    /// Enables verification for the file (permanently) which involves computing a merkle tree for
8495    /// the file. Forces a flush prior to building the merkle tree to ensure cached data is
8496    /// captured. Future reads will be verified against the computed merkle tree and writes will be
8497    /// rejected. This method can take some time to complete as it depends on the size of the file.
8498    /// This method can be aborted by closing the connection that this method was issued on.
8499    ///
8500    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
8501    /// Returns `ZX_ERR_NOT_SUPPORTED` if the filesystem does not support verity.
8502    /// Returns `ZX_ERR_ALREADY_EXISTS` if the file was already fsverity-enabled.
8503    /// Also returns any error that might arise from reading the file, or from flushing the file,
8504    /// such as `ZX_ERR_IO`.
8505    pub fn r#enable_verity(
8506        &self,
8507        mut options: &VerificationOptions,
8508    ) -> fidl::client::QueryResponseFut<
8509        FileEnableVerityResult,
8510        fidl::encoding::DefaultFuchsiaResourceDialect,
8511    > {
8512        FileProxyInterface::r#enable_verity(self, options)
8513    }
8514}
8515
8516impl FileProxyInterface for FileProxy {
8517    type AdvisoryLockResponseFut = fidl::client::QueryResponseFut<
8518        AdvisoryLockingAdvisoryLockResult,
8519        fidl::encoding::DefaultFuchsiaResourceDialect,
8520    >;
8521    fn r#advisory_lock(&self, mut request: &AdvisoryLockRequest) -> Self::AdvisoryLockResponseFut {
8522        fn _decode(
8523            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8524        ) -> Result<AdvisoryLockingAdvisoryLockResult, fidl::Error> {
8525            let _response = fidl::client::decode_transaction_body::<
8526                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8527                fidl::encoding::DefaultFuchsiaResourceDialect,
8528                0x6ee9c0ad53ec87aa,
8529            >(_buf?)?;
8530            Ok(_response.map(|x| x))
8531        }
8532        self.client.send_query_and_decode::<
8533            AdvisoryLockingAdvisoryLockRequest,
8534            AdvisoryLockingAdvisoryLockResult,
8535        >(
8536            (request,),
8537            0x6ee9c0ad53ec87aa,
8538            fidl::encoding::DynamicFlags::empty(),
8539            _decode,
8540        )
8541    }
8542
8543    type LinkIntoResponseFut = fidl::client::QueryResponseFut<
8544        LinkableLinkIntoResult,
8545        fidl::encoding::DefaultFuchsiaResourceDialect,
8546    >;
8547    fn r#link_into(
8548        &self,
8549        mut dst_parent_token: fidl::Event,
8550        mut dst: &str,
8551    ) -> Self::LinkIntoResponseFut {
8552        fn _decode(
8553            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8554        ) -> Result<LinkableLinkIntoResult, fidl::Error> {
8555            let _response = fidl::client::decode_transaction_body::<
8556                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8557                fidl::encoding::DefaultFuchsiaResourceDialect,
8558                0x54f3949246a03e74,
8559            >(_buf?)?;
8560            Ok(_response.map(|x| x))
8561        }
8562        self.client.send_query_and_decode::<LinkableLinkIntoRequest, LinkableLinkIntoResult>(
8563            (dst_parent_token, dst),
8564            0x54f3949246a03e74,
8565            fidl::encoding::DynamicFlags::empty(),
8566            _decode,
8567        )
8568    }
8569
8570    fn r#clone(
8571        &self,
8572        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
8573    ) -> Result<(), fidl::Error> {
8574        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
8575            (request,),
8576            0x20d8a7aba2168a79,
8577            fidl::encoding::DynamicFlags::empty(),
8578        )
8579    }
8580
8581    type CloseResponseFut = fidl::client::QueryResponseFut<
8582        fidl_fuchsia_unknown::CloseableCloseResult,
8583        fidl::encoding::DefaultFuchsiaResourceDialect,
8584    >;
8585    fn r#close(&self) -> Self::CloseResponseFut {
8586        fn _decode(
8587            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8588        ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
8589            let _response = fidl::client::decode_transaction_body::<
8590                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8591                fidl::encoding::DefaultFuchsiaResourceDialect,
8592                0x5ac5d459ad7f657e,
8593            >(_buf?)?;
8594            Ok(_response.map(|x| x))
8595        }
8596        self.client.send_query_and_decode::<
8597            fidl::encoding::EmptyPayload,
8598            fidl_fuchsia_unknown::CloseableCloseResult,
8599        >(
8600            (),
8601            0x5ac5d459ad7f657e,
8602            fidl::encoding::DynamicFlags::empty(),
8603            _decode,
8604        )
8605    }
8606
8607    type QueryResponseFut =
8608        fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>;
8609    fn r#query(&self) -> Self::QueryResponseFut {
8610        fn _decode(
8611            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8612        ) -> Result<Vec<u8>, fidl::Error> {
8613            let _response = fidl::client::decode_transaction_body::<
8614                fidl_fuchsia_unknown::QueryableQueryResponse,
8615                fidl::encoding::DefaultFuchsiaResourceDialect,
8616                0x2658edee9decfc06,
8617            >(_buf?)?;
8618            Ok(_response.protocol)
8619        }
8620        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<u8>>(
8621            (),
8622            0x2658edee9decfc06,
8623            fidl::encoding::DynamicFlags::empty(),
8624            _decode,
8625        )
8626    }
8627
8628    fn r#deprecated_clone(
8629        &self,
8630        mut flags: OpenFlags,
8631        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
8632    ) -> Result<(), fidl::Error> {
8633        self.client.send::<NodeDeprecatedCloneRequest>(
8634            (flags, object),
8635            0x5a61678f293ce16f,
8636            fidl::encoding::DynamicFlags::FLEXIBLE,
8637        )
8638    }
8639
8640    type GetAttrResponseFut = fidl::client::QueryResponseFut<
8641        (i32, NodeAttributes),
8642        fidl::encoding::DefaultFuchsiaResourceDialect,
8643    >;
8644    fn r#get_attr(&self) -> Self::GetAttrResponseFut {
8645        fn _decode(
8646            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8647        ) -> Result<(i32, NodeAttributes), fidl::Error> {
8648            let _response = fidl::client::decode_transaction_body::<
8649                NodeGetAttrResponse,
8650                fidl::encoding::DefaultFuchsiaResourceDialect,
8651                0x78985e216314dafd,
8652            >(_buf?)?;
8653            Ok((_response.s, _response.attributes))
8654        }
8655        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, NodeAttributes)>(
8656            (),
8657            0x78985e216314dafd,
8658            fidl::encoding::DynamicFlags::empty(),
8659            _decode,
8660        )
8661    }
8662
8663    type SetAttrResponseFut =
8664        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
8665    fn r#set_attr(
8666        &self,
8667        mut flags: NodeAttributeFlags,
8668        mut attributes: &NodeAttributes,
8669    ) -> Self::SetAttrResponseFut {
8670        fn _decode(
8671            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8672        ) -> Result<i32, fidl::Error> {
8673            let _response = fidl::client::decode_transaction_body::<
8674                NodeSetAttrResponse,
8675                fidl::encoding::DefaultFuchsiaResourceDialect,
8676                0x4186c0f40d938f46,
8677            >(_buf?)?;
8678            Ok(_response.s)
8679        }
8680        self.client.send_query_and_decode::<NodeSetAttrRequest, i32>(
8681            (flags, attributes),
8682            0x4186c0f40d938f46,
8683            fidl::encoding::DynamicFlags::empty(),
8684            _decode,
8685        )
8686    }
8687
8688    type DeprecatedGetFlagsResponseFut = fidl::client::QueryResponseFut<
8689        (i32, OpenFlags),
8690        fidl::encoding::DefaultFuchsiaResourceDialect,
8691    >;
8692    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut {
8693        fn _decode(
8694            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8695        ) -> Result<(i32, OpenFlags), fidl::Error> {
8696            let _response = fidl::client::decode_transaction_body::<
8697                NodeDeprecatedGetFlagsResponse,
8698                fidl::encoding::DefaultFuchsiaResourceDialect,
8699                0x5b88fffb8eda3aa1,
8700            >(_buf?)?;
8701            Ok((_response.s, _response.flags))
8702        }
8703        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, OpenFlags)>(
8704            (),
8705            0x5b88fffb8eda3aa1,
8706            fidl::encoding::DynamicFlags::empty(),
8707            _decode,
8708        )
8709    }
8710
8711    type DeprecatedSetFlagsResponseFut =
8712        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
8713    fn r#deprecated_set_flags(&self, mut flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut {
8714        fn _decode(
8715            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8716        ) -> Result<i32, fidl::Error> {
8717            let _response = fidl::client::decode_transaction_body::<
8718                NodeDeprecatedSetFlagsResponse,
8719                fidl::encoding::DefaultFuchsiaResourceDialect,
8720                0x5295b76c71fde733,
8721            >(_buf?)?;
8722            Ok(_response.s)
8723        }
8724        self.client.send_query_and_decode::<NodeDeprecatedSetFlagsRequest, i32>(
8725            (flags,),
8726            0x5295b76c71fde733,
8727            fidl::encoding::DynamicFlags::empty(),
8728            _decode,
8729        )
8730    }
8731
8732    type GetFlagsResponseFut = fidl::client::QueryResponseFut<
8733        NodeGetFlagsResult,
8734        fidl::encoding::DefaultFuchsiaResourceDialect,
8735    >;
8736    fn r#get_flags(&self) -> Self::GetFlagsResponseFut {
8737        fn _decode(
8738            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8739        ) -> Result<NodeGetFlagsResult, fidl::Error> {
8740            let _response = fidl::client::decode_transaction_body::<
8741                fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
8742                fidl::encoding::DefaultFuchsiaResourceDialect,
8743                0x176eb318f64ec23,
8744            >(_buf?)?
8745            .into_result::<FileMarker>("get_flags")?;
8746            Ok(_response.map(|x| x.flags))
8747        }
8748        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeGetFlagsResult>(
8749            (),
8750            0x176eb318f64ec23,
8751            fidl::encoding::DynamicFlags::FLEXIBLE,
8752            _decode,
8753        )
8754    }
8755
8756    type SetFlagsResponseFut = fidl::client::QueryResponseFut<
8757        NodeSetFlagsResult,
8758        fidl::encoding::DefaultFuchsiaResourceDialect,
8759    >;
8760    fn r#set_flags(&self, mut flags: Flags) -> Self::SetFlagsResponseFut {
8761        fn _decode(
8762            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8763        ) -> Result<NodeSetFlagsResult, fidl::Error> {
8764            let _response = fidl::client::decode_transaction_body::<
8765                fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
8766                fidl::encoding::DefaultFuchsiaResourceDialect,
8767                0x55a8028685791ea8,
8768            >(_buf?)?
8769            .into_result::<FileMarker>("set_flags")?;
8770            Ok(_response.map(|x| x))
8771        }
8772        self.client.send_query_and_decode::<NodeSetFlagsRequest, NodeSetFlagsResult>(
8773            (flags,),
8774            0x55a8028685791ea8,
8775            fidl::encoding::DynamicFlags::FLEXIBLE,
8776            _decode,
8777        )
8778    }
8779
8780    type QueryFilesystemResponseFut = fidl::client::QueryResponseFut<
8781        (i32, Option<Box<FilesystemInfo>>),
8782        fidl::encoding::DefaultFuchsiaResourceDialect,
8783    >;
8784    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut {
8785        fn _decode(
8786            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8787        ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
8788            let _response = fidl::client::decode_transaction_body::<
8789                NodeQueryFilesystemResponse,
8790                fidl::encoding::DefaultFuchsiaResourceDialect,
8791                0x6f344a1c6b0a0610,
8792            >(_buf?)?;
8793            Ok((_response.s, _response.info))
8794        }
8795        self.client.send_query_and_decode::<
8796            fidl::encoding::EmptyPayload,
8797            (i32, Option<Box<FilesystemInfo>>),
8798        >(
8799            (),
8800            0x6f344a1c6b0a0610,
8801            fidl::encoding::DynamicFlags::empty(),
8802            _decode,
8803        )
8804    }
8805
8806    type GetConnectionInfoResponseFut = fidl::client::QueryResponseFut<
8807        ConnectionInfo,
8808        fidl::encoding::DefaultFuchsiaResourceDialect,
8809    >;
8810    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut {
8811        fn _decode(
8812            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8813        ) -> Result<ConnectionInfo, fidl::Error> {
8814            let _response = fidl::client::decode_transaction_body::<
8815                ConnectionInfo,
8816                fidl::encoding::DefaultFuchsiaResourceDialect,
8817                0x584c377c7c0a6d0b,
8818            >(_buf?)?;
8819            Ok(_response)
8820        }
8821        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ConnectionInfo>(
8822            (),
8823            0x584c377c7c0a6d0b,
8824            fidl::encoding::DynamicFlags::empty(),
8825            _decode,
8826        )
8827    }
8828
8829    type GetAttributesResponseFut = fidl::client::QueryResponseFut<
8830        NodeGetAttributesResult,
8831        fidl::encoding::DefaultFuchsiaResourceDialect,
8832    >;
8833    fn r#get_attributes(&self, mut query: NodeAttributesQuery) -> Self::GetAttributesResponseFut {
8834        fn _decode(
8835            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8836        ) -> Result<NodeGetAttributesResult, fidl::Error> {
8837            let _response = fidl::client::decode_transaction_body::<
8838                fidl::encoding::ResultType<NodeAttributes2, i32>,
8839                fidl::encoding::DefaultFuchsiaResourceDialect,
8840                0x3d4396a638ea053b,
8841            >(_buf?)?;
8842            Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
8843        }
8844        self.client.send_query_and_decode::<NodeGetAttributesRequest, NodeGetAttributesResult>(
8845            (query,),
8846            0x3d4396a638ea053b,
8847            fidl::encoding::DynamicFlags::empty(),
8848            _decode,
8849        )
8850    }
8851
8852    type UpdateAttributesResponseFut = fidl::client::QueryResponseFut<
8853        NodeUpdateAttributesResult,
8854        fidl::encoding::DefaultFuchsiaResourceDialect,
8855    >;
8856    fn r#update_attributes(
8857        &self,
8858        mut payload: &MutableNodeAttributes,
8859    ) -> Self::UpdateAttributesResponseFut {
8860        fn _decode(
8861            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8862        ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
8863            let _response = fidl::client::decode_transaction_body::<
8864                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8865                fidl::encoding::DefaultFuchsiaResourceDialect,
8866                0x3308c1da5a89bf08,
8867            >(_buf?)?;
8868            Ok(_response.map(|x| x))
8869        }
8870        self.client.send_query_and_decode::<MutableNodeAttributes, NodeUpdateAttributesResult>(
8871            payload,
8872            0x3308c1da5a89bf08,
8873            fidl::encoding::DynamicFlags::empty(),
8874            _decode,
8875        )
8876    }
8877
8878    type SyncResponseFut = fidl::client::QueryResponseFut<
8879        NodeSyncResult,
8880        fidl::encoding::DefaultFuchsiaResourceDialect,
8881    >;
8882    fn r#sync(&self) -> Self::SyncResponseFut {
8883        fn _decode(
8884            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8885        ) -> Result<NodeSyncResult, fidl::Error> {
8886            let _response = fidl::client::decode_transaction_body::<
8887                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8888                fidl::encoding::DefaultFuchsiaResourceDialect,
8889                0x2c5c27ca0ab5dc49,
8890            >(_buf?)?;
8891            Ok(_response.map(|x| x))
8892        }
8893        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeSyncResult>(
8894            (),
8895            0x2c5c27ca0ab5dc49,
8896            fidl::encoding::DynamicFlags::empty(),
8897            _decode,
8898        )
8899    }
8900
8901    fn r#list_extended_attributes(
8902        &self,
8903        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
8904    ) -> Result<(), fidl::Error> {
8905        self.client.send::<NodeListExtendedAttributesRequest>(
8906            (iterator,),
8907            0x4b61033de007fcd0,
8908            fidl::encoding::DynamicFlags::empty(),
8909        )
8910    }
8911
8912    type GetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
8913        NodeGetExtendedAttributeResult,
8914        fidl::encoding::DefaultFuchsiaResourceDialect,
8915    >;
8916    fn r#get_extended_attribute(&self, mut name: &[u8]) -> Self::GetExtendedAttributeResponseFut {
8917        fn _decode(
8918            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8919        ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
8920            let _response = fidl::client::decode_transaction_body::<
8921                fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
8922                fidl::encoding::DefaultFuchsiaResourceDialect,
8923                0x45ffa3ccfdeb76db,
8924            >(_buf?)?;
8925            Ok(_response.map(|x| x))
8926        }
8927        self.client.send_query_and_decode::<
8928            NodeGetExtendedAttributeRequest,
8929            NodeGetExtendedAttributeResult,
8930        >(
8931            (name,),
8932            0x45ffa3ccfdeb76db,
8933            fidl::encoding::DynamicFlags::empty(),
8934            _decode,
8935        )
8936    }
8937
8938    type SetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
8939        NodeSetExtendedAttributeResult,
8940        fidl::encoding::DefaultFuchsiaResourceDialect,
8941    >;
8942    fn r#set_extended_attribute(
8943        &self,
8944        mut name: &[u8],
8945        mut value: ExtendedAttributeValue,
8946        mut mode: SetExtendedAttributeMode,
8947    ) -> Self::SetExtendedAttributeResponseFut {
8948        fn _decode(
8949            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8950        ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
8951            let _response = fidl::client::decode_transaction_body::<
8952                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8953                fidl::encoding::DefaultFuchsiaResourceDialect,
8954                0x4a951362f681f23c,
8955            >(_buf?)?;
8956            Ok(_response.map(|x| x))
8957        }
8958        self.client.send_query_and_decode::<
8959            NodeSetExtendedAttributeRequest,
8960            NodeSetExtendedAttributeResult,
8961        >(
8962            (name, &mut value, mode,),
8963            0x4a951362f681f23c,
8964            fidl::encoding::DynamicFlags::empty(),
8965            _decode,
8966        )
8967    }
8968
8969    type RemoveExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
8970        NodeRemoveExtendedAttributeResult,
8971        fidl::encoding::DefaultFuchsiaResourceDialect,
8972    >;
8973    fn r#remove_extended_attribute(
8974        &self,
8975        mut name: &[u8],
8976    ) -> Self::RemoveExtendedAttributeResponseFut {
8977        fn _decode(
8978            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8979        ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
8980            let _response = fidl::client::decode_transaction_body::<
8981                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
8982                fidl::encoding::DefaultFuchsiaResourceDialect,
8983                0x7a0b9f3a9bf9032d,
8984            >(_buf?)?;
8985            Ok(_response.map(|x| x))
8986        }
8987        self.client.send_query_and_decode::<
8988            NodeRemoveExtendedAttributeRequest,
8989            NodeRemoveExtendedAttributeResult,
8990        >(
8991            (name,),
8992            0x7a0b9f3a9bf9032d,
8993            fidl::encoding::DynamicFlags::empty(),
8994            _decode,
8995        )
8996    }
8997
8998    type ReadResponseFut = fidl::client::QueryResponseFut<
8999        ReadableReadResult,
9000        fidl::encoding::DefaultFuchsiaResourceDialect,
9001    >;
9002    fn r#read(&self, mut count: u64) -> Self::ReadResponseFut {
9003        fn _decode(
9004            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9005        ) -> Result<ReadableReadResult, fidl::Error> {
9006            let _response = fidl::client::decode_transaction_body::<
9007                fidl::encoding::ResultType<ReadableReadResponse, i32>,
9008                fidl::encoding::DefaultFuchsiaResourceDialect,
9009                0x57e419a298c8ede,
9010            >(_buf?)?;
9011            Ok(_response.map(|x| x.data))
9012        }
9013        self.client.send_query_and_decode::<ReadableReadRequest, ReadableReadResult>(
9014            (count,),
9015            0x57e419a298c8ede,
9016            fidl::encoding::DynamicFlags::empty(),
9017            _decode,
9018        )
9019    }
9020
9021    type WriteResponseFut = fidl::client::QueryResponseFut<
9022        WritableWriteResult,
9023        fidl::encoding::DefaultFuchsiaResourceDialect,
9024    >;
9025    fn r#write(&self, mut data: &[u8]) -> Self::WriteResponseFut {
9026        fn _decode(
9027            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9028        ) -> Result<WritableWriteResult, fidl::Error> {
9029            let _response = fidl::client::decode_transaction_body::<
9030                fidl::encoding::ResultType<WritableWriteResponse, i32>,
9031                fidl::encoding::DefaultFuchsiaResourceDialect,
9032                0x6a31437832469f82,
9033            >(_buf?)?;
9034            Ok(_response.map(|x| x.actual_count))
9035        }
9036        self.client.send_query_and_decode::<WritableWriteRequest, WritableWriteResult>(
9037            (data,),
9038            0x6a31437832469f82,
9039            fidl::encoding::DynamicFlags::empty(),
9040            _decode,
9041        )
9042    }
9043
9044    type DescribeResponseFut =
9045        fidl::client::QueryResponseFut<FileInfo, fidl::encoding::DefaultFuchsiaResourceDialect>;
9046    fn r#describe(&self) -> Self::DescribeResponseFut {
9047        fn _decode(
9048            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9049        ) -> Result<FileInfo, fidl::Error> {
9050            let _response = fidl::client::decode_transaction_body::<
9051                FileInfo,
9052                fidl::encoding::DefaultFuchsiaResourceDialect,
9053                0x68b5ac00c62906bc,
9054            >(_buf?)?;
9055            Ok(_response)
9056        }
9057        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, FileInfo>(
9058            (),
9059            0x68b5ac00c62906bc,
9060            fidl::encoding::DynamicFlags::empty(),
9061            _decode,
9062        )
9063    }
9064
9065    type SeekResponseFut = fidl::client::QueryResponseFut<
9066        FileSeekResult,
9067        fidl::encoding::DefaultFuchsiaResourceDialect,
9068    >;
9069    fn r#seek(&self, mut origin: SeekOrigin, mut offset: i64) -> Self::SeekResponseFut {
9070        fn _decode(
9071            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9072        ) -> Result<FileSeekResult, fidl::Error> {
9073            let _response = fidl::client::decode_transaction_body::<
9074                fidl::encoding::ResultType<FileSeekResponse, i32>,
9075                fidl::encoding::DefaultFuchsiaResourceDialect,
9076                0x78079168162c5207,
9077            >(_buf?)?;
9078            Ok(_response.map(|x| x.offset_from_start))
9079        }
9080        self.client.send_query_and_decode::<FileSeekRequest, FileSeekResult>(
9081            (origin, offset),
9082            0x78079168162c5207,
9083            fidl::encoding::DynamicFlags::empty(),
9084            _decode,
9085        )
9086    }
9087
9088    type ReadAtResponseFut = fidl::client::QueryResponseFut<
9089        FileReadAtResult,
9090        fidl::encoding::DefaultFuchsiaResourceDialect,
9091    >;
9092    fn r#read_at(&self, mut count: u64, mut offset: u64) -> Self::ReadAtResponseFut {
9093        fn _decode(
9094            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9095        ) -> Result<FileReadAtResult, fidl::Error> {
9096            let _response = fidl::client::decode_transaction_body::<
9097                fidl::encoding::ResultType<FileReadAtResponse, i32>,
9098                fidl::encoding::DefaultFuchsiaResourceDialect,
9099                0x1607a293a60d723e,
9100            >(_buf?)?;
9101            Ok(_response.map(|x| x.data))
9102        }
9103        self.client.send_query_and_decode::<FileReadAtRequest, FileReadAtResult>(
9104            (count, offset),
9105            0x1607a293a60d723e,
9106            fidl::encoding::DynamicFlags::empty(),
9107            _decode,
9108        )
9109    }
9110
9111    type WriteAtResponseFut = fidl::client::QueryResponseFut<
9112        FileWriteAtResult,
9113        fidl::encoding::DefaultFuchsiaResourceDialect,
9114    >;
9115    fn r#write_at(&self, mut data: &[u8], mut offset: u64) -> Self::WriteAtResponseFut {
9116        fn _decode(
9117            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9118        ) -> Result<FileWriteAtResult, fidl::Error> {
9119            let _response = fidl::client::decode_transaction_body::<
9120                fidl::encoding::ResultType<FileWriteAtResponse, i32>,
9121                fidl::encoding::DefaultFuchsiaResourceDialect,
9122                0x793eefc0045e792b,
9123            >(_buf?)?;
9124            Ok(_response.map(|x| x.actual_count))
9125        }
9126        self.client.send_query_and_decode::<FileWriteAtRequest, FileWriteAtResult>(
9127            (data, offset),
9128            0x793eefc0045e792b,
9129            fidl::encoding::DynamicFlags::empty(),
9130            _decode,
9131        )
9132    }
9133
9134    type ResizeResponseFut = fidl::client::QueryResponseFut<
9135        FileResizeResult,
9136        fidl::encoding::DefaultFuchsiaResourceDialect,
9137    >;
9138    fn r#resize(&self, mut length: u64) -> Self::ResizeResponseFut {
9139        fn _decode(
9140            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9141        ) -> Result<FileResizeResult, fidl::Error> {
9142            let _response = fidl::client::decode_transaction_body::<
9143                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
9144                fidl::encoding::DefaultFuchsiaResourceDialect,
9145                0x2b80825f0535743a,
9146            >(_buf?)?;
9147            Ok(_response.map(|x| x))
9148        }
9149        self.client.send_query_and_decode::<FileResizeRequest, FileResizeResult>(
9150            (length,),
9151            0x2b80825f0535743a,
9152            fidl::encoding::DynamicFlags::empty(),
9153            _decode,
9154        )
9155    }
9156
9157    type GetBackingMemoryResponseFut = fidl::client::QueryResponseFut<
9158        FileGetBackingMemoryResult,
9159        fidl::encoding::DefaultFuchsiaResourceDialect,
9160    >;
9161    fn r#get_backing_memory(&self, mut flags: VmoFlags) -> Self::GetBackingMemoryResponseFut {
9162        fn _decode(
9163            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9164        ) -> Result<FileGetBackingMemoryResult, fidl::Error> {
9165            let _response = fidl::client::decode_transaction_body::<
9166                fidl::encoding::ResultType<FileGetBackingMemoryResponse, i32>,
9167                fidl::encoding::DefaultFuchsiaResourceDialect,
9168                0xa6a9e654cbf62b,
9169            >(_buf?)?;
9170            Ok(_response.map(|x| x.vmo))
9171        }
9172        self.client
9173            .send_query_and_decode::<FileGetBackingMemoryRequest, FileGetBackingMemoryResult>(
9174                (flags,),
9175                0xa6a9e654cbf62b,
9176                fidl::encoding::DynamicFlags::empty(),
9177                _decode,
9178            )
9179    }
9180
9181    type AllocateResponseFut = fidl::client::QueryResponseFut<
9182        FileAllocateResult,
9183        fidl::encoding::DefaultFuchsiaResourceDialect,
9184    >;
9185    fn r#allocate(
9186        &self,
9187        mut offset: u64,
9188        mut length: u64,
9189        mut mode: AllocateMode,
9190    ) -> Self::AllocateResponseFut {
9191        fn _decode(
9192            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9193        ) -> Result<FileAllocateResult, fidl::Error> {
9194            let _response = fidl::client::decode_transaction_body::<
9195                fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
9196                fidl::encoding::DefaultFuchsiaResourceDialect,
9197                0x77fa0c330b57fd2e,
9198            >(_buf?)?
9199            .into_result::<FileMarker>("allocate")?;
9200            Ok(_response.map(|x| x))
9201        }
9202        self.client.send_query_and_decode::<FileAllocateRequest, FileAllocateResult>(
9203            (offset, length, mode),
9204            0x77fa0c330b57fd2e,
9205            fidl::encoding::DynamicFlags::FLEXIBLE,
9206            _decode,
9207        )
9208    }
9209
9210    type EnableVerityResponseFut = fidl::client::QueryResponseFut<
9211        FileEnableVerityResult,
9212        fidl::encoding::DefaultFuchsiaResourceDialect,
9213    >;
9214    fn r#enable_verity(&self, mut options: &VerificationOptions) -> Self::EnableVerityResponseFut {
9215        fn _decode(
9216            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
9217        ) -> Result<FileEnableVerityResult, fidl::Error> {
9218            let _response = fidl::client::decode_transaction_body::<
9219                fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
9220                fidl::encoding::DefaultFuchsiaResourceDialect,
9221                0x2c421ec3faaeb8bb,
9222            >(_buf?)?
9223            .into_result::<FileMarker>("enable_verity")?;
9224            Ok(_response.map(|x| x))
9225        }
9226        self.client.send_query_and_decode::<FileEnableVerityRequest, FileEnableVerityResult>(
9227            (options,),
9228            0x2c421ec3faaeb8bb,
9229            fidl::encoding::DynamicFlags::FLEXIBLE,
9230            _decode,
9231        )
9232    }
9233}
9234
9235pub struct FileEventStream {
9236    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
9237}
9238
9239impl std::marker::Unpin for FileEventStream {}
9240
9241impl futures::stream::FusedStream for FileEventStream {
9242    fn is_terminated(&self) -> bool {
9243        self.event_receiver.is_terminated()
9244    }
9245}
9246
9247impl futures::Stream for FileEventStream {
9248    type Item = Result<FileEvent, fidl::Error>;
9249
9250    fn poll_next(
9251        mut self: std::pin::Pin<&mut Self>,
9252        cx: &mut std::task::Context<'_>,
9253    ) -> std::task::Poll<Option<Self::Item>> {
9254        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
9255            &mut self.event_receiver,
9256            cx
9257        )?) {
9258            Some(buf) => std::task::Poll::Ready(Some(FileEvent::decode(buf))),
9259            None => std::task::Poll::Ready(None),
9260        }
9261    }
9262}
9263
9264#[derive(Debug)]
9265pub enum FileEvent {
9266    OnOpen_ {
9267        s: i32,
9268        info: Option<Box<NodeInfoDeprecated>>,
9269    },
9270    OnRepresentation {
9271        payload: Representation,
9272    },
9273    #[non_exhaustive]
9274    _UnknownEvent {
9275        /// Ordinal of the event that was sent.
9276        ordinal: u64,
9277    },
9278}
9279
9280impl FileEvent {
9281    #[allow(irrefutable_let_patterns)]
9282    pub fn into_on_open_(self) -> Option<(i32, Option<Box<NodeInfoDeprecated>>)> {
9283        if let FileEvent::OnOpen_ { s, info } = self {
9284            Some((s, info))
9285        } else {
9286            None
9287        }
9288    }
9289    #[allow(irrefutable_let_patterns)]
9290    pub fn into_on_representation(self) -> Option<Representation> {
9291        if let FileEvent::OnRepresentation { payload } = self {
9292            Some((payload))
9293        } else {
9294            None
9295        }
9296    }
9297
9298    /// Decodes a message buffer as a [`FileEvent`].
9299    fn decode(
9300        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
9301    ) -> Result<FileEvent, fidl::Error> {
9302        let (bytes, _handles) = buf.split_mut();
9303        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
9304        debug_assert_eq!(tx_header.tx_id, 0);
9305        match tx_header.ordinal {
9306            0x7fc7bbb1dbfd1972 => {
9307                let mut out = fidl::new_empty!(
9308                    NodeOnOpenRequest,
9309                    fidl::encoding::DefaultFuchsiaResourceDialect
9310                );
9311                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeOnOpenRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
9312                Ok((FileEvent::OnOpen_ { s: out.s, info: out.info }))
9313            }
9314            0x5cb40567d80a510c => {
9315                let mut out =
9316                    fidl::new_empty!(Representation, fidl::encoding::DefaultFuchsiaResourceDialect);
9317                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<Representation>(&tx_header, _body_bytes, _handles, &mut out)?;
9318                Ok((FileEvent::OnRepresentation { payload: out }))
9319            }
9320            _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
9321                Ok(FileEvent::_UnknownEvent { ordinal: tx_header.ordinal })
9322            }
9323            _ => Err(fidl::Error::UnknownOrdinal {
9324                ordinal: tx_header.ordinal,
9325                protocol_name: <FileMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
9326            }),
9327        }
9328    }
9329}
9330
9331/// A Stream of incoming requests for fuchsia.io/File.
9332pub struct FileRequestStream {
9333    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
9334    is_terminated: bool,
9335}
9336
9337impl std::marker::Unpin for FileRequestStream {}
9338
9339impl futures::stream::FusedStream for FileRequestStream {
9340    fn is_terminated(&self) -> bool {
9341        self.is_terminated
9342    }
9343}
9344
9345impl fidl::endpoints::RequestStream for FileRequestStream {
9346    type Protocol = FileMarker;
9347    type ControlHandle = FileControlHandle;
9348
9349    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
9350        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
9351    }
9352
9353    fn control_handle(&self) -> Self::ControlHandle {
9354        FileControlHandle { inner: self.inner.clone() }
9355    }
9356
9357    fn into_inner(
9358        self,
9359    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
9360    {
9361        (self.inner, self.is_terminated)
9362    }
9363
9364    fn from_inner(
9365        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
9366        is_terminated: bool,
9367    ) -> Self {
9368        Self { inner, is_terminated }
9369    }
9370}
9371
9372impl futures::Stream for FileRequestStream {
9373    type Item = Result<FileRequest, fidl::Error>;
9374
9375    fn poll_next(
9376        mut self: std::pin::Pin<&mut Self>,
9377        cx: &mut std::task::Context<'_>,
9378    ) -> std::task::Poll<Option<Self::Item>> {
9379        let this = &mut *self;
9380        if this.inner.check_shutdown(cx) {
9381            this.is_terminated = true;
9382            return std::task::Poll::Ready(None);
9383        }
9384        if this.is_terminated {
9385            panic!("polled FileRequestStream after completion");
9386        }
9387        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
9388            |bytes, handles| {
9389                match this.inner.channel().read_etc(cx, bytes, handles) {
9390                    std::task::Poll::Ready(Ok(())) => {}
9391                    std::task::Poll::Pending => return std::task::Poll::Pending,
9392                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
9393                        this.is_terminated = true;
9394                        return std::task::Poll::Ready(None);
9395                    }
9396                    std::task::Poll::Ready(Err(e)) => {
9397                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
9398                            e.into(),
9399                        ))))
9400                    }
9401                }
9402
9403                // A message has been received from the channel
9404                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
9405
9406                std::task::Poll::Ready(Some(match header.ordinal {
9407                    0x6ee9c0ad53ec87aa => {
9408                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9409                        let mut req = fidl::new_empty!(
9410                            AdvisoryLockingAdvisoryLockRequest,
9411                            fidl::encoding::DefaultFuchsiaResourceDialect
9412                        );
9413                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<AdvisoryLockingAdvisoryLockRequest>(&header, _body_bytes, handles, &mut req)?;
9414                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9415                        Ok(FileRequest::AdvisoryLock {
9416                            request: req.request,
9417
9418                            responder: FileAdvisoryLockResponder {
9419                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9420                                tx_id: header.tx_id,
9421                            },
9422                        })
9423                    }
9424                    0x54f3949246a03e74 => {
9425                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9426                        let mut req = fidl::new_empty!(
9427                            LinkableLinkIntoRequest,
9428                            fidl::encoding::DefaultFuchsiaResourceDialect
9429                        );
9430                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<LinkableLinkIntoRequest>(&header, _body_bytes, handles, &mut req)?;
9431                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9432                        Ok(FileRequest::LinkInto {
9433                            dst_parent_token: req.dst_parent_token,
9434                            dst: req.dst,
9435
9436                            responder: FileLinkIntoResponder {
9437                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9438                                tx_id: header.tx_id,
9439                            },
9440                        })
9441                    }
9442                    0x20d8a7aba2168a79 => {
9443                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
9444                        let mut req = fidl::new_empty!(
9445                            fidl_fuchsia_unknown::CloneableCloneRequest,
9446                            fidl::encoding::DefaultFuchsiaResourceDialect
9447                        );
9448                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_unknown::CloneableCloneRequest>(&header, _body_bytes, handles, &mut req)?;
9449                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9450                        Ok(FileRequest::Clone { request: req.request, control_handle })
9451                    }
9452                    0x5ac5d459ad7f657e => {
9453                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9454                        let mut req = fidl::new_empty!(
9455                            fidl::encoding::EmptyPayload,
9456                            fidl::encoding::DefaultFuchsiaResourceDialect
9457                        );
9458                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9459                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9460                        Ok(FileRequest::Close {
9461                            responder: FileCloseResponder {
9462                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9463                                tx_id: header.tx_id,
9464                            },
9465                        })
9466                    }
9467                    0x2658edee9decfc06 => {
9468                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9469                        let mut req = fidl::new_empty!(
9470                            fidl::encoding::EmptyPayload,
9471                            fidl::encoding::DefaultFuchsiaResourceDialect
9472                        );
9473                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9474                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9475                        Ok(FileRequest::Query {
9476                            responder: FileQueryResponder {
9477                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9478                                tx_id: header.tx_id,
9479                            },
9480                        })
9481                    }
9482                    0x5a61678f293ce16f => {
9483                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
9484                        let mut req = fidl::new_empty!(
9485                            NodeDeprecatedCloneRequest,
9486                            fidl::encoding::DefaultFuchsiaResourceDialect
9487                        );
9488                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedCloneRequest>(&header, _body_bytes, handles, &mut req)?;
9489                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9490                        Ok(FileRequest::DeprecatedClone {
9491                            flags: req.flags,
9492                            object: req.object,
9493
9494                            control_handle,
9495                        })
9496                    }
9497                    0x78985e216314dafd => {
9498                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9499                        let mut req = fidl::new_empty!(
9500                            fidl::encoding::EmptyPayload,
9501                            fidl::encoding::DefaultFuchsiaResourceDialect
9502                        );
9503                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9504                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9505                        Ok(FileRequest::GetAttr {
9506                            responder: FileGetAttrResponder {
9507                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9508                                tx_id: header.tx_id,
9509                            },
9510                        })
9511                    }
9512                    0x4186c0f40d938f46 => {
9513                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9514                        let mut req = fidl::new_empty!(
9515                            NodeSetAttrRequest,
9516                            fidl::encoding::DefaultFuchsiaResourceDialect
9517                        );
9518                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetAttrRequest>(&header, _body_bytes, handles, &mut req)?;
9519                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9520                        Ok(FileRequest::SetAttr {
9521                            flags: req.flags,
9522                            attributes: req.attributes,
9523
9524                            responder: FileSetAttrResponder {
9525                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9526                                tx_id: header.tx_id,
9527                            },
9528                        })
9529                    }
9530                    0x5b88fffb8eda3aa1 => {
9531                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9532                        let mut req = fidl::new_empty!(
9533                            fidl::encoding::EmptyPayload,
9534                            fidl::encoding::DefaultFuchsiaResourceDialect
9535                        );
9536                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9537                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9538                        Ok(FileRequest::DeprecatedGetFlags {
9539                            responder: FileDeprecatedGetFlagsResponder {
9540                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9541                                tx_id: header.tx_id,
9542                            },
9543                        })
9544                    }
9545                    0x5295b76c71fde733 => {
9546                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9547                        let mut req = fidl::new_empty!(
9548                            NodeDeprecatedSetFlagsRequest,
9549                            fidl::encoding::DefaultFuchsiaResourceDialect
9550                        );
9551                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
9552                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9553                        Ok(FileRequest::DeprecatedSetFlags {
9554                            flags: req.flags,
9555
9556                            responder: FileDeprecatedSetFlagsResponder {
9557                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9558                                tx_id: header.tx_id,
9559                            },
9560                        })
9561                    }
9562                    0x176eb318f64ec23 => {
9563                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9564                        let mut req = fidl::new_empty!(
9565                            fidl::encoding::EmptyPayload,
9566                            fidl::encoding::DefaultFuchsiaResourceDialect
9567                        );
9568                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9569                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9570                        Ok(FileRequest::GetFlags {
9571                            responder: FileGetFlagsResponder {
9572                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9573                                tx_id: header.tx_id,
9574                            },
9575                        })
9576                    }
9577                    0x55a8028685791ea8 => {
9578                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9579                        let mut req = fidl::new_empty!(
9580                            NodeSetFlagsRequest,
9581                            fidl::encoding::DefaultFuchsiaResourceDialect
9582                        );
9583                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
9584                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9585                        Ok(FileRequest::SetFlags {
9586                            flags: req.flags,
9587
9588                            responder: FileSetFlagsResponder {
9589                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9590                                tx_id: header.tx_id,
9591                            },
9592                        })
9593                    }
9594                    0x6f344a1c6b0a0610 => {
9595                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9596                        let mut req = fidl::new_empty!(
9597                            fidl::encoding::EmptyPayload,
9598                            fidl::encoding::DefaultFuchsiaResourceDialect
9599                        );
9600                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9601                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9602                        Ok(FileRequest::QueryFilesystem {
9603                            responder: FileQueryFilesystemResponder {
9604                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9605                                tx_id: header.tx_id,
9606                            },
9607                        })
9608                    }
9609                    0x584c377c7c0a6d0b => {
9610                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9611                        let mut req = fidl::new_empty!(
9612                            fidl::encoding::EmptyPayload,
9613                            fidl::encoding::DefaultFuchsiaResourceDialect
9614                        );
9615                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9616                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9617                        Ok(FileRequest::GetConnectionInfo {
9618                            responder: FileGetConnectionInfoResponder {
9619                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9620                                tx_id: header.tx_id,
9621                            },
9622                        })
9623                    }
9624                    0x3d4396a638ea053b => {
9625                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9626                        let mut req = fidl::new_empty!(
9627                            NodeGetAttributesRequest,
9628                            fidl::encoding::DefaultFuchsiaResourceDialect
9629                        );
9630                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
9631                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9632                        Ok(FileRequest::GetAttributes {
9633                            query: req.query,
9634
9635                            responder: FileGetAttributesResponder {
9636                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9637                                tx_id: header.tx_id,
9638                            },
9639                        })
9640                    }
9641                    0x3308c1da5a89bf08 => {
9642                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9643                        let mut req = fidl::new_empty!(
9644                            MutableNodeAttributes,
9645                            fidl::encoding::DefaultFuchsiaResourceDialect
9646                        );
9647                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<MutableNodeAttributes>(&header, _body_bytes, handles, &mut req)?;
9648                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9649                        Ok(FileRequest::UpdateAttributes {
9650                            payload: req,
9651                            responder: FileUpdateAttributesResponder {
9652                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9653                                tx_id: header.tx_id,
9654                            },
9655                        })
9656                    }
9657                    0x2c5c27ca0ab5dc49 => {
9658                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9659                        let mut req = fidl::new_empty!(
9660                            fidl::encoding::EmptyPayload,
9661                            fidl::encoding::DefaultFuchsiaResourceDialect
9662                        );
9663                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9664                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9665                        Ok(FileRequest::Sync {
9666                            responder: FileSyncResponder {
9667                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9668                                tx_id: header.tx_id,
9669                            },
9670                        })
9671                    }
9672                    0x4b61033de007fcd0 => {
9673                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
9674                        let mut req = fidl::new_empty!(
9675                            NodeListExtendedAttributesRequest,
9676                            fidl::encoding::DefaultFuchsiaResourceDialect
9677                        );
9678                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeListExtendedAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
9679                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9680                        Ok(FileRequest::ListExtendedAttributes {
9681                            iterator: req.iterator,
9682
9683                            control_handle,
9684                        })
9685                    }
9686                    0x45ffa3ccfdeb76db => {
9687                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9688                        let mut req = fidl::new_empty!(
9689                            NodeGetExtendedAttributeRequest,
9690                            fidl::encoding::DefaultFuchsiaResourceDialect
9691                        );
9692                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
9693                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9694                        Ok(FileRequest::GetExtendedAttribute {
9695                            name: req.name,
9696
9697                            responder: FileGetExtendedAttributeResponder {
9698                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9699                                tx_id: header.tx_id,
9700                            },
9701                        })
9702                    }
9703                    0x4a951362f681f23c => {
9704                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9705                        let mut req = fidl::new_empty!(
9706                            NodeSetExtendedAttributeRequest,
9707                            fidl::encoding::DefaultFuchsiaResourceDialect
9708                        );
9709                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
9710                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9711                        Ok(FileRequest::SetExtendedAttribute {
9712                            name: req.name,
9713                            value: req.value,
9714                            mode: req.mode,
9715
9716                            responder: FileSetExtendedAttributeResponder {
9717                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9718                                tx_id: header.tx_id,
9719                            },
9720                        })
9721                    }
9722                    0x7a0b9f3a9bf9032d => {
9723                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9724                        let mut req = fidl::new_empty!(
9725                            NodeRemoveExtendedAttributeRequest,
9726                            fidl::encoding::DefaultFuchsiaResourceDialect
9727                        );
9728                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeRemoveExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
9729                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9730                        Ok(FileRequest::RemoveExtendedAttribute {
9731                            name: req.name,
9732
9733                            responder: FileRemoveExtendedAttributeResponder {
9734                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9735                                tx_id: header.tx_id,
9736                            },
9737                        })
9738                    }
9739                    0x57e419a298c8ede => {
9740                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9741                        let mut req = fidl::new_empty!(
9742                            ReadableReadRequest,
9743                            fidl::encoding::DefaultFuchsiaResourceDialect
9744                        );
9745                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ReadableReadRequest>(&header, _body_bytes, handles, &mut req)?;
9746                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9747                        Ok(FileRequest::Read {
9748                            count: req.count,
9749
9750                            responder: FileReadResponder {
9751                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9752                                tx_id: header.tx_id,
9753                            },
9754                        })
9755                    }
9756                    0x6a31437832469f82 => {
9757                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9758                        let mut req = fidl::new_empty!(
9759                            WritableWriteRequest,
9760                            fidl::encoding::DefaultFuchsiaResourceDialect
9761                        );
9762                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<WritableWriteRequest>(&header, _body_bytes, handles, &mut req)?;
9763                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9764                        Ok(FileRequest::Write {
9765                            data: req.data,
9766
9767                            responder: FileWriteResponder {
9768                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9769                                tx_id: header.tx_id,
9770                            },
9771                        })
9772                    }
9773                    0x68b5ac00c62906bc => {
9774                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9775                        let mut req = fidl::new_empty!(
9776                            fidl::encoding::EmptyPayload,
9777                            fidl::encoding::DefaultFuchsiaResourceDialect
9778                        );
9779                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
9780                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9781                        Ok(FileRequest::Describe {
9782                            responder: FileDescribeResponder {
9783                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9784                                tx_id: header.tx_id,
9785                            },
9786                        })
9787                    }
9788                    0x78079168162c5207 => {
9789                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9790                        let mut req = fidl::new_empty!(
9791                            FileSeekRequest,
9792                            fidl::encoding::DefaultFuchsiaResourceDialect
9793                        );
9794                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileSeekRequest>(&header, _body_bytes, handles, &mut req)?;
9795                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9796                        Ok(FileRequest::Seek {
9797                            origin: req.origin,
9798                            offset: req.offset,
9799
9800                            responder: FileSeekResponder {
9801                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9802                                tx_id: header.tx_id,
9803                            },
9804                        })
9805                    }
9806                    0x1607a293a60d723e => {
9807                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9808                        let mut req = fidl::new_empty!(
9809                            FileReadAtRequest,
9810                            fidl::encoding::DefaultFuchsiaResourceDialect
9811                        );
9812                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileReadAtRequest>(&header, _body_bytes, handles, &mut req)?;
9813                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9814                        Ok(FileRequest::ReadAt {
9815                            count: req.count,
9816                            offset: req.offset,
9817
9818                            responder: FileReadAtResponder {
9819                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9820                                tx_id: header.tx_id,
9821                            },
9822                        })
9823                    }
9824                    0x793eefc0045e792b => {
9825                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9826                        let mut req = fidl::new_empty!(
9827                            FileWriteAtRequest,
9828                            fidl::encoding::DefaultFuchsiaResourceDialect
9829                        );
9830                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileWriteAtRequest>(&header, _body_bytes, handles, &mut req)?;
9831                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9832                        Ok(FileRequest::WriteAt {
9833                            data: req.data,
9834                            offset: req.offset,
9835
9836                            responder: FileWriteAtResponder {
9837                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9838                                tx_id: header.tx_id,
9839                            },
9840                        })
9841                    }
9842                    0x2b80825f0535743a => {
9843                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9844                        let mut req = fidl::new_empty!(
9845                            FileResizeRequest,
9846                            fidl::encoding::DefaultFuchsiaResourceDialect
9847                        );
9848                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileResizeRequest>(&header, _body_bytes, handles, &mut req)?;
9849                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9850                        Ok(FileRequest::Resize {
9851                            length: req.length,
9852
9853                            responder: FileResizeResponder {
9854                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9855                                tx_id: header.tx_id,
9856                            },
9857                        })
9858                    }
9859                    0xa6a9e654cbf62b => {
9860                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9861                        let mut req = fidl::new_empty!(
9862                            FileGetBackingMemoryRequest,
9863                            fidl::encoding::DefaultFuchsiaResourceDialect
9864                        );
9865                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileGetBackingMemoryRequest>(&header, _body_bytes, handles, &mut req)?;
9866                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9867                        Ok(FileRequest::GetBackingMemory {
9868                            flags: req.flags,
9869
9870                            responder: FileGetBackingMemoryResponder {
9871                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9872                                tx_id: header.tx_id,
9873                            },
9874                        })
9875                    }
9876                    0x77fa0c330b57fd2e => {
9877                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9878                        let mut req = fidl::new_empty!(
9879                            FileAllocateRequest,
9880                            fidl::encoding::DefaultFuchsiaResourceDialect
9881                        );
9882                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileAllocateRequest>(&header, _body_bytes, handles, &mut req)?;
9883                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9884                        Ok(FileRequest::Allocate {
9885                            offset: req.offset,
9886                            length: req.length,
9887                            mode: req.mode,
9888
9889                            responder: FileAllocateResponder {
9890                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9891                                tx_id: header.tx_id,
9892                            },
9893                        })
9894                    }
9895                    0x2c421ec3faaeb8bb => {
9896                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
9897                        let mut req = fidl::new_empty!(
9898                            FileEnableVerityRequest,
9899                            fidl::encoding::DefaultFuchsiaResourceDialect
9900                        );
9901                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FileEnableVerityRequest>(&header, _body_bytes, handles, &mut req)?;
9902                        let control_handle = FileControlHandle { inner: this.inner.clone() };
9903                        Ok(FileRequest::EnableVerity {
9904                            options: req.options,
9905
9906                            responder: FileEnableVerityResponder {
9907                                control_handle: std::mem::ManuallyDrop::new(control_handle),
9908                                tx_id: header.tx_id,
9909                            },
9910                        })
9911                    }
9912                    _ if header.tx_id == 0
9913                        && header
9914                            .dynamic_flags()
9915                            .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
9916                    {
9917                        Ok(FileRequest::_UnknownMethod {
9918                            ordinal: header.ordinal,
9919                            control_handle: FileControlHandle { inner: this.inner.clone() },
9920                            method_type: fidl::MethodType::OneWay,
9921                        })
9922                    }
9923                    _ if header
9924                        .dynamic_flags()
9925                        .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
9926                    {
9927                        this.inner.send_framework_err(
9928                            fidl::encoding::FrameworkErr::UnknownMethod,
9929                            header.tx_id,
9930                            header.ordinal,
9931                            header.dynamic_flags(),
9932                            (bytes, handles),
9933                        )?;
9934                        Ok(FileRequest::_UnknownMethod {
9935                            ordinal: header.ordinal,
9936                            control_handle: FileControlHandle { inner: this.inner.clone() },
9937                            method_type: fidl::MethodType::TwoWay,
9938                        })
9939                    }
9940                    _ => Err(fidl::Error::UnknownOrdinal {
9941                        ordinal: header.ordinal,
9942                        protocol_name: <FileMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
9943                    }),
9944                }))
9945            },
9946        )
9947    }
9948}
9949
9950/// A [`Node`] which contains a sequence of bytes of definite length.
9951///
9952/// NOTE: cloned connections do not share their seek offset with their source
9953/// connection.
9954#[derive(Debug)]
9955pub enum FileRequest {
9956    /// Acquires an advisory lock on the underlying file.
9957    ///
9958    /// The lock lasts until either this connection is closed or
9959    /// this method is called with |AdvisoryLockType.UNLOCK| to release the lock
9960    /// explicitly.
9961    ///
9962    /// Advisory locks are purely advisory. They do not prevent actual read or
9963    /// write operations from occurring on the file, either through this
9964    /// connection or through other connections.
9965    ///
9966    /// This method requires the following rights:
9967    ///
9968    /// * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].
9969    /// * [`Rights.WRITE_BYTES`] if `request.type` is
9970    ///   [`AdvisoryLockType.WRITE`].
9971    ///
9972    /// # Errors
9973    ///
9974    /// * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For
9975    ///   example, another connection might hold a conflicting lock type.
9976    /// * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.
9977    /// * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights
9978    ///   to acquire the given type of lock.
9979    AdvisoryLock {
9980        request: AdvisoryLockRequest,
9981        responder: FileAdvisoryLockResponder,
9982    },
9983    /// Creates a link to this this object with name `dst` in the directory represented by
9984    /// `dst_parent_token`.
9985    ///
9986    /// `dst` must be a resolved object name. Including "/" in the string will return
9987    /// `ZX_ERR_INVALID_ARGS`.
9988    ///
9989    /// This method requires the maximal set of rights supported by the filesystem for this object.
9990    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
9991    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
9992    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
9993    /// `ZX_ERR_ACCESS_DENIED`.
9994    ///
9995    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
9996    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
9997    ///
9998    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
9999    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
10000    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
10001    ///
10002    /// This method does not have the same atomicity properties has the `Directory::Link` method,
10003    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
10004    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
10005    LinkInto {
10006        dst_parent_token: fidl::Event,
10007        dst: String,
10008        responder: FileLinkIntoResponder,
10009    },
10010    Clone {
10011        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
10012        control_handle: FileControlHandle,
10013    },
10014    /// Terminates the connection.
10015    ///
10016    /// After calling `Close`, the client must not send any other requests.
10017    ///
10018    /// Servers, after sending the status response, should close the connection
10019    /// regardless of status and without sending an epitaph.
10020    ///
10021    /// Closing the client end of the channel should be semantically equivalent
10022    /// to calling `Close` without knowing when the close has completed or its
10023    /// status.
10024    Close {
10025        responder: FileCloseResponder,
10026    },
10027    Query {
10028        responder: FileQueryResponder,
10029    },
10030    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
10031    DeprecatedClone {
10032        flags: OpenFlags,
10033        object: fidl::endpoints::ServerEnd<NodeMarker>,
10034        control_handle: FileControlHandle,
10035    },
10036    /// Acquires information about the node.
10037    ///
10038    /// This method does not require any rights.
10039    GetAttr {
10040        responder: FileGetAttrResponder,
10041    },
10042    /// Updates information about the node.
10043    ///
10044    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
10045    ///
10046    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
10047    /// `ZX_ERR_BAD_HANDLE`.
10048    SetAttr {
10049        flags: NodeAttributeFlags,
10050        attributes: NodeAttributes,
10051        responder: FileSetAttrResponder,
10052    },
10053    /// [DEPRECATED - Use new GetFlags method instead.]
10054    DeprecatedGetFlags {
10055        responder: FileDeprecatedGetFlagsResponder,
10056    },
10057    /// [DEPRECATED - Use new SetFlags method instead.]
10058    DeprecatedSetFlags {
10059        flags: OpenFlags,
10060        responder: FileDeprecatedSetFlagsResponder,
10061    },
10062    /// Queries the flags that apply to this node after it has been opened/created. This method does
10063    /// not require any rights.
10064    ///
10065    /// Note that the final set of flags that apply to the connection may differ from those
10066    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
10067    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
10068    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
10069    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
10070    GetFlags {
10071        responder: FileGetFlagsResponder,
10072    },
10073    /// Sets the flags that apply to this node after it has been opened. This method does not
10074    /// require any rights.
10075    ///
10076    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
10077    /// clear append mode.
10078    ///
10079    /// Errors:
10080    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
10081    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
10082    SetFlags {
10083        flags: Flags,
10084        responder: FileSetFlagsResponder,
10085    },
10086    /// Query the filesystem for filesystem-specific information.
10087    QueryFilesystem {
10088        responder: FileQueryFilesystemResponder,
10089    },
10090    /// Acquires information about the connection.
10091    ///
10092    /// This method does not require any rights.
10093    GetConnectionInfo {
10094        responder: FileGetConnectionInfoResponder,
10095    },
10096    /// Acquires information about the node.
10097    ///
10098    /// The attributes of a node should be stable, independent of the
10099    /// specific protocol used to access it.
10100    ///
10101    /// If a particular attribute is not applicable or not supported,
10102    /// filesystems should leave the corresponding field absent.
10103    ///
10104    /// + `query` a bit-mask specifying which attributes to fetch. The server
10105    ///   should not return more than necessary.
10106    /// - `attributes` the returned attributes.
10107    ///
10108    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
10109    GetAttributes {
10110        query: NodeAttributesQuery,
10111        responder: FileGetAttributesResponder,
10112    },
10113    /// Updates information about the node.
10114    ///
10115    /// + `attributes` the presence of a table field in `attributes` indicates
10116    /// the intent to update the corresponding attribute.
10117    ///
10118    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
10119    ///
10120    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
10121    UpdateAttributes {
10122        payload: MutableNodeAttributes,
10123        responder: FileUpdateAttributesResponder,
10124    },
10125    /// Synchronizes updates to the node to the underlying media, if it exists.
10126    ///
10127    /// This method will return when the filesystem server has flushed the
10128    /// relevant updates to the underlying media, but does not guarantee the
10129    /// underlying media has persisted the information, nor that any information
10130    /// is committed to hardware. Clients may use `Sync` to ensure ordering
10131    /// between operations.
10132    ///
10133    /// This method does not require any rights.
10134    Sync {
10135        responder: FileSyncResponder,
10136    },
10137    /// Creates an iterator over all the extended attribute names associated
10138    /// with this node. If an error occurs it is returned as an epitaph on the
10139    /// iterator request channel, and then the channel is closed.
10140    ///
10141    /// GetExtendedAttributes can be used with any of these names to retrieve
10142    /// the associated value.
10143    ///
10144    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
10145    ListExtendedAttributes {
10146        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
10147        control_handle: FileControlHandle,
10148    },
10149    /// Get the value associated with the given attribute `name` for this node.
10150    ///
10151    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
10152    /// particular structure is imposed on them.
10153    ///
10154    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
10155    GetExtendedAttribute {
10156        name: Vec<u8>,
10157        responder: FileGetExtendedAttributeResponder,
10158    },
10159    /// Set the value for the given attribute `name` to `value` for this node.
10160    ///
10161    /// The attribute name may exist, in which case the attribute is updated.
10162    /// If the attribute doesn't exist, it is created. The name should have no
10163    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
10164    ///
10165    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
10166    SetExtendedAttribute {
10167        name: Vec<u8>,
10168        value: ExtendedAttributeValue,
10169        mode: SetExtendedAttributeMode,
10170        responder: FileSetExtendedAttributeResponder,
10171    },
10172    /// Remove the specified extended attribute.
10173    ///
10174    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
10175    ///
10176    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
10177    RemoveExtendedAttribute {
10178        name: Vec<u8>,
10179        responder: FileRemoveExtendedAttributeResponder,
10180    },
10181    /// Reads up to 'count' bytes at the seek offset.
10182    /// The seek offset is moved forward by the number of bytes read.
10183    ///
10184    /// ## Invariants
10185    ///
10186    /// * The returned `data.length` will never be greater than `count`.
10187    /// * If `data.length` is less than `count`, it means that the seek offset
10188    ///   has reached the end of file as part of this operation.
10189    /// * If `data.length` is zero while `count` is not, it means that the
10190    ///   seek offset is already at or beyond the end of file, and no data could
10191    ///   be read.
10192    /// * If `count` is zero, the server should perform all the checks ensuring
10193    ///   read access without actually read anything, and return an empty
10194    ///   `data` vector.
10195    ///
10196    /// This method requires the [`Rights.READ_BYTES`] right.
10197    ///
10198    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
10199    Read {
10200        count: u64,
10201        responder: FileReadResponder,
10202    },
10203    /// Writes data at the seek offset.
10204    /// The seek offset is moved forward by the number of bytes written.
10205    /// If the file is in append mode, the seek offset is first set to the end
10206    /// of the file, followed by the write, in one atomic step.
10207    ///
10208    /// The file size may grow if the seek offset plus `data.length` is beyond
10209    /// the current end of file.
10210    ///
10211    /// + request `data` the byte buffer to write to the file.
10212    /// - response `actual_count` the number of bytes written.
10213    ///
10214    /// ## Invariants
10215    ///
10216    /// * The returned `actual_count` will never be greater than `data.length`.
10217    /// * If the server is unable to write all the data due to e.g. not enough
10218    ///   space, `actual_count` may be less than `data.length`.  If no bytes
10219    ///   could be written, an error is returned.
10220    /// * If `data.length` is zero, the server should perform all the checks
10221    ///   ensuring write access without mutating the file and return a
10222    ///   successful write of zero bytes.  The seek offset is still updated if
10223    ///   in append mode.
10224    ///
10225    /// This method requires the [`Rights.WRITE_BYTES`] right.
10226    Write {
10227        data: Vec<u8>,
10228        responder: FileWriteResponder,
10229    },
10230    Describe {
10231        responder: FileDescribeResponder,
10232    },
10233    /// Moves the offset at which the next invocation of [`Read`] or [`Write`]
10234    /// will occur. The seek offset is specific to each file connection.
10235    ///
10236    /// + request `origin` the reference point where `offset` will be based on.
10237    /// + request `offset` the number of bytes to seek.
10238    /// - response `offset_from_start` the adjusted seek offset, from the start
10239    ///   of the file.
10240    ///
10241    /// This method does not require any rights.
10242    Seek {
10243        origin: SeekOrigin,
10244        offset: i64,
10245        responder: FileSeekResponder,
10246    },
10247    /// Reads up to 'count' bytes at the provided offset.
10248    /// Does not affect the seek offset.
10249    ///
10250    /// ## Invariants
10251    ///
10252    /// * The returned `data.length` will never be greater than `count`.
10253    /// * If `data.length` is less than `count`, it means that `ReadAt` has hit
10254    ///   the end of file as part of this operation.
10255    /// * If `data.length` is zero while `count` is not, it means that `offset`
10256    ///   is at or past the end of file, and no data can be read.
10257    /// * If `count` is zero, the server should perform all the checks ensuring
10258    ///   read access without actually reading anything, and return an empty
10259    ///   `data` vector.
10260    ///
10261    /// This method requires the [`Rights.READ_BYTES`] right.
10262    ///
10263    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
10264    ReadAt {
10265        count: u64,
10266        offset: u64,
10267        responder: FileReadAtResponder,
10268    },
10269    /// Writes data at the provided offset.
10270    /// Does not affect the seek offset.
10271    ///
10272    /// The file size may grow if `offset` plus `data.length` is past the
10273    /// current end of file.
10274    ///
10275    /// + request `data` the byte buffer to write to the file.
10276    /// + request `offset` the offset from start of the file to begin writing.
10277    /// - response `actual_count` the number of bytes written.
10278    ///
10279    /// ## Invariants
10280    ///
10281    /// * The returned `actual_count` will never be greater than `data.length`.
10282    /// * If the server is unable to write all the data due to e.g. not enough
10283    ///   space, `actual_count` may be less than `data.length`.  If no bytes
10284    ///   could be written, an error is returned.
10285    /// * If `data.length` is zero, the server should perform all the checks
10286    ///   ensuring write access without mutating the file, and will return a
10287    ///   successful write of zero bytes.
10288    ///
10289    /// This method requires the [`Rights.WRITE_BYTES`] right.
10290    WriteAt {
10291        data: Vec<u8>,
10292        offset: u64,
10293        responder: FileWriteAtResponder,
10294    },
10295    /// Shrinks or grows the file size to 'length' bytes.
10296    ///
10297    /// If file size is reduced by this operation, the extra trailing data'
10298    /// is discarded.
10299    /// If file size is increased by this operation, the extended area appears
10300    /// as if it was zeroed.
10301    ///
10302    /// This method requires the [`Rights.WRITE_BYTES`] right.
10303    Resize {
10304        length: u64,
10305        responder: FileResizeResponder,
10306    },
10307    /// Acquires a [`zx.Handle:VMO`] representing this file, if there is one,
10308    /// with the requested access rights.
10309    ///
10310    /// Implementations are not required to implement files backed by VMOs so
10311    /// this request may fail. Additionally, implementations may only support
10312    /// a certain subset of the flags. Clients should be prepared with fallback
10313    /// behavior if this request fails.
10314    ///
10315    /// If a client specifies neither `PRIVATE_CLONE` nor `SHARED_BUFFER`, the
10316    /// implementation is free to choose the semantics of the returned VMO.
10317    ///
10318    /// + request `flags` a [`VmoFlags`] indicating the desired mode of access.
10319    /// - response `vmo` the requested [`zx.Handle:VMO`].
10320    /// * error a [`zx.Status`] value indicating the failure.
10321    ///
10322    /// This method requires the following rights:
10323    ///
10324    /// * [`Rights.READ_BYTES`] if `flags` includes [`VmoFlags.READ`].
10325    /// * [`Rights.WRITE_BYTES`] if `flags` includes [`VmoFlags.WRITE`].
10326    /// * [`Rights.EXECUTE`] if `flags` includes [`VmoFlags.EXECUTE`].
10327    GetBackingMemory {
10328        flags: VmoFlags,
10329        responder: FileGetBackingMemoryResponder,
10330    },
10331    /// Pre-allocate on-disk space for this file.
10332    Allocate {
10333        offset: u64,
10334        length: u64,
10335        mode: AllocateMode,
10336        responder: FileAllocateResponder,
10337    },
10338    /// Enables verification for the file (permanently) which involves computing a merkle tree for
10339    /// the file. Forces a flush prior to building the merkle tree to ensure cached data is
10340    /// captured. Future reads will be verified against the computed merkle tree and writes will be
10341    /// rejected. This method can take some time to complete as it depends on the size of the file.
10342    /// This method can be aborted by closing the connection that this method was issued on.
10343    ///
10344    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
10345    /// Returns `ZX_ERR_NOT_SUPPORTED` if the filesystem does not support verity.
10346    /// Returns `ZX_ERR_ALREADY_EXISTS` if the file was already fsverity-enabled.
10347    /// Also returns any error that might arise from reading the file, or from flushing the file,
10348    /// such as `ZX_ERR_IO`.
10349    EnableVerity {
10350        options: VerificationOptions,
10351        responder: FileEnableVerityResponder,
10352    },
10353    /// An interaction was received which does not match any known method.
10354    #[non_exhaustive]
10355    _UnknownMethod {
10356        /// Ordinal of the method that was called.
10357        ordinal: u64,
10358        control_handle: FileControlHandle,
10359        method_type: fidl::MethodType,
10360    },
10361}
10362
10363impl FileRequest {
10364    #[allow(irrefutable_let_patterns)]
10365    pub fn into_advisory_lock(self) -> Option<(AdvisoryLockRequest, FileAdvisoryLockResponder)> {
10366        if let FileRequest::AdvisoryLock { request, responder } = self {
10367            Some((request, responder))
10368        } else {
10369            None
10370        }
10371    }
10372
10373    #[allow(irrefutable_let_patterns)]
10374    pub fn into_link_into(self) -> Option<(fidl::Event, String, FileLinkIntoResponder)> {
10375        if let FileRequest::LinkInto { dst_parent_token, dst, responder } = self {
10376            Some((dst_parent_token, dst, responder))
10377        } else {
10378            None
10379        }
10380    }
10381
10382    #[allow(irrefutable_let_patterns)]
10383    pub fn into_clone(
10384        self,
10385    ) -> Option<(
10386        fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
10387        FileControlHandle,
10388    )> {
10389        if let FileRequest::Clone { request, control_handle } = self {
10390            Some((request, control_handle))
10391        } else {
10392            None
10393        }
10394    }
10395
10396    #[allow(irrefutable_let_patterns)]
10397    pub fn into_close(self) -> Option<(FileCloseResponder)> {
10398        if let FileRequest::Close { responder } = self {
10399            Some((responder))
10400        } else {
10401            None
10402        }
10403    }
10404
10405    #[allow(irrefutable_let_patterns)]
10406    pub fn into_query(self) -> Option<(FileQueryResponder)> {
10407        if let FileRequest::Query { responder } = self {
10408            Some((responder))
10409        } else {
10410            None
10411        }
10412    }
10413
10414    #[allow(irrefutable_let_patterns)]
10415    pub fn into_deprecated_clone(
10416        self,
10417    ) -> Option<(OpenFlags, fidl::endpoints::ServerEnd<NodeMarker>, FileControlHandle)> {
10418        if let FileRequest::DeprecatedClone { flags, object, control_handle } = self {
10419            Some((flags, object, control_handle))
10420        } else {
10421            None
10422        }
10423    }
10424
10425    #[allow(irrefutable_let_patterns)]
10426    pub fn into_get_attr(self) -> Option<(FileGetAttrResponder)> {
10427        if let FileRequest::GetAttr { responder } = self {
10428            Some((responder))
10429        } else {
10430            None
10431        }
10432    }
10433
10434    #[allow(irrefutable_let_patterns)]
10435    pub fn into_set_attr(
10436        self,
10437    ) -> Option<(NodeAttributeFlags, NodeAttributes, FileSetAttrResponder)> {
10438        if let FileRequest::SetAttr { flags, attributes, responder } = self {
10439            Some((flags, attributes, responder))
10440        } else {
10441            None
10442        }
10443    }
10444
10445    #[allow(irrefutable_let_patterns)]
10446    pub fn into_deprecated_get_flags(self) -> Option<(FileDeprecatedGetFlagsResponder)> {
10447        if let FileRequest::DeprecatedGetFlags { responder } = self {
10448            Some((responder))
10449        } else {
10450            None
10451        }
10452    }
10453
10454    #[allow(irrefutable_let_patterns)]
10455    pub fn into_deprecated_set_flags(self) -> Option<(OpenFlags, FileDeprecatedSetFlagsResponder)> {
10456        if let FileRequest::DeprecatedSetFlags { flags, responder } = self {
10457            Some((flags, responder))
10458        } else {
10459            None
10460        }
10461    }
10462
10463    #[allow(irrefutable_let_patterns)]
10464    pub fn into_get_flags(self) -> Option<(FileGetFlagsResponder)> {
10465        if let FileRequest::GetFlags { responder } = self {
10466            Some((responder))
10467        } else {
10468            None
10469        }
10470    }
10471
10472    #[allow(irrefutable_let_patterns)]
10473    pub fn into_set_flags(self) -> Option<(Flags, FileSetFlagsResponder)> {
10474        if let FileRequest::SetFlags { flags, responder } = self {
10475            Some((flags, responder))
10476        } else {
10477            None
10478        }
10479    }
10480
10481    #[allow(irrefutable_let_patterns)]
10482    pub fn into_query_filesystem(self) -> Option<(FileQueryFilesystemResponder)> {
10483        if let FileRequest::QueryFilesystem { responder } = self {
10484            Some((responder))
10485        } else {
10486            None
10487        }
10488    }
10489
10490    #[allow(irrefutable_let_patterns)]
10491    pub fn into_get_connection_info(self) -> Option<(FileGetConnectionInfoResponder)> {
10492        if let FileRequest::GetConnectionInfo { responder } = self {
10493            Some((responder))
10494        } else {
10495            None
10496        }
10497    }
10498
10499    #[allow(irrefutable_let_patterns)]
10500    pub fn into_get_attributes(self) -> Option<(NodeAttributesQuery, FileGetAttributesResponder)> {
10501        if let FileRequest::GetAttributes { query, responder } = self {
10502            Some((query, responder))
10503        } else {
10504            None
10505        }
10506    }
10507
10508    #[allow(irrefutable_let_patterns)]
10509    pub fn into_update_attributes(
10510        self,
10511    ) -> Option<(MutableNodeAttributes, FileUpdateAttributesResponder)> {
10512        if let FileRequest::UpdateAttributes { payload, responder } = self {
10513            Some((payload, responder))
10514        } else {
10515            None
10516        }
10517    }
10518
10519    #[allow(irrefutable_let_patterns)]
10520    pub fn into_sync(self) -> Option<(FileSyncResponder)> {
10521        if let FileRequest::Sync { responder } = self {
10522            Some((responder))
10523        } else {
10524            None
10525        }
10526    }
10527
10528    #[allow(irrefutable_let_patterns)]
10529    pub fn into_list_extended_attributes(
10530        self,
10531    ) -> Option<(fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>, FileControlHandle)>
10532    {
10533        if let FileRequest::ListExtendedAttributes { iterator, control_handle } = self {
10534            Some((iterator, control_handle))
10535        } else {
10536            None
10537        }
10538    }
10539
10540    #[allow(irrefutable_let_patterns)]
10541    pub fn into_get_extended_attribute(
10542        self,
10543    ) -> Option<(Vec<u8>, FileGetExtendedAttributeResponder)> {
10544        if let FileRequest::GetExtendedAttribute { name, responder } = self {
10545            Some((name, responder))
10546        } else {
10547            None
10548        }
10549    }
10550
10551    #[allow(irrefutable_let_patterns)]
10552    pub fn into_set_extended_attribute(
10553        self,
10554    ) -> Option<(
10555        Vec<u8>,
10556        ExtendedAttributeValue,
10557        SetExtendedAttributeMode,
10558        FileSetExtendedAttributeResponder,
10559    )> {
10560        if let FileRequest::SetExtendedAttribute { name, value, mode, responder } = self {
10561            Some((name, value, mode, responder))
10562        } else {
10563            None
10564        }
10565    }
10566
10567    #[allow(irrefutable_let_patterns)]
10568    pub fn into_remove_extended_attribute(
10569        self,
10570    ) -> Option<(Vec<u8>, FileRemoveExtendedAttributeResponder)> {
10571        if let FileRequest::RemoveExtendedAttribute { name, responder } = self {
10572            Some((name, responder))
10573        } else {
10574            None
10575        }
10576    }
10577
10578    #[allow(irrefutable_let_patterns)]
10579    pub fn into_read(self) -> Option<(u64, FileReadResponder)> {
10580        if let FileRequest::Read { count, responder } = self {
10581            Some((count, responder))
10582        } else {
10583            None
10584        }
10585    }
10586
10587    #[allow(irrefutable_let_patterns)]
10588    pub fn into_write(self) -> Option<(Vec<u8>, FileWriteResponder)> {
10589        if let FileRequest::Write { data, responder } = self {
10590            Some((data, responder))
10591        } else {
10592            None
10593        }
10594    }
10595
10596    #[allow(irrefutable_let_patterns)]
10597    pub fn into_describe(self) -> Option<(FileDescribeResponder)> {
10598        if let FileRequest::Describe { responder } = self {
10599            Some((responder))
10600        } else {
10601            None
10602        }
10603    }
10604
10605    #[allow(irrefutable_let_patterns)]
10606    pub fn into_seek(self) -> Option<(SeekOrigin, i64, FileSeekResponder)> {
10607        if let FileRequest::Seek { origin, offset, responder } = self {
10608            Some((origin, offset, responder))
10609        } else {
10610            None
10611        }
10612    }
10613
10614    #[allow(irrefutable_let_patterns)]
10615    pub fn into_read_at(self) -> Option<(u64, u64, FileReadAtResponder)> {
10616        if let FileRequest::ReadAt { count, offset, responder } = self {
10617            Some((count, offset, responder))
10618        } else {
10619            None
10620        }
10621    }
10622
10623    #[allow(irrefutable_let_patterns)]
10624    pub fn into_write_at(self) -> Option<(Vec<u8>, u64, FileWriteAtResponder)> {
10625        if let FileRequest::WriteAt { data, offset, responder } = self {
10626            Some((data, offset, responder))
10627        } else {
10628            None
10629        }
10630    }
10631
10632    #[allow(irrefutable_let_patterns)]
10633    pub fn into_resize(self) -> Option<(u64, FileResizeResponder)> {
10634        if let FileRequest::Resize { length, responder } = self {
10635            Some((length, responder))
10636        } else {
10637            None
10638        }
10639    }
10640
10641    #[allow(irrefutable_let_patterns)]
10642    pub fn into_get_backing_memory(self) -> Option<(VmoFlags, FileGetBackingMemoryResponder)> {
10643        if let FileRequest::GetBackingMemory { flags, responder } = self {
10644            Some((flags, responder))
10645        } else {
10646            None
10647        }
10648    }
10649
10650    #[allow(irrefutable_let_patterns)]
10651    pub fn into_allocate(self) -> Option<(u64, u64, AllocateMode, FileAllocateResponder)> {
10652        if let FileRequest::Allocate { offset, length, mode, responder } = self {
10653            Some((offset, length, mode, responder))
10654        } else {
10655            None
10656        }
10657    }
10658
10659    #[allow(irrefutable_let_patterns)]
10660    pub fn into_enable_verity(self) -> Option<(VerificationOptions, FileEnableVerityResponder)> {
10661        if let FileRequest::EnableVerity { options, responder } = self {
10662            Some((options, responder))
10663        } else {
10664            None
10665        }
10666    }
10667
10668    /// Name of the method defined in FIDL
10669    pub fn method_name(&self) -> &'static str {
10670        match *self {
10671            FileRequest::AdvisoryLock { .. } => "advisory_lock",
10672            FileRequest::LinkInto { .. } => "link_into",
10673            FileRequest::Clone { .. } => "clone",
10674            FileRequest::Close { .. } => "close",
10675            FileRequest::Query { .. } => "query",
10676            FileRequest::DeprecatedClone { .. } => "deprecated_clone",
10677            FileRequest::GetAttr { .. } => "get_attr",
10678            FileRequest::SetAttr { .. } => "set_attr",
10679            FileRequest::DeprecatedGetFlags { .. } => "deprecated_get_flags",
10680            FileRequest::DeprecatedSetFlags { .. } => "deprecated_set_flags",
10681            FileRequest::GetFlags { .. } => "get_flags",
10682            FileRequest::SetFlags { .. } => "set_flags",
10683            FileRequest::QueryFilesystem { .. } => "query_filesystem",
10684            FileRequest::GetConnectionInfo { .. } => "get_connection_info",
10685            FileRequest::GetAttributes { .. } => "get_attributes",
10686            FileRequest::UpdateAttributes { .. } => "update_attributes",
10687            FileRequest::Sync { .. } => "sync",
10688            FileRequest::ListExtendedAttributes { .. } => "list_extended_attributes",
10689            FileRequest::GetExtendedAttribute { .. } => "get_extended_attribute",
10690            FileRequest::SetExtendedAttribute { .. } => "set_extended_attribute",
10691            FileRequest::RemoveExtendedAttribute { .. } => "remove_extended_attribute",
10692            FileRequest::Read { .. } => "read",
10693            FileRequest::Write { .. } => "write",
10694            FileRequest::Describe { .. } => "describe",
10695            FileRequest::Seek { .. } => "seek",
10696            FileRequest::ReadAt { .. } => "read_at",
10697            FileRequest::WriteAt { .. } => "write_at",
10698            FileRequest::Resize { .. } => "resize",
10699            FileRequest::GetBackingMemory { .. } => "get_backing_memory",
10700            FileRequest::Allocate { .. } => "allocate",
10701            FileRequest::EnableVerity { .. } => "enable_verity",
10702            FileRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
10703                "unknown one-way method"
10704            }
10705            FileRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
10706                "unknown two-way method"
10707            }
10708        }
10709    }
10710}
10711
10712#[derive(Debug, Clone)]
10713pub struct FileControlHandle {
10714    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
10715}
10716
10717impl fidl::endpoints::ControlHandle for FileControlHandle {
10718    fn shutdown(&self) {
10719        self.inner.shutdown()
10720    }
10721    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
10722        self.inner.shutdown_with_epitaph(status)
10723    }
10724
10725    fn is_closed(&self) -> bool {
10726        self.inner.channel().is_closed()
10727    }
10728    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
10729        self.inner.channel().on_closed()
10730    }
10731
10732    #[cfg(target_os = "fuchsia")]
10733    fn signal_peer(
10734        &self,
10735        clear_mask: zx::Signals,
10736        set_mask: zx::Signals,
10737    ) -> Result<(), zx_status::Status> {
10738        use fidl::Peered;
10739        self.inner.channel().signal_peer(clear_mask, set_mask)
10740    }
10741}
10742
10743impl FileControlHandle {
10744    pub fn send_on_open_(
10745        &self,
10746        mut s: i32,
10747        mut info: Option<NodeInfoDeprecated>,
10748    ) -> Result<(), fidl::Error> {
10749        self.inner.send::<NodeOnOpenRequest>(
10750            (s, info.as_mut()),
10751            0,
10752            0x7fc7bbb1dbfd1972,
10753            fidl::encoding::DynamicFlags::empty(),
10754        )
10755    }
10756
10757    pub fn send_on_representation(&self, mut payload: Representation) -> Result<(), fidl::Error> {
10758        self.inner.send::<Representation>(
10759            &mut payload,
10760            0,
10761            0x5cb40567d80a510c,
10762            fidl::encoding::DynamicFlags::empty(),
10763        )
10764    }
10765}
10766
10767#[must_use = "FIDL methods require a response to be sent"]
10768#[derive(Debug)]
10769pub struct FileAdvisoryLockResponder {
10770    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
10771    tx_id: u32,
10772}
10773
10774/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
10775/// if the responder is dropped without sending a response, so that the client
10776/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
10777impl std::ops::Drop for FileAdvisoryLockResponder {
10778    fn drop(&mut self) {
10779        self.control_handle.shutdown();
10780        // Safety: drops once, never accessed again
10781        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10782    }
10783}
10784
10785impl fidl::endpoints::Responder for FileAdvisoryLockResponder {
10786    type ControlHandle = FileControlHandle;
10787
10788    fn control_handle(&self) -> &FileControlHandle {
10789        &self.control_handle
10790    }
10791
10792    fn drop_without_shutdown(mut self) {
10793        // Safety: drops once, never accessed again due to mem::forget
10794        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10795        // Prevent Drop from running (which would shut down the channel)
10796        std::mem::forget(self);
10797    }
10798}
10799
10800impl FileAdvisoryLockResponder {
10801    /// Sends a response to the FIDL transaction.
10802    ///
10803    /// Sets the channel to shutdown if an error occurs.
10804    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10805        let _result = self.send_raw(result);
10806        if _result.is_err() {
10807            self.control_handle.shutdown();
10808        }
10809        self.drop_without_shutdown();
10810        _result
10811    }
10812
10813    /// Similar to "send" but does not shutdown the channel if an error occurs.
10814    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10815        let _result = self.send_raw(result);
10816        self.drop_without_shutdown();
10817        _result
10818    }
10819
10820    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10821        self.control_handle
10822            .inner
10823            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
10824                result,
10825                self.tx_id,
10826                0x6ee9c0ad53ec87aa,
10827                fidl::encoding::DynamicFlags::empty(),
10828            )
10829    }
10830}
10831
10832#[must_use = "FIDL methods require a response to be sent"]
10833#[derive(Debug)]
10834pub struct FileLinkIntoResponder {
10835    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
10836    tx_id: u32,
10837}
10838
10839/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
10840/// if the responder is dropped without sending a response, so that the client
10841/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
10842impl std::ops::Drop for FileLinkIntoResponder {
10843    fn drop(&mut self) {
10844        self.control_handle.shutdown();
10845        // Safety: drops once, never accessed again
10846        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10847    }
10848}
10849
10850impl fidl::endpoints::Responder for FileLinkIntoResponder {
10851    type ControlHandle = FileControlHandle;
10852
10853    fn control_handle(&self) -> &FileControlHandle {
10854        &self.control_handle
10855    }
10856
10857    fn drop_without_shutdown(mut self) {
10858        // Safety: drops once, never accessed again due to mem::forget
10859        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10860        // Prevent Drop from running (which would shut down the channel)
10861        std::mem::forget(self);
10862    }
10863}
10864
10865impl FileLinkIntoResponder {
10866    /// Sends a response to the FIDL transaction.
10867    ///
10868    /// Sets the channel to shutdown if an error occurs.
10869    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10870        let _result = self.send_raw(result);
10871        if _result.is_err() {
10872            self.control_handle.shutdown();
10873        }
10874        self.drop_without_shutdown();
10875        _result
10876    }
10877
10878    /// Similar to "send" but does not shutdown the channel if an error occurs.
10879    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10880        let _result = self.send_raw(result);
10881        self.drop_without_shutdown();
10882        _result
10883    }
10884
10885    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10886        self.control_handle
10887            .inner
10888            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
10889                result,
10890                self.tx_id,
10891                0x54f3949246a03e74,
10892                fidl::encoding::DynamicFlags::empty(),
10893            )
10894    }
10895}
10896
10897#[must_use = "FIDL methods require a response to be sent"]
10898#[derive(Debug)]
10899pub struct FileCloseResponder {
10900    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
10901    tx_id: u32,
10902}
10903
10904/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
10905/// if the responder is dropped without sending a response, so that the client
10906/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
10907impl std::ops::Drop for FileCloseResponder {
10908    fn drop(&mut self) {
10909        self.control_handle.shutdown();
10910        // Safety: drops once, never accessed again
10911        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10912    }
10913}
10914
10915impl fidl::endpoints::Responder for FileCloseResponder {
10916    type ControlHandle = FileControlHandle;
10917
10918    fn control_handle(&self) -> &FileControlHandle {
10919        &self.control_handle
10920    }
10921
10922    fn drop_without_shutdown(mut self) {
10923        // Safety: drops once, never accessed again due to mem::forget
10924        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10925        // Prevent Drop from running (which would shut down the channel)
10926        std::mem::forget(self);
10927    }
10928}
10929
10930impl FileCloseResponder {
10931    /// Sends a response to the FIDL transaction.
10932    ///
10933    /// Sets the channel to shutdown if an error occurs.
10934    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10935        let _result = self.send_raw(result);
10936        if _result.is_err() {
10937            self.control_handle.shutdown();
10938        }
10939        self.drop_without_shutdown();
10940        _result
10941    }
10942
10943    /// Similar to "send" but does not shutdown the channel if an error occurs.
10944    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10945        let _result = self.send_raw(result);
10946        self.drop_without_shutdown();
10947        _result
10948    }
10949
10950    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
10951        self.control_handle
10952            .inner
10953            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
10954                result,
10955                self.tx_id,
10956                0x5ac5d459ad7f657e,
10957                fidl::encoding::DynamicFlags::empty(),
10958            )
10959    }
10960}
10961
10962#[must_use = "FIDL methods require a response to be sent"]
10963#[derive(Debug)]
10964pub struct FileQueryResponder {
10965    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
10966    tx_id: u32,
10967}
10968
10969/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
10970/// if the responder is dropped without sending a response, so that the client
10971/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
10972impl std::ops::Drop for FileQueryResponder {
10973    fn drop(&mut self) {
10974        self.control_handle.shutdown();
10975        // Safety: drops once, never accessed again
10976        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10977    }
10978}
10979
10980impl fidl::endpoints::Responder for FileQueryResponder {
10981    type ControlHandle = FileControlHandle;
10982
10983    fn control_handle(&self) -> &FileControlHandle {
10984        &self.control_handle
10985    }
10986
10987    fn drop_without_shutdown(mut self) {
10988        // Safety: drops once, never accessed again due to mem::forget
10989        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10990        // Prevent Drop from running (which would shut down the channel)
10991        std::mem::forget(self);
10992    }
10993}
10994
10995impl FileQueryResponder {
10996    /// Sends a response to the FIDL transaction.
10997    ///
10998    /// Sets the channel to shutdown if an error occurs.
10999    pub fn send(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
11000        let _result = self.send_raw(protocol);
11001        if _result.is_err() {
11002            self.control_handle.shutdown();
11003        }
11004        self.drop_without_shutdown();
11005        _result
11006    }
11007
11008    /// Similar to "send" but does not shutdown the channel if an error occurs.
11009    pub fn send_no_shutdown_on_err(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
11010        let _result = self.send_raw(protocol);
11011        self.drop_without_shutdown();
11012        _result
11013    }
11014
11015    fn send_raw(&self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
11016        self.control_handle.inner.send::<fidl_fuchsia_unknown::QueryableQueryResponse>(
11017            (protocol,),
11018            self.tx_id,
11019            0x2658edee9decfc06,
11020            fidl::encoding::DynamicFlags::empty(),
11021        )
11022    }
11023}
11024
11025#[must_use = "FIDL methods require a response to be sent"]
11026#[derive(Debug)]
11027pub struct FileGetAttrResponder {
11028    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11029    tx_id: u32,
11030}
11031
11032/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11033/// if the responder is dropped without sending a response, so that the client
11034/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11035impl std::ops::Drop for FileGetAttrResponder {
11036    fn drop(&mut self) {
11037        self.control_handle.shutdown();
11038        // Safety: drops once, never accessed again
11039        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11040    }
11041}
11042
11043impl fidl::endpoints::Responder for FileGetAttrResponder {
11044    type ControlHandle = FileControlHandle;
11045
11046    fn control_handle(&self) -> &FileControlHandle {
11047        &self.control_handle
11048    }
11049
11050    fn drop_without_shutdown(mut self) {
11051        // Safety: drops once, never accessed again due to mem::forget
11052        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11053        // Prevent Drop from running (which would shut down the channel)
11054        std::mem::forget(self);
11055    }
11056}
11057
11058impl FileGetAttrResponder {
11059    /// Sends a response to the FIDL transaction.
11060    ///
11061    /// Sets the channel to shutdown if an error occurs.
11062    pub fn send(self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
11063        let _result = self.send_raw(s, attributes);
11064        if _result.is_err() {
11065            self.control_handle.shutdown();
11066        }
11067        self.drop_without_shutdown();
11068        _result
11069    }
11070
11071    /// Similar to "send" but does not shutdown the channel if an error occurs.
11072    pub fn send_no_shutdown_on_err(
11073        self,
11074        mut s: i32,
11075        mut attributes: &NodeAttributes,
11076    ) -> Result<(), fidl::Error> {
11077        let _result = self.send_raw(s, attributes);
11078        self.drop_without_shutdown();
11079        _result
11080    }
11081
11082    fn send_raw(&self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
11083        self.control_handle.inner.send::<NodeGetAttrResponse>(
11084            (s, attributes),
11085            self.tx_id,
11086            0x78985e216314dafd,
11087            fidl::encoding::DynamicFlags::empty(),
11088        )
11089    }
11090}
11091
11092#[must_use = "FIDL methods require a response to be sent"]
11093#[derive(Debug)]
11094pub struct FileSetAttrResponder {
11095    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11096    tx_id: u32,
11097}
11098
11099/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11100/// if the responder is dropped without sending a response, so that the client
11101/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11102impl std::ops::Drop for FileSetAttrResponder {
11103    fn drop(&mut self) {
11104        self.control_handle.shutdown();
11105        // Safety: drops once, never accessed again
11106        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11107    }
11108}
11109
11110impl fidl::endpoints::Responder for FileSetAttrResponder {
11111    type ControlHandle = FileControlHandle;
11112
11113    fn control_handle(&self) -> &FileControlHandle {
11114        &self.control_handle
11115    }
11116
11117    fn drop_without_shutdown(mut self) {
11118        // Safety: drops once, never accessed again due to mem::forget
11119        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11120        // Prevent Drop from running (which would shut down the channel)
11121        std::mem::forget(self);
11122    }
11123}
11124
11125impl FileSetAttrResponder {
11126    /// Sends a response to the FIDL transaction.
11127    ///
11128    /// Sets the channel to shutdown if an error occurs.
11129    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
11130        let _result = self.send_raw(s);
11131        if _result.is_err() {
11132            self.control_handle.shutdown();
11133        }
11134        self.drop_without_shutdown();
11135        _result
11136    }
11137
11138    /// Similar to "send" but does not shutdown the channel if an error occurs.
11139    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
11140        let _result = self.send_raw(s);
11141        self.drop_without_shutdown();
11142        _result
11143    }
11144
11145    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
11146        self.control_handle.inner.send::<NodeSetAttrResponse>(
11147            (s,),
11148            self.tx_id,
11149            0x4186c0f40d938f46,
11150            fidl::encoding::DynamicFlags::empty(),
11151        )
11152    }
11153}
11154
11155#[must_use = "FIDL methods require a response to be sent"]
11156#[derive(Debug)]
11157pub struct FileDeprecatedGetFlagsResponder {
11158    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11159    tx_id: u32,
11160}
11161
11162/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11163/// if the responder is dropped without sending a response, so that the client
11164/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11165impl std::ops::Drop for FileDeprecatedGetFlagsResponder {
11166    fn drop(&mut self) {
11167        self.control_handle.shutdown();
11168        // Safety: drops once, never accessed again
11169        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11170    }
11171}
11172
11173impl fidl::endpoints::Responder for FileDeprecatedGetFlagsResponder {
11174    type ControlHandle = FileControlHandle;
11175
11176    fn control_handle(&self) -> &FileControlHandle {
11177        &self.control_handle
11178    }
11179
11180    fn drop_without_shutdown(mut self) {
11181        // Safety: drops once, never accessed again due to mem::forget
11182        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11183        // Prevent Drop from running (which would shut down the channel)
11184        std::mem::forget(self);
11185    }
11186}
11187
11188impl FileDeprecatedGetFlagsResponder {
11189    /// Sends a response to the FIDL transaction.
11190    ///
11191    /// Sets the channel to shutdown if an error occurs.
11192    pub fn send(self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
11193        let _result = self.send_raw(s, flags);
11194        if _result.is_err() {
11195            self.control_handle.shutdown();
11196        }
11197        self.drop_without_shutdown();
11198        _result
11199    }
11200
11201    /// Similar to "send" but does not shutdown the channel if an error occurs.
11202    pub fn send_no_shutdown_on_err(
11203        self,
11204        mut s: i32,
11205        mut flags: OpenFlags,
11206    ) -> Result<(), fidl::Error> {
11207        let _result = self.send_raw(s, flags);
11208        self.drop_without_shutdown();
11209        _result
11210    }
11211
11212    fn send_raw(&self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
11213        self.control_handle.inner.send::<NodeDeprecatedGetFlagsResponse>(
11214            (s, flags),
11215            self.tx_id,
11216            0x5b88fffb8eda3aa1,
11217            fidl::encoding::DynamicFlags::empty(),
11218        )
11219    }
11220}
11221
11222#[must_use = "FIDL methods require a response to be sent"]
11223#[derive(Debug)]
11224pub struct FileDeprecatedSetFlagsResponder {
11225    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11226    tx_id: u32,
11227}
11228
11229/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11230/// if the responder is dropped without sending a response, so that the client
11231/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11232impl std::ops::Drop for FileDeprecatedSetFlagsResponder {
11233    fn drop(&mut self) {
11234        self.control_handle.shutdown();
11235        // Safety: drops once, never accessed again
11236        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11237    }
11238}
11239
11240impl fidl::endpoints::Responder for FileDeprecatedSetFlagsResponder {
11241    type ControlHandle = FileControlHandle;
11242
11243    fn control_handle(&self) -> &FileControlHandle {
11244        &self.control_handle
11245    }
11246
11247    fn drop_without_shutdown(mut self) {
11248        // Safety: drops once, never accessed again due to mem::forget
11249        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11250        // Prevent Drop from running (which would shut down the channel)
11251        std::mem::forget(self);
11252    }
11253}
11254
11255impl FileDeprecatedSetFlagsResponder {
11256    /// Sends a response to the FIDL transaction.
11257    ///
11258    /// Sets the channel to shutdown if an error occurs.
11259    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
11260        let _result = self.send_raw(s);
11261        if _result.is_err() {
11262            self.control_handle.shutdown();
11263        }
11264        self.drop_without_shutdown();
11265        _result
11266    }
11267
11268    /// Similar to "send" but does not shutdown the channel if an error occurs.
11269    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
11270        let _result = self.send_raw(s);
11271        self.drop_without_shutdown();
11272        _result
11273    }
11274
11275    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
11276        self.control_handle.inner.send::<NodeDeprecatedSetFlagsResponse>(
11277            (s,),
11278            self.tx_id,
11279            0x5295b76c71fde733,
11280            fidl::encoding::DynamicFlags::empty(),
11281        )
11282    }
11283}
11284
11285#[must_use = "FIDL methods require a response to be sent"]
11286#[derive(Debug)]
11287pub struct FileGetFlagsResponder {
11288    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11289    tx_id: u32,
11290}
11291
11292/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11293/// if the responder is dropped without sending a response, so that the client
11294/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11295impl std::ops::Drop for FileGetFlagsResponder {
11296    fn drop(&mut self) {
11297        self.control_handle.shutdown();
11298        // Safety: drops once, never accessed again
11299        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11300    }
11301}
11302
11303impl fidl::endpoints::Responder for FileGetFlagsResponder {
11304    type ControlHandle = FileControlHandle;
11305
11306    fn control_handle(&self) -> &FileControlHandle {
11307        &self.control_handle
11308    }
11309
11310    fn drop_without_shutdown(mut self) {
11311        // Safety: drops once, never accessed again due to mem::forget
11312        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11313        // Prevent Drop from running (which would shut down the channel)
11314        std::mem::forget(self);
11315    }
11316}
11317
11318impl FileGetFlagsResponder {
11319    /// Sends a response to the FIDL transaction.
11320    ///
11321    /// Sets the channel to shutdown if an error occurs.
11322    pub fn send(self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
11323        let _result = self.send_raw(result);
11324        if _result.is_err() {
11325            self.control_handle.shutdown();
11326        }
11327        self.drop_without_shutdown();
11328        _result
11329    }
11330
11331    /// Similar to "send" but does not shutdown the channel if an error occurs.
11332    pub fn send_no_shutdown_on_err(
11333        self,
11334        mut result: Result<Flags, i32>,
11335    ) -> Result<(), fidl::Error> {
11336        let _result = self.send_raw(result);
11337        self.drop_without_shutdown();
11338        _result
11339    }
11340
11341    fn send_raw(&self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
11342        self.control_handle
11343            .inner
11344            .send::<fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>>(
11345                fidl::encoding::FlexibleResult::new(result.map(|flags| (flags,))),
11346                self.tx_id,
11347                0x176eb318f64ec23,
11348                fidl::encoding::DynamicFlags::FLEXIBLE,
11349            )
11350    }
11351}
11352
11353#[must_use = "FIDL methods require a response to be sent"]
11354#[derive(Debug)]
11355pub struct FileSetFlagsResponder {
11356    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11357    tx_id: u32,
11358}
11359
11360/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11361/// if the responder is dropped without sending a response, so that the client
11362/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11363impl std::ops::Drop for FileSetFlagsResponder {
11364    fn drop(&mut self) {
11365        self.control_handle.shutdown();
11366        // Safety: drops once, never accessed again
11367        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11368    }
11369}
11370
11371impl fidl::endpoints::Responder for FileSetFlagsResponder {
11372    type ControlHandle = FileControlHandle;
11373
11374    fn control_handle(&self) -> &FileControlHandle {
11375        &self.control_handle
11376    }
11377
11378    fn drop_without_shutdown(mut self) {
11379        // Safety: drops once, never accessed again due to mem::forget
11380        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11381        // Prevent Drop from running (which would shut down the channel)
11382        std::mem::forget(self);
11383    }
11384}
11385
11386impl FileSetFlagsResponder {
11387    /// Sends a response to the FIDL transaction.
11388    ///
11389    /// Sets the channel to shutdown if an error occurs.
11390    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11391        let _result = self.send_raw(result);
11392        if _result.is_err() {
11393            self.control_handle.shutdown();
11394        }
11395        self.drop_without_shutdown();
11396        _result
11397    }
11398
11399    /// Similar to "send" but does not shutdown the channel if an error occurs.
11400    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11401        let _result = self.send_raw(result);
11402        self.drop_without_shutdown();
11403        _result
11404    }
11405
11406    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11407        self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
11408            fidl::encoding::EmptyStruct,
11409            i32,
11410        >>(
11411            fidl::encoding::FlexibleResult::new(result),
11412            self.tx_id,
11413            0x55a8028685791ea8,
11414            fidl::encoding::DynamicFlags::FLEXIBLE,
11415        )
11416    }
11417}
11418
11419#[must_use = "FIDL methods require a response to be sent"]
11420#[derive(Debug)]
11421pub struct FileQueryFilesystemResponder {
11422    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11423    tx_id: u32,
11424}
11425
11426/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11427/// if the responder is dropped without sending a response, so that the client
11428/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11429impl std::ops::Drop for FileQueryFilesystemResponder {
11430    fn drop(&mut self) {
11431        self.control_handle.shutdown();
11432        // Safety: drops once, never accessed again
11433        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11434    }
11435}
11436
11437impl fidl::endpoints::Responder for FileQueryFilesystemResponder {
11438    type ControlHandle = FileControlHandle;
11439
11440    fn control_handle(&self) -> &FileControlHandle {
11441        &self.control_handle
11442    }
11443
11444    fn drop_without_shutdown(mut self) {
11445        // Safety: drops once, never accessed again due to mem::forget
11446        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11447        // Prevent Drop from running (which would shut down the channel)
11448        std::mem::forget(self);
11449    }
11450}
11451
11452impl FileQueryFilesystemResponder {
11453    /// Sends a response to the FIDL transaction.
11454    ///
11455    /// Sets the channel to shutdown if an error occurs.
11456    pub fn send(self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
11457        let _result = self.send_raw(s, info);
11458        if _result.is_err() {
11459            self.control_handle.shutdown();
11460        }
11461        self.drop_without_shutdown();
11462        _result
11463    }
11464
11465    /// Similar to "send" but does not shutdown the channel if an error occurs.
11466    pub fn send_no_shutdown_on_err(
11467        self,
11468        mut s: i32,
11469        mut info: Option<&FilesystemInfo>,
11470    ) -> Result<(), fidl::Error> {
11471        let _result = self.send_raw(s, info);
11472        self.drop_without_shutdown();
11473        _result
11474    }
11475
11476    fn send_raw(&self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
11477        self.control_handle.inner.send::<NodeQueryFilesystemResponse>(
11478            (s, info),
11479            self.tx_id,
11480            0x6f344a1c6b0a0610,
11481            fidl::encoding::DynamicFlags::empty(),
11482        )
11483    }
11484}
11485
11486#[must_use = "FIDL methods require a response to be sent"]
11487#[derive(Debug)]
11488pub struct FileGetConnectionInfoResponder {
11489    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11490    tx_id: u32,
11491}
11492
11493/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11494/// if the responder is dropped without sending a response, so that the client
11495/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11496impl std::ops::Drop for FileGetConnectionInfoResponder {
11497    fn drop(&mut self) {
11498        self.control_handle.shutdown();
11499        // Safety: drops once, never accessed again
11500        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11501    }
11502}
11503
11504impl fidl::endpoints::Responder for FileGetConnectionInfoResponder {
11505    type ControlHandle = FileControlHandle;
11506
11507    fn control_handle(&self) -> &FileControlHandle {
11508        &self.control_handle
11509    }
11510
11511    fn drop_without_shutdown(mut self) {
11512        // Safety: drops once, never accessed again due to mem::forget
11513        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11514        // Prevent Drop from running (which would shut down the channel)
11515        std::mem::forget(self);
11516    }
11517}
11518
11519impl FileGetConnectionInfoResponder {
11520    /// Sends a response to the FIDL transaction.
11521    ///
11522    /// Sets the channel to shutdown if an error occurs.
11523    pub fn send(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
11524        let _result = self.send_raw(payload);
11525        if _result.is_err() {
11526            self.control_handle.shutdown();
11527        }
11528        self.drop_without_shutdown();
11529        _result
11530    }
11531
11532    /// Similar to "send" but does not shutdown the channel if an error occurs.
11533    pub fn send_no_shutdown_on_err(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
11534        let _result = self.send_raw(payload);
11535        self.drop_without_shutdown();
11536        _result
11537    }
11538
11539    fn send_raw(&self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
11540        self.control_handle.inner.send::<ConnectionInfo>(
11541            &mut payload,
11542            self.tx_id,
11543            0x584c377c7c0a6d0b,
11544            fidl::encoding::DynamicFlags::empty(),
11545        )
11546    }
11547}
11548
11549#[must_use = "FIDL methods require a response to be sent"]
11550#[derive(Debug)]
11551pub struct FileGetAttributesResponder {
11552    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11553    tx_id: u32,
11554}
11555
11556/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11557/// if the responder is dropped without sending a response, so that the client
11558/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11559impl std::ops::Drop for FileGetAttributesResponder {
11560    fn drop(&mut self) {
11561        self.control_handle.shutdown();
11562        // Safety: drops once, never accessed again
11563        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11564    }
11565}
11566
11567impl fidl::endpoints::Responder for FileGetAttributesResponder {
11568    type ControlHandle = FileControlHandle;
11569
11570    fn control_handle(&self) -> &FileControlHandle {
11571        &self.control_handle
11572    }
11573
11574    fn drop_without_shutdown(mut self) {
11575        // Safety: drops once, never accessed again due to mem::forget
11576        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11577        // Prevent Drop from running (which would shut down the channel)
11578        std::mem::forget(self);
11579    }
11580}
11581
11582impl FileGetAttributesResponder {
11583    /// Sends a response to the FIDL transaction.
11584    ///
11585    /// Sets the channel to shutdown if an error occurs.
11586    pub fn send(
11587        self,
11588        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
11589    ) -> Result<(), fidl::Error> {
11590        let _result = self.send_raw(result);
11591        if _result.is_err() {
11592            self.control_handle.shutdown();
11593        }
11594        self.drop_without_shutdown();
11595        _result
11596    }
11597
11598    /// Similar to "send" but does not shutdown the channel if an error occurs.
11599    pub fn send_no_shutdown_on_err(
11600        self,
11601        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
11602    ) -> Result<(), fidl::Error> {
11603        let _result = self.send_raw(result);
11604        self.drop_without_shutdown();
11605        _result
11606    }
11607
11608    fn send_raw(
11609        &self,
11610        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
11611    ) -> Result<(), fidl::Error> {
11612        self.control_handle.inner.send::<fidl::encoding::ResultType<NodeAttributes2, i32>>(
11613            result,
11614            self.tx_id,
11615            0x3d4396a638ea053b,
11616            fidl::encoding::DynamicFlags::empty(),
11617        )
11618    }
11619}
11620
11621#[must_use = "FIDL methods require a response to be sent"]
11622#[derive(Debug)]
11623pub struct FileUpdateAttributesResponder {
11624    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11625    tx_id: u32,
11626}
11627
11628/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11629/// if the responder is dropped without sending a response, so that the client
11630/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11631impl std::ops::Drop for FileUpdateAttributesResponder {
11632    fn drop(&mut self) {
11633        self.control_handle.shutdown();
11634        // Safety: drops once, never accessed again
11635        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11636    }
11637}
11638
11639impl fidl::endpoints::Responder for FileUpdateAttributesResponder {
11640    type ControlHandle = FileControlHandle;
11641
11642    fn control_handle(&self) -> &FileControlHandle {
11643        &self.control_handle
11644    }
11645
11646    fn drop_without_shutdown(mut self) {
11647        // Safety: drops once, never accessed again due to mem::forget
11648        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11649        // Prevent Drop from running (which would shut down the channel)
11650        std::mem::forget(self);
11651    }
11652}
11653
11654impl FileUpdateAttributesResponder {
11655    /// Sends a response to the FIDL transaction.
11656    ///
11657    /// Sets the channel to shutdown if an error occurs.
11658    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11659        let _result = self.send_raw(result);
11660        if _result.is_err() {
11661            self.control_handle.shutdown();
11662        }
11663        self.drop_without_shutdown();
11664        _result
11665    }
11666
11667    /// Similar to "send" but does not shutdown the channel if an error occurs.
11668    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11669        let _result = self.send_raw(result);
11670        self.drop_without_shutdown();
11671        _result
11672    }
11673
11674    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11675        self.control_handle
11676            .inner
11677            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
11678                result,
11679                self.tx_id,
11680                0x3308c1da5a89bf08,
11681                fidl::encoding::DynamicFlags::empty(),
11682            )
11683    }
11684}
11685
11686#[must_use = "FIDL methods require a response to be sent"]
11687#[derive(Debug)]
11688pub struct FileSyncResponder {
11689    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11690    tx_id: u32,
11691}
11692
11693/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11694/// if the responder is dropped without sending a response, so that the client
11695/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11696impl std::ops::Drop for FileSyncResponder {
11697    fn drop(&mut self) {
11698        self.control_handle.shutdown();
11699        // Safety: drops once, never accessed again
11700        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11701    }
11702}
11703
11704impl fidl::endpoints::Responder for FileSyncResponder {
11705    type ControlHandle = FileControlHandle;
11706
11707    fn control_handle(&self) -> &FileControlHandle {
11708        &self.control_handle
11709    }
11710
11711    fn drop_without_shutdown(mut self) {
11712        // Safety: drops once, never accessed again due to mem::forget
11713        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11714        // Prevent Drop from running (which would shut down the channel)
11715        std::mem::forget(self);
11716    }
11717}
11718
11719impl FileSyncResponder {
11720    /// Sends a response to the FIDL transaction.
11721    ///
11722    /// Sets the channel to shutdown if an error occurs.
11723    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11724        let _result = self.send_raw(result);
11725        if _result.is_err() {
11726            self.control_handle.shutdown();
11727        }
11728        self.drop_without_shutdown();
11729        _result
11730    }
11731
11732    /// Similar to "send" but does not shutdown the channel if an error occurs.
11733    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11734        let _result = self.send_raw(result);
11735        self.drop_without_shutdown();
11736        _result
11737    }
11738
11739    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11740        self.control_handle
11741            .inner
11742            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
11743                result,
11744                self.tx_id,
11745                0x2c5c27ca0ab5dc49,
11746                fidl::encoding::DynamicFlags::empty(),
11747            )
11748    }
11749}
11750
11751#[must_use = "FIDL methods require a response to be sent"]
11752#[derive(Debug)]
11753pub struct FileGetExtendedAttributeResponder {
11754    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11755    tx_id: u32,
11756}
11757
11758/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11759/// if the responder is dropped without sending a response, so that the client
11760/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11761impl std::ops::Drop for FileGetExtendedAttributeResponder {
11762    fn drop(&mut self) {
11763        self.control_handle.shutdown();
11764        // Safety: drops once, never accessed again
11765        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11766    }
11767}
11768
11769impl fidl::endpoints::Responder for FileGetExtendedAttributeResponder {
11770    type ControlHandle = FileControlHandle;
11771
11772    fn control_handle(&self) -> &FileControlHandle {
11773        &self.control_handle
11774    }
11775
11776    fn drop_without_shutdown(mut self) {
11777        // Safety: drops once, never accessed again due to mem::forget
11778        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11779        // Prevent Drop from running (which would shut down the channel)
11780        std::mem::forget(self);
11781    }
11782}
11783
11784impl FileGetExtendedAttributeResponder {
11785    /// Sends a response to the FIDL transaction.
11786    ///
11787    /// Sets the channel to shutdown if an error occurs.
11788    pub fn send(self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
11789        let _result = self.send_raw(result);
11790        if _result.is_err() {
11791            self.control_handle.shutdown();
11792        }
11793        self.drop_without_shutdown();
11794        _result
11795    }
11796
11797    /// Similar to "send" but does not shutdown the channel if an error occurs.
11798    pub fn send_no_shutdown_on_err(
11799        self,
11800        mut result: Result<ExtendedAttributeValue, i32>,
11801    ) -> Result<(), fidl::Error> {
11802        let _result = self.send_raw(result);
11803        self.drop_without_shutdown();
11804        _result
11805    }
11806
11807    fn send_raw(&self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
11808        self.control_handle.inner.send::<fidl::encoding::ResultType<ExtendedAttributeValue, i32>>(
11809            result.as_mut().map_err(|e| *e),
11810            self.tx_id,
11811            0x45ffa3ccfdeb76db,
11812            fidl::encoding::DynamicFlags::empty(),
11813        )
11814    }
11815}
11816
11817#[must_use = "FIDL methods require a response to be sent"]
11818#[derive(Debug)]
11819pub struct FileSetExtendedAttributeResponder {
11820    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11821    tx_id: u32,
11822}
11823
11824/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11825/// if the responder is dropped without sending a response, so that the client
11826/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11827impl std::ops::Drop for FileSetExtendedAttributeResponder {
11828    fn drop(&mut self) {
11829        self.control_handle.shutdown();
11830        // Safety: drops once, never accessed again
11831        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11832    }
11833}
11834
11835impl fidl::endpoints::Responder for FileSetExtendedAttributeResponder {
11836    type ControlHandle = FileControlHandle;
11837
11838    fn control_handle(&self) -> &FileControlHandle {
11839        &self.control_handle
11840    }
11841
11842    fn drop_without_shutdown(mut self) {
11843        // Safety: drops once, never accessed again due to mem::forget
11844        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11845        // Prevent Drop from running (which would shut down the channel)
11846        std::mem::forget(self);
11847    }
11848}
11849
11850impl FileSetExtendedAttributeResponder {
11851    /// Sends a response to the FIDL transaction.
11852    ///
11853    /// Sets the channel to shutdown if an error occurs.
11854    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11855        let _result = self.send_raw(result);
11856        if _result.is_err() {
11857            self.control_handle.shutdown();
11858        }
11859        self.drop_without_shutdown();
11860        _result
11861    }
11862
11863    /// Similar to "send" but does not shutdown the channel if an error occurs.
11864    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11865        let _result = self.send_raw(result);
11866        self.drop_without_shutdown();
11867        _result
11868    }
11869
11870    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11871        self.control_handle
11872            .inner
11873            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
11874                result,
11875                self.tx_id,
11876                0x4a951362f681f23c,
11877                fidl::encoding::DynamicFlags::empty(),
11878            )
11879    }
11880}
11881
11882#[must_use = "FIDL methods require a response to be sent"]
11883#[derive(Debug)]
11884pub struct FileRemoveExtendedAttributeResponder {
11885    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11886    tx_id: u32,
11887}
11888
11889/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11890/// if the responder is dropped without sending a response, so that the client
11891/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11892impl std::ops::Drop for FileRemoveExtendedAttributeResponder {
11893    fn drop(&mut self) {
11894        self.control_handle.shutdown();
11895        // Safety: drops once, never accessed again
11896        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11897    }
11898}
11899
11900impl fidl::endpoints::Responder for FileRemoveExtendedAttributeResponder {
11901    type ControlHandle = FileControlHandle;
11902
11903    fn control_handle(&self) -> &FileControlHandle {
11904        &self.control_handle
11905    }
11906
11907    fn drop_without_shutdown(mut self) {
11908        // Safety: drops once, never accessed again due to mem::forget
11909        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11910        // Prevent Drop from running (which would shut down the channel)
11911        std::mem::forget(self);
11912    }
11913}
11914
11915impl FileRemoveExtendedAttributeResponder {
11916    /// Sends a response to the FIDL transaction.
11917    ///
11918    /// Sets the channel to shutdown if an error occurs.
11919    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11920        let _result = self.send_raw(result);
11921        if _result.is_err() {
11922            self.control_handle.shutdown();
11923        }
11924        self.drop_without_shutdown();
11925        _result
11926    }
11927
11928    /// Similar to "send" but does not shutdown the channel if an error occurs.
11929    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11930        let _result = self.send_raw(result);
11931        self.drop_without_shutdown();
11932        _result
11933    }
11934
11935    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
11936        self.control_handle
11937            .inner
11938            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
11939                result,
11940                self.tx_id,
11941                0x7a0b9f3a9bf9032d,
11942                fidl::encoding::DynamicFlags::empty(),
11943            )
11944    }
11945}
11946
11947#[must_use = "FIDL methods require a response to be sent"]
11948#[derive(Debug)]
11949pub struct FileReadResponder {
11950    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
11951    tx_id: u32,
11952}
11953
11954/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
11955/// if the responder is dropped without sending a response, so that the client
11956/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
11957impl std::ops::Drop for FileReadResponder {
11958    fn drop(&mut self) {
11959        self.control_handle.shutdown();
11960        // Safety: drops once, never accessed again
11961        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11962    }
11963}
11964
11965impl fidl::endpoints::Responder for FileReadResponder {
11966    type ControlHandle = FileControlHandle;
11967
11968    fn control_handle(&self) -> &FileControlHandle {
11969        &self.control_handle
11970    }
11971
11972    fn drop_without_shutdown(mut self) {
11973        // Safety: drops once, never accessed again due to mem::forget
11974        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11975        // Prevent Drop from running (which would shut down the channel)
11976        std::mem::forget(self);
11977    }
11978}
11979
11980impl FileReadResponder {
11981    /// Sends a response to the FIDL transaction.
11982    ///
11983    /// Sets the channel to shutdown if an error occurs.
11984    pub fn send(self, mut result: Result<&[u8], i32>) -> Result<(), fidl::Error> {
11985        let _result = self.send_raw(result);
11986        if _result.is_err() {
11987            self.control_handle.shutdown();
11988        }
11989        self.drop_without_shutdown();
11990        _result
11991    }
11992
11993    /// Similar to "send" but does not shutdown the channel if an error occurs.
11994    pub fn send_no_shutdown_on_err(
11995        self,
11996        mut result: Result<&[u8], i32>,
11997    ) -> Result<(), fidl::Error> {
11998        let _result = self.send_raw(result);
11999        self.drop_without_shutdown();
12000        _result
12001    }
12002
12003    fn send_raw(&self, mut result: Result<&[u8], i32>) -> Result<(), fidl::Error> {
12004        self.control_handle.inner.send::<fidl::encoding::ResultType<ReadableReadResponse, i32>>(
12005            result.map(|data| (data,)),
12006            self.tx_id,
12007            0x57e419a298c8ede,
12008            fidl::encoding::DynamicFlags::empty(),
12009        )
12010    }
12011}
12012
12013#[must_use = "FIDL methods require a response to be sent"]
12014#[derive(Debug)]
12015pub struct FileWriteResponder {
12016    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12017    tx_id: u32,
12018}
12019
12020/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12021/// if the responder is dropped without sending a response, so that the client
12022/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12023impl std::ops::Drop for FileWriteResponder {
12024    fn drop(&mut self) {
12025        self.control_handle.shutdown();
12026        // Safety: drops once, never accessed again
12027        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12028    }
12029}
12030
12031impl fidl::endpoints::Responder for FileWriteResponder {
12032    type ControlHandle = FileControlHandle;
12033
12034    fn control_handle(&self) -> &FileControlHandle {
12035        &self.control_handle
12036    }
12037
12038    fn drop_without_shutdown(mut self) {
12039        // Safety: drops once, never accessed again due to mem::forget
12040        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12041        // Prevent Drop from running (which would shut down the channel)
12042        std::mem::forget(self);
12043    }
12044}
12045
12046impl FileWriteResponder {
12047    /// Sends a response to the FIDL transaction.
12048    ///
12049    /// Sets the channel to shutdown if an error occurs.
12050    pub fn send(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12051        let _result = self.send_raw(result);
12052        if _result.is_err() {
12053            self.control_handle.shutdown();
12054        }
12055        self.drop_without_shutdown();
12056        _result
12057    }
12058
12059    /// Similar to "send" but does not shutdown the channel if an error occurs.
12060    pub fn send_no_shutdown_on_err(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12061        let _result = self.send_raw(result);
12062        self.drop_without_shutdown();
12063        _result
12064    }
12065
12066    fn send_raw(&self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12067        self.control_handle.inner.send::<fidl::encoding::ResultType<WritableWriteResponse, i32>>(
12068            result.map(|actual_count| (actual_count,)),
12069            self.tx_id,
12070            0x6a31437832469f82,
12071            fidl::encoding::DynamicFlags::empty(),
12072        )
12073    }
12074}
12075
12076#[must_use = "FIDL methods require a response to be sent"]
12077#[derive(Debug)]
12078pub struct FileDescribeResponder {
12079    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12080    tx_id: u32,
12081}
12082
12083/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12084/// if the responder is dropped without sending a response, so that the client
12085/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12086impl std::ops::Drop for FileDescribeResponder {
12087    fn drop(&mut self) {
12088        self.control_handle.shutdown();
12089        // Safety: drops once, never accessed again
12090        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12091    }
12092}
12093
12094impl fidl::endpoints::Responder for FileDescribeResponder {
12095    type ControlHandle = FileControlHandle;
12096
12097    fn control_handle(&self) -> &FileControlHandle {
12098        &self.control_handle
12099    }
12100
12101    fn drop_without_shutdown(mut self) {
12102        // Safety: drops once, never accessed again due to mem::forget
12103        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12104        // Prevent Drop from running (which would shut down the channel)
12105        std::mem::forget(self);
12106    }
12107}
12108
12109impl FileDescribeResponder {
12110    /// Sends a response to the FIDL transaction.
12111    ///
12112    /// Sets the channel to shutdown if an error occurs.
12113    pub fn send(self, mut payload: FileInfo) -> Result<(), fidl::Error> {
12114        let _result = self.send_raw(payload);
12115        if _result.is_err() {
12116            self.control_handle.shutdown();
12117        }
12118        self.drop_without_shutdown();
12119        _result
12120    }
12121
12122    /// Similar to "send" but does not shutdown the channel if an error occurs.
12123    pub fn send_no_shutdown_on_err(self, mut payload: FileInfo) -> Result<(), fidl::Error> {
12124        let _result = self.send_raw(payload);
12125        self.drop_without_shutdown();
12126        _result
12127    }
12128
12129    fn send_raw(&self, mut payload: FileInfo) -> Result<(), fidl::Error> {
12130        self.control_handle.inner.send::<FileInfo>(
12131            &mut payload,
12132            self.tx_id,
12133            0x68b5ac00c62906bc,
12134            fidl::encoding::DynamicFlags::empty(),
12135        )
12136    }
12137}
12138
12139#[must_use = "FIDL methods require a response to be sent"]
12140#[derive(Debug)]
12141pub struct FileSeekResponder {
12142    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12143    tx_id: u32,
12144}
12145
12146/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12147/// if the responder is dropped without sending a response, so that the client
12148/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12149impl std::ops::Drop for FileSeekResponder {
12150    fn drop(&mut self) {
12151        self.control_handle.shutdown();
12152        // Safety: drops once, never accessed again
12153        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12154    }
12155}
12156
12157impl fidl::endpoints::Responder for FileSeekResponder {
12158    type ControlHandle = FileControlHandle;
12159
12160    fn control_handle(&self) -> &FileControlHandle {
12161        &self.control_handle
12162    }
12163
12164    fn drop_without_shutdown(mut self) {
12165        // Safety: drops once, never accessed again due to mem::forget
12166        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12167        // Prevent Drop from running (which would shut down the channel)
12168        std::mem::forget(self);
12169    }
12170}
12171
12172impl FileSeekResponder {
12173    /// Sends a response to the FIDL transaction.
12174    ///
12175    /// Sets the channel to shutdown if an error occurs.
12176    pub fn send(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12177        let _result = self.send_raw(result);
12178        if _result.is_err() {
12179            self.control_handle.shutdown();
12180        }
12181        self.drop_without_shutdown();
12182        _result
12183    }
12184
12185    /// Similar to "send" but does not shutdown the channel if an error occurs.
12186    pub fn send_no_shutdown_on_err(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12187        let _result = self.send_raw(result);
12188        self.drop_without_shutdown();
12189        _result
12190    }
12191
12192    fn send_raw(&self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12193        self.control_handle.inner.send::<fidl::encoding::ResultType<FileSeekResponse, i32>>(
12194            result.map(|offset_from_start| (offset_from_start,)),
12195            self.tx_id,
12196            0x78079168162c5207,
12197            fidl::encoding::DynamicFlags::empty(),
12198        )
12199    }
12200}
12201
12202#[must_use = "FIDL methods require a response to be sent"]
12203#[derive(Debug)]
12204pub struct FileReadAtResponder {
12205    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12206    tx_id: u32,
12207}
12208
12209/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12210/// if the responder is dropped without sending a response, so that the client
12211/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12212impl std::ops::Drop for FileReadAtResponder {
12213    fn drop(&mut self) {
12214        self.control_handle.shutdown();
12215        // Safety: drops once, never accessed again
12216        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12217    }
12218}
12219
12220impl fidl::endpoints::Responder for FileReadAtResponder {
12221    type ControlHandle = FileControlHandle;
12222
12223    fn control_handle(&self) -> &FileControlHandle {
12224        &self.control_handle
12225    }
12226
12227    fn drop_without_shutdown(mut self) {
12228        // Safety: drops once, never accessed again due to mem::forget
12229        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12230        // Prevent Drop from running (which would shut down the channel)
12231        std::mem::forget(self);
12232    }
12233}
12234
12235impl FileReadAtResponder {
12236    /// Sends a response to the FIDL transaction.
12237    ///
12238    /// Sets the channel to shutdown if an error occurs.
12239    pub fn send(self, mut result: Result<&[u8], i32>) -> Result<(), fidl::Error> {
12240        let _result = self.send_raw(result);
12241        if _result.is_err() {
12242            self.control_handle.shutdown();
12243        }
12244        self.drop_without_shutdown();
12245        _result
12246    }
12247
12248    /// Similar to "send" but does not shutdown the channel if an error occurs.
12249    pub fn send_no_shutdown_on_err(
12250        self,
12251        mut result: Result<&[u8], i32>,
12252    ) -> Result<(), fidl::Error> {
12253        let _result = self.send_raw(result);
12254        self.drop_without_shutdown();
12255        _result
12256    }
12257
12258    fn send_raw(&self, mut result: Result<&[u8], i32>) -> Result<(), fidl::Error> {
12259        self.control_handle.inner.send::<fidl::encoding::ResultType<FileReadAtResponse, i32>>(
12260            result.map(|data| (data,)),
12261            self.tx_id,
12262            0x1607a293a60d723e,
12263            fidl::encoding::DynamicFlags::empty(),
12264        )
12265    }
12266}
12267
12268#[must_use = "FIDL methods require a response to be sent"]
12269#[derive(Debug)]
12270pub struct FileWriteAtResponder {
12271    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12272    tx_id: u32,
12273}
12274
12275/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12276/// if the responder is dropped without sending a response, so that the client
12277/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12278impl std::ops::Drop for FileWriteAtResponder {
12279    fn drop(&mut self) {
12280        self.control_handle.shutdown();
12281        // Safety: drops once, never accessed again
12282        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12283    }
12284}
12285
12286impl fidl::endpoints::Responder for FileWriteAtResponder {
12287    type ControlHandle = FileControlHandle;
12288
12289    fn control_handle(&self) -> &FileControlHandle {
12290        &self.control_handle
12291    }
12292
12293    fn drop_without_shutdown(mut self) {
12294        // Safety: drops once, never accessed again due to mem::forget
12295        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12296        // Prevent Drop from running (which would shut down the channel)
12297        std::mem::forget(self);
12298    }
12299}
12300
12301impl FileWriteAtResponder {
12302    /// Sends a response to the FIDL transaction.
12303    ///
12304    /// Sets the channel to shutdown if an error occurs.
12305    pub fn send(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12306        let _result = self.send_raw(result);
12307        if _result.is_err() {
12308            self.control_handle.shutdown();
12309        }
12310        self.drop_without_shutdown();
12311        _result
12312    }
12313
12314    /// Similar to "send" but does not shutdown the channel if an error occurs.
12315    pub fn send_no_shutdown_on_err(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12316        let _result = self.send_raw(result);
12317        self.drop_without_shutdown();
12318        _result
12319    }
12320
12321    fn send_raw(&self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
12322        self.control_handle.inner.send::<fidl::encoding::ResultType<FileWriteAtResponse, i32>>(
12323            result.map(|actual_count| (actual_count,)),
12324            self.tx_id,
12325            0x793eefc0045e792b,
12326            fidl::encoding::DynamicFlags::empty(),
12327        )
12328    }
12329}
12330
12331#[must_use = "FIDL methods require a response to be sent"]
12332#[derive(Debug)]
12333pub struct FileResizeResponder {
12334    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12335    tx_id: u32,
12336}
12337
12338/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12339/// if the responder is dropped without sending a response, so that the client
12340/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12341impl std::ops::Drop for FileResizeResponder {
12342    fn drop(&mut self) {
12343        self.control_handle.shutdown();
12344        // Safety: drops once, never accessed again
12345        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12346    }
12347}
12348
12349impl fidl::endpoints::Responder for FileResizeResponder {
12350    type ControlHandle = FileControlHandle;
12351
12352    fn control_handle(&self) -> &FileControlHandle {
12353        &self.control_handle
12354    }
12355
12356    fn drop_without_shutdown(mut self) {
12357        // Safety: drops once, never accessed again due to mem::forget
12358        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12359        // Prevent Drop from running (which would shut down the channel)
12360        std::mem::forget(self);
12361    }
12362}
12363
12364impl FileResizeResponder {
12365    /// Sends a response to the FIDL transaction.
12366    ///
12367    /// Sets the channel to shutdown if an error occurs.
12368    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12369        let _result = self.send_raw(result);
12370        if _result.is_err() {
12371            self.control_handle.shutdown();
12372        }
12373        self.drop_without_shutdown();
12374        _result
12375    }
12376
12377    /// Similar to "send" but does not shutdown the channel if an error occurs.
12378    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12379        let _result = self.send_raw(result);
12380        self.drop_without_shutdown();
12381        _result
12382    }
12383
12384    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12385        self.control_handle
12386            .inner
12387            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
12388                result,
12389                self.tx_id,
12390                0x2b80825f0535743a,
12391                fidl::encoding::DynamicFlags::empty(),
12392            )
12393    }
12394}
12395
12396#[must_use = "FIDL methods require a response to be sent"]
12397#[derive(Debug)]
12398pub struct FileGetBackingMemoryResponder {
12399    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12400    tx_id: u32,
12401}
12402
12403/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12404/// if the responder is dropped without sending a response, so that the client
12405/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12406impl std::ops::Drop for FileGetBackingMemoryResponder {
12407    fn drop(&mut self) {
12408        self.control_handle.shutdown();
12409        // Safety: drops once, never accessed again
12410        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12411    }
12412}
12413
12414impl fidl::endpoints::Responder for FileGetBackingMemoryResponder {
12415    type ControlHandle = FileControlHandle;
12416
12417    fn control_handle(&self) -> &FileControlHandle {
12418        &self.control_handle
12419    }
12420
12421    fn drop_without_shutdown(mut self) {
12422        // Safety: drops once, never accessed again due to mem::forget
12423        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12424        // Prevent Drop from running (which would shut down the channel)
12425        std::mem::forget(self);
12426    }
12427}
12428
12429impl FileGetBackingMemoryResponder {
12430    /// Sends a response to the FIDL transaction.
12431    ///
12432    /// Sets the channel to shutdown if an error occurs.
12433    pub fn send(self, mut result: Result<fidl::Vmo, i32>) -> Result<(), fidl::Error> {
12434        let _result = self.send_raw(result);
12435        if _result.is_err() {
12436            self.control_handle.shutdown();
12437        }
12438        self.drop_without_shutdown();
12439        _result
12440    }
12441
12442    /// Similar to "send" but does not shutdown the channel if an error occurs.
12443    pub fn send_no_shutdown_on_err(
12444        self,
12445        mut result: Result<fidl::Vmo, i32>,
12446    ) -> Result<(), fidl::Error> {
12447        let _result = self.send_raw(result);
12448        self.drop_without_shutdown();
12449        _result
12450    }
12451
12452    fn send_raw(&self, mut result: Result<fidl::Vmo, i32>) -> Result<(), fidl::Error> {
12453        self.control_handle
12454            .inner
12455            .send::<fidl::encoding::ResultType<FileGetBackingMemoryResponse, i32>>(
12456                result.map(|vmo| (vmo,)),
12457                self.tx_id,
12458                0xa6a9e654cbf62b,
12459                fidl::encoding::DynamicFlags::empty(),
12460            )
12461    }
12462}
12463
12464#[must_use = "FIDL methods require a response to be sent"]
12465#[derive(Debug)]
12466pub struct FileAllocateResponder {
12467    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12468    tx_id: u32,
12469}
12470
12471/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12472/// if the responder is dropped without sending a response, so that the client
12473/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12474impl std::ops::Drop for FileAllocateResponder {
12475    fn drop(&mut self) {
12476        self.control_handle.shutdown();
12477        // Safety: drops once, never accessed again
12478        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12479    }
12480}
12481
12482impl fidl::endpoints::Responder for FileAllocateResponder {
12483    type ControlHandle = FileControlHandle;
12484
12485    fn control_handle(&self) -> &FileControlHandle {
12486        &self.control_handle
12487    }
12488
12489    fn drop_without_shutdown(mut self) {
12490        // Safety: drops once, never accessed again due to mem::forget
12491        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12492        // Prevent Drop from running (which would shut down the channel)
12493        std::mem::forget(self);
12494    }
12495}
12496
12497impl FileAllocateResponder {
12498    /// Sends a response to the FIDL transaction.
12499    ///
12500    /// Sets the channel to shutdown if an error occurs.
12501    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12502        let _result = self.send_raw(result);
12503        if _result.is_err() {
12504            self.control_handle.shutdown();
12505        }
12506        self.drop_without_shutdown();
12507        _result
12508    }
12509
12510    /// Similar to "send" but does not shutdown the channel if an error occurs.
12511    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12512        let _result = self.send_raw(result);
12513        self.drop_without_shutdown();
12514        _result
12515    }
12516
12517    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12518        self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
12519            fidl::encoding::EmptyStruct,
12520            i32,
12521        >>(
12522            fidl::encoding::FlexibleResult::new(result),
12523            self.tx_id,
12524            0x77fa0c330b57fd2e,
12525            fidl::encoding::DynamicFlags::FLEXIBLE,
12526        )
12527    }
12528}
12529
12530#[must_use = "FIDL methods require a response to be sent"]
12531#[derive(Debug)]
12532pub struct FileEnableVerityResponder {
12533    control_handle: std::mem::ManuallyDrop<FileControlHandle>,
12534    tx_id: u32,
12535}
12536
12537/// Set the the channel to be shutdown (see [`FileControlHandle::shutdown`])
12538/// if the responder is dropped without sending a response, so that the client
12539/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
12540impl std::ops::Drop for FileEnableVerityResponder {
12541    fn drop(&mut self) {
12542        self.control_handle.shutdown();
12543        // Safety: drops once, never accessed again
12544        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12545    }
12546}
12547
12548impl fidl::endpoints::Responder for FileEnableVerityResponder {
12549    type ControlHandle = FileControlHandle;
12550
12551    fn control_handle(&self) -> &FileControlHandle {
12552        &self.control_handle
12553    }
12554
12555    fn drop_without_shutdown(mut self) {
12556        // Safety: drops once, never accessed again due to mem::forget
12557        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12558        // Prevent Drop from running (which would shut down the channel)
12559        std::mem::forget(self);
12560    }
12561}
12562
12563impl FileEnableVerityResponder {
12564    /// Sends a response to the FIDL transaction.
12565    ///
12566    /// Sets the channel to shutdown if an error occurs.
12567    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12568        let _result = self.send_raw(result);
12569        if _result.is_err() {
12570            self.control_handle.shutdown();
12571        }
12572        self.drop_without_shutdown();
12573        _result
12574    }
12575
12576    /// Similar to "send" but does not shutdown the channel if an error occurs.
12577    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12578        let _result = self.send_raw(result);
12579        self.drop_without_shutdown();
12580        _result
12581    }
12582
12583    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
12584        self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
12585            fidl::encoding::EmptyStruct,
12586            i32,
12587        >>(
12588            fidl::encoding::FlexibleResult::new(result),
12589            self.tx_id,
12590            0x2c421ec3faaeb8bb,
12591            fidl::encoding::DynamicFlags::FLEXIBLE,
12592        )
12593    }
12594}
12595
12596#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
12597pub struct LinkableMarker;
12598
12599impl fidl::endpoints::ProtocolMarker for LinkableMarker {
12600    type Proxy = LinkableProxy;
12601    type RequestStream = LinkableRequestStream;
12602    #[cfg(target_os = "fuchsia")]
12603    type SynchronousProxy = LinkableSynchronousProxy;
12604
12605    const DEBUG_NAME: &'static str = "(anonymous) Linkable";
12606}
12607pub type LinkableLinkIntoResult = Result<(), i32>;
12608
12609pub trait LinkableProxyInterface: Send + Sync {
12610    type LinkIntoResponseFut: std::future::Future<Output = Result<LinkableLinkIntoResult, fidl::Error>>
12611        + Send;
12612    fn r#link_into(&self, dst_parent_token: fidl::Event, dst: &str) -> Self::LinkIntoResponseFut;
12613}
12614#[derive(Debug)]
12615#[cfg(target_os = "fuchsia")]
12616pub struct LinkableSynchronousProxy {
12617    client: fidl::client::sync::Client,
12618}
12619
12620#[cfg(target_os = "fuchsia")]
12621impl fidl::endpoints::SynchronousProxy for LinkableSynchronousProxy {
12622    type Proxy = LinkableProxy;
12623    type Protocol = LinkableMarker;
12624
12625    fn from_channel(inner: fidl::Channel) -> Self {
12626        Self::new(inner)
12627    }
12628
12629    fn into_channel(self) -> fidl::Channel {
12630        self.client.into_channel()
12631    }
12632
12633    fn as_channel(&self) -> &fidl::Channel {
12634        self.client.as_channel()
12635    }
12636}
12637
12638#[cfg(target_os = "fuchsia")]
12639impl LinkableSynchronousProxy {
12640    pub fn new(channel: fidl::Channel) -> Self {
12641        let protocol_name = <LinkableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
12642        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
12643    }
12644
12645    pub fn into_channel(self) -> fidl::Channel {
12646        self.client.into_channel()
12647    }
12648
12649    /// Waits until an event arrives and returns it. It is safe for other
12650    /// threads to make concurrent requests while waiting for an event.
12651    pub fn wait_for_event(
12652        &self,
12653        deadline: zx::MonotonicInstant,
12654    ) -> Result<LinkableEvent, fidl::Error> {
12655        LinkableEvent::decode(self.client.wait_for_event(deadline)?)
12656    }
12657
12658    /// Creates a link to this this object with name `dst` in the directory represented by
12659    /// `dst_parent_token`.
12660    ///
12661    /// `dst` must be a resolved object name. Including "/" in the string will return
12662    /// `ZX_ERR_INVALID_ARGS`.
12663    ///
12664    /// This method requires the maximal set of rights supported by the filesystem for this object.
12665    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
12666    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
12667    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
12668    /// `ZX_ERR_ACCESS_DENIED`.
12669    ///
12670    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
12671    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
12672    ///
12673    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
12674    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
12675    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
12676    ///
12677    /// This method does not have the same atomicity properties has the `Directory::Link` method,
12678    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
12679    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
12680    pub fn r#link_into(
12681        &self,
12682        mut dst_parent_token: fidl::Event,
12683        mut dst: &str,
12684        ___deadline: zx::MonotonicInstant,
12685    ) -> Result<LinkableLinkIntoResult, fidl::Error> {
12686        let _response = self.client.send_query::<
12687            LinkableLinkIntoRequest,
12688            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
12689        >(
12690            (dst_parent_token, dst,),
12691            0x54f3949246a03e74,
12692            fidl::encoding::DynamicFlags::empty(),
12693            ___deadline,
12694        )?;
12695        Ok(_response.map(|x| x))
12696    }
12697}
12698
12699#[cfg(target_os = "fuchsia")]
12700impl From<LinkableSynchronousProxy> for zx::Handle {
12701    fn from(value: LinkableSynchronousProxy) -> Self {
12702        value.into_channel().into()
12703    }
12704}
12705
12706#[cfg(target_os = "fuchsia")]
12707impl From<fidl::Channel> for LinkableSynchronousProxy {
12708    fn from(value: fidl::Channel) -> Self {
12709        Self::new(value)
12710    }
12711}
12712
12713#[derive(Debug, Clone)]
12714pub struct LinkableProxy {
12715    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
12716}
12717
12718impl fidl::endpoints::Proxy for LinkableProxy {
12719    type Protocol = LinkableMarker;
12720
12721    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
12722        Self::new(inner)
12723    }
12724
12725    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
12726        self.client.into_channel().map_err(|client| Self { client })
12727    }
12728
12729    fn as_channel(&self) -> &::fidl::AsyncChannel {
12730        self.client.as_channel()
12731    }
12732}
12733
12734impl LinkableProxy {
12735    /// Create a new Proxy for fuchsia.io/Linkable.
12736    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
12737        let protocol_name = <LinkableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
12738        Self { client: fidl::client::Client::new(channel, protocol_name) }
12739    }
12740
12741    /// Get a Stream of events from the remote end of the protocol.
12742    ///
12743    /// # Panics
12744    ///
12745    /// Panics if the event stream was already taken.
12746    pub fn take_event_stream(&self) -> LinkableEventStream {
12747        LinkableEventStream { event_receiver: self.client.take_event_receiver() }
12748    }
12749
12750    /// Creates a link to this this object with name `dst` in the directory represented by
12751    /// `dst_parent_token`.
12752    ///
12753    /// `dst` must be a resolved object name. Including "/" in the string will return
12754    /// `ZX_ERR_INVALID_ARGS`.
12755    ///
12756    /// This method requires the maximal set of rights supported by the filesystem for this object.
12757    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
12758    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
12759    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
12760    /// `ZX_ERR_ACCESS_DENIED`.
12761    ///
12762    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
12763    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
12764    ///
12765    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
12766    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
12767    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
12768    ///
12769    /// This method does not have the same atomicity properties has the `Directory::Link` method,
12770    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
12771    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
12772    pub fn r#link_into(
12773        &self,
12774        mut dst_parent_token: fidl::Event,
12775        mut dst: &str,
12776    ) -> fidl::client::QueryResponseFut<
12777        LinkableLinkIntoResult,
12778        fidl::encoding::DefaultFuchsiaResourceDialect,
12779    > {
12780        LinkableProxyInterface::r#link_into(self, dst_parent_token, dst)
12781    }
12782}
12783
12784impl LinkableProxyInterface for LinkableProxy {
12785    type LinkIntoResponseFut = fidl::client::QueryResponseFut<
12786        LinkableLinkIntoResult,
12787        fidl::encoding::DefaultFuchsiaResourceDialect,
12788    >;
12789    fn r#link_into(
12790        &self,
12791        mut dst_parent_token: fidl::Event,
12792        mut dst: &str,
12793    ) -> Self::LinkIntoResponseFut {
12794        fn _decode(
12795            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
12796        ) -> Result<LinkableLinkIntoResult, fidl::Error> {
12797            let _response = fidl::client::decode_transaction_body::<
12798                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
12799                fidl::encoding::DefaultFuchsiaResourceDialect,
12800                0x54f3949246a03e74,
12801            >(_buf?)?;
12802            Ok(_response.map(|x| x))
12803        }
12804        self.client.send_query_and_decode::<LinkableLinkIntoRequest, LinkableLinkIntoResult>(
12805            (dst_parent_token, dst),
12806            0x54f3949246a03e74,
12807            fidl::encoding::DynamicFlags::empty(),
12808            _decode,
12809        )
12810    }
12811}
12812
12813pub struct LinkableEventStream {
12814    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
12815}
12816
12817impl std::marker::Unpin for LinkableEventStream {}
12818
12819impl futures::stream::FusedStream for LinkableEventStream {
12820    fn is_terminated(&self) -> bool {
12821        self.event_receiver.is_terminated()
12822    }
12823}
12824
12825impl futures::Stream for LinkableEventStream {
12826    type Item = Result<LinkableEvent, fidl::Error>;
12827
12828    fn poll_next(
12829        mut self: std::pin::Pin<&mut Self>,
12830        cx: &mut std::task::Context<'_>,
12831    ) -> std::task::Poll<Option<Self::Item>> {
12832        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
12833            &mut self.event_receiver,
12834            cx
12835        )?) {
12836            Some(buf) => std::task::Poll::Ready(Some(LinkableEvent::decode(buf))),
12837            None => std::task::Poll::Ready(None),
12838        }
12839    }
12840}
12841
12842#[derive(Debug)]
12843pub enum LinkableEvent {}
12844
12845impl LinkableEvent {
12846    /// Decodes a message buffer as a [`LinkableEvent`].
12847    fn decode(
12848        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
12849    ) -> Result<LinkableEvent, fidl::Error> {
12850        let (bytes, _handles) = buf.split_mut();
12851        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
12852        debug_assert_eq!(tx_header.tx_id, 0);
12853        match tx_header.ordinal {
12854            _ => Err(fidl::Error::UnknownOrdinal {
12855                ordinal: tx_header.ordinal,
12856                protocol_name: <LinkableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
12857            }),
12858        }
12859    }
12860}
12861
12862/// A Stream of incoming requests for fuchsia.io/Linkable.
12863pub struct LinkableRequestStream {
12864    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
12865    is_terminated: bool,
12866}
12867
12868impl std::marker::Unpin for LinkableRequestStream {}
12869
12870impl futures::stream::FusedStream for LinkableRequestStream {
12871    fn is_terminated(&self) -> bool {
12872        self.is_terminated
12873    }
12874}
12875
12876impl fidl::endpoints::RequestStream for LinkableRequestStream {
12877    type Protocol = LinkableMarker;
12878    type ControlHandle = LinkableControlHandle;
12879
12880    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
12881        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
12882    }
12883
12884    fn control_handle(&self) -> Self::ControlHandle {
12885        LinkableControlHandle { inner: self.inner.clone() }
12886    }
12887
12888    fn into_inner(
12889        self,
12890    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
12891    {
12892        (self.inner, self.is_terminated)
12893    }
12894
12895    fn from_inner(
12896        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
12897        is_terminated: bool,
12898    ) -> Self {
12899        Self { inner, is_terminated }
12900    }
12901}
12902
12903impl futures::Stream for LinkableRequestStream {
12904    type Item = Result<LinkableRequest, fidl::Error>;
12905
12906    fn poll_next(
12907        mut self: std::pin::Pin<&mut Self>,
12908        cx: &mut std::task::Context<'_>,
12909    ) -> std::task::Poll<Option<Self::Item>> {
12910        let this = &mut *self;
12911        if this.inner.check_shutdown(cx) {
12912            this.is_terminated = true;
12913            return std::task::Poll::Ready(None);
12914        }
12915        if this.is_terminated {
12916            panic!("polled LinkableRequestStream after completion");
12917        }
12918        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
12919            |bytes, handles| {
12920                match this.inner.channel().read_etc(cx, bytes, handles) {
12921                    std::task::Poll::Ready(Ok(())) => {}
12922                    std::task::Poll::Pending => return std::task::Poll::Pending,
12923                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
12924                        this.is_terminated = true;
12925                        return std::task::Poll::Ready(None);
12926                    }
12927                    std::task::Poll::Ready(Err(e)) => {
12928                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
12929                            e.into(),
12930                        ))))
12931                    }
12932                }
12933
12934                // A message has been received from the channel
12935                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
12936
12937                std::task::Poll::Ready(Some(match header.ordinal {
12938                    0x54f3949246a03e74 => {
12939                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
12940                        let mut req = fidl::new_empty!(
12941                            LinkableLinkIntoRequest,
12942                            fidl::encoding::DefaultFuchsiaResourceDialect
12943                        );
12944                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<LinkableLinkIntoRequest>(&header, _body_bytes, handles, &mut req)?;
12945                        let control_handle = LinkableControlHandle { inner: this.inner.clone() };
12946                        Ok(LinkableRequest::LinkInto {
12947                            dst_parent_token: req.dst_parent_token,
12948                            dst: req.dst,
12949
12950                            responder: LinkableLinkIntoResponder {
12951                                control_handle: std::mem::ManuallyDrop::new(control_handle),
12952                                tx_id: header.tx_id,
12953                            },
12954                        })
12955                    }
12956                    _ => Err(fidl::Error::UnknownOrdinal {
12957                        ordinal: header.ordinal,
12958                        protocol_name:
12959                            <LinkableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
12960                    }),
12961                }))
12962            },
12963        )
12964    }
12965}
12966
12967#[derive(Debug)]
12968pub enum LinkableRequest {
12969    /// Creates a link to this this object with name `dst` in the directory represented by
12970    /// `dst_parent_token`.
12971    ///
12972    /// `dst` must be a resolved object name. Including "/" in the string will return
12973    /// `ZX_ERR_INVALID_ARGS`.
12974    ///
12975    /// This method requires the maximal set of rights supported by the filesystem for this object.
12976    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
12977    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
12978    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
12979    /// `ZX_ERR_ACCESS_DENIED`.
12980    ///
12981    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
12982    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
12983    ///
12984    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
12985    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
12986    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
12987    ///
12988    /// This method does not have the same atomicity properties has the `Directory::Link` method,
12989    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
12990    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
12991    LinkInto { dst_parent_token: fidl::Event, dst: String, responder: LinkableLinkIntoResponder },
12992}
12993
12994impl LinkableRequest {
12995    #[allow(irrefutable_let_patterns)]
12996    pub fn into_link_into(self) -> Option<(fidl::Event, String, LinkableLinkIntoResponder)> {
12997        if let LinkableRequest::LinkInto { dst_parent_token, dst, responder } = self {
12998            Some((dst_parent_token, dst, responder))
12999        } else {
13000            None
13001        }
13002    }
13003
13004    /// Name of the method defined in FIDL
13005    pub fn method_name(&self) -> &'static str {
13006        match *self {
13007            LinkableRequest::LinkInto { .. } => "link_into",
13008        }
13009    }
13010}
13011
13012#[derive(Debug, Clone)]
13013pub struct LinkableControlHandle {
13014    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
13015}
13016
13017impl fidl::endpoints::ControlHandle for LinkableControlHandle {
13018    fn shutdown(&self) {
13019        self.inner.shutdown()
13020    }
13021    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
13022        self.inner.shutdown_with_epitaph(status)
13023    }
13024
13025    fn is_closed(&self) -> bool {
13026        self.inner.channel().is_closed()
13027    }
13028    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
13029        self.inner.channel().on_closed()
13030    }
13031
13032    #[cfg(target_os = "fuchsia")]
13033    fn signal_peer(
13034        &self,
13035        clear_mask: zx::Signals,
13036        set_mask: zx::Signals,
13037    ) -> Result<(), zx_status::Status> {
13038        use fidl::Peered;
13039        self.inner.channel().signal_peer(clear_mask, set_mask)
13040    }
13041}
13042
13043impl LinkableControlHandle {}
13044
13045#[must_use = "FIDL methods require a response to be sent"]
13046#[derive(Debug)]
13047pub struct LinkableLinkIntoResponder {
13048    control_handle: std::mem::ManuallyDrop<LinkableControlHandle>,
13049    tx_id: u32,
13050}
13051
13052/// Set the the channel to be shutdown (see [`LinkableControlHandle::shutdown`])
13053/// if the responder is dropped without sending a response, so that the client
13054/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
13055impl std::ops::Drop for LinkableLinkIntoResponder {
13056    fn drop(&mut self) {
13057        self.control_handle.shutdown();
13058        // Safety: drops once, never accessed again
13059        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
13060    }
13061}
13062
13063impl fidl::endpoints::Responder for LinkableLinkIntoResponder {
13064    type ControlHandle = LinkableControlHandle;
13065
13066    fn control_handle(&self) -> &LinkableControlHandle {
13067        &self.control_handle
13068    }
13069
13070    fn drop_without_shutdown(mut self) {
13071        // Safety: drops once, never accessed again due to mem::forget
13072        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
13073        // Prevent Drop from running (which would shut down the channel)
13074        std::mem::forget(self);
13075    }
13076}
13077
13078impl LinkableLinkIntoResponder {
13079    /// Sends a response to the FIDL transaction.
13080    ///
13081    /// Sets the channel to shutdown if an error occurs.
13082    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
13083        let _result = self.send_raw(result);
13084        if _result.is_err() {
13085            self.control_handle.shutdown();
13086        }
13087        self.drop_without_shutdown();
13088        _result
13089    }
13090
13091    /// Similar to "send" but does not shutdown the channel if an error occurs.
13092    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
13093        let _result = self.send_raw(result);
13094        self.drop_without_shutdown();
13095        _result
13096    }
13097
13098    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
13099        self.control_handle
13100            .inner
13101            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
13102                result,
13103                self.tx_id,
13104                0x54f3949246a03e74,
13105                fidl::encoding::DynamicFlags::empty(),
13106            )
13107    }
13108}
13109
13110#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
13111pub struct NodeMarker;
13112
13113impl fidl::endpoints::ProtocolMarker for NodeMarker {
13114    type Proxy = NodeProxy;
13115    type RequestStream = NodeRequestStream;
13116    #[cfg(target_os = "fuchsia")]
13117    type SynchronousProxy = NodeSynchronousProxy;
13118
13119    const DEBUG_NAME: &'static str = "fuchsia.io.Node";
13120}
13121impl fidl::endpoints::DiscoverableProtocolMarker for NodeMarker {}
13122pub type NodeGetFlagsResult = Result<Flags, i32>;
13123pub type NodeSetFlagsResult = Result<(), i32>;
13124pub type NodeGetAttributesResult = Result<(MutableNodeAttributes, ImmutableNodeAttributes), i32>;
13125pub type NodeUpdateAttributesResult = Result<(), i32>;
13126pub type NodeSyncResult = Result<(), i32>;
13127pub type NodeGetExtendedAttributeResult = Result<ExtendedAttributeValue, i32>;
13128pub type NodeSetExtendedAttributeResult = Result<(), i32>;
13129pub type NodeRemoveExtendedAttributeResult = Result<(), i32>;
13130
13131pub trait NodeProxyInterface: Send + Sync {
13132    fn r#clone(
13133        &self,
13134        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
13135    ) -> Result<(), fidl::Error>;
13136    type CloseResponseFut: std::future::Future<
13137            Output = Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error>,
13138        > + Send;
13139    fn r#close(&self) -> Self::CloseResponseFut;
13140    type QueryResponseFut: std::future::Future<Output = Result<Vec<u8>, fidl::Error>> + Send;
13141    fn r#query(&self) -> Self::QueryResponseFut;
13142    fn r#deprecated_clone(
13143        &self,
13144        flags: OpenFlags,
13145        object: fidl::endpoints::ServerEnd<NodeMarker>,
13146    ) -> Result<(), fidl::Error>;
13147    type GetAttrResponseFut: std::future::Future<Output = Result<(i32, NodeAttributes), fidl::Error>>
13148        + Send;
13149    fn r#get_attr(&self) -> Self::GetAttrResponseFut;
13150    type SetAttrResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
13151    fn r#set_attr(
13152        &self,
13153        flags: NodeAttributeFlags,
13154        attributes: &NodeAttributes,
13155    ) -> Self::SetAttrResponseFut;
13156    type DeprecatedGetFlagsResponseFut: std::future::Future<Output = Result<(i32, OpenFlags), fidl::Error>>
13157        + Send;
13158    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut;
13159    type DeprecatedSetFlagsResponseFut: std::future::Future<Output = Result<i32, fidl::Error>>
13160        + Send;
13161    fn r#deprecated_set_flags(&self, flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut;
13162    type GetFlagsResponseFut: std::future::Future<Output = Result<NodeGetFlagsResult, fidl::Error>>
13163        + Send;
13164    fn r#get_flags(&self) -> Self::GetFlagsResponseFut;
13165    type SetFlagsResponseFut: std::future::Future<Output = Result<NodeSetFlagsResult, fidl::Error>>
13166        + Send;
13167    fn r#set_flags(&self, flags: Flags) -> Self::SetFlagsResponseFut;
13168    type QueryFilesystemResponseFut: std::future::Future<Output = Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error>>
13169        + Send;
13170    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut;
13171    type GetConnectionInfoResponseFut: std::future::Future<Output = Result<ConnectionInfo, fidl::Error>>
13172        + Send;
13173    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut;
13174    type GetAttributesResponseFut: std::future::Future<Output = Result<NodeGetAttributesResult, fidl::Error>>
13175        + Send;
13176    fn r#get_attributes(&self, query: NodeAttributesQuery) -> Self::GetAttributesResponseFut;
13177    type UpdateAttributesResponseFut: std::future::Future<Output = Result<NodeUpdateAttributesResult, fidl::Error>>
13178        + Send;
13179    fn r#update_attributes(
13180        &self,
13181        payload: &MutableNodeAttributes,
13182    ) -> Self::UpdateAttributesResponseFut;
13183    type SyncResponseFut: std::future::Future<Output = Result<NodeSyncResult, fidl::Error>> + Send;
13184    fn r#sync(&self) -> Self::SyncResponseFut;
13185    fn r#list_extended_attributes(
13186        &self,
13187        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
13188    ) -> Result<(), fidl::Error>;
13189    type GetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeGetExtendedAttributeResult, fidl::Error>>
13190        + Send;
13191    fn r#get_extended_attribute(&self, name: &[u8]) -> Self::GetExtendedAttributeResponseFut;
13192    type SetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeSetExtendedAttributeResult, fidl::Error>>
13193        + Send;
13194    fn r#set_extended_attribute(
13195        &self,
13196        name: &[u8],
13197        value: ExtendedAttributeValue,
13198        mode: SetExtendedAttributeMode,
13199    ) -> Self::SetExtendedAttributeResponseFut;
13200    type RemoveExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeRemoveExtendedAttributeResult, fidl::Error>>
13201        + Send;
13202    fn r#remove_extended_attribute(&self, name: &[u8]) -> Self::RemoveExtendedAttributeResponseFut;
13203}
13204#[derive(Debug)]
13205#[cfg(target_os = "fuchsia")]
13206pub struct NodeSynchronousProxy {
13207    client: fidl::client::sync::Client,
13208}
13209
13210#[cfg(target_os = "fuchsia")]
13211impl fidl::endpoints::SynchronousProxy for NodeSynchronousProxy {
13212    type Proxy = NodeProxy;
13213    type Protocol = NodeMarker;
13214
13215    fn from_channel(inner: fidl::Channel) -> Self {
13216        Self::new(inner)
13217    }
13218
13219    fn into_channel(self) -> fidl::Channel {
13220        self.client.into_channel()
13221    }
13222
13223    fn as_channel(&self) -> &fidl::Channel {
13224        self.client.as_channel()
13225    }
13226}
13227
13228#[cfg(target_os = "fuchsia")]
13229impl NodeSynchronousProxy {
13230    pub fn new(channel: fidl::Channel) -> Self {
13231        let protocol_name = <NodeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
13232        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
13233    }
13234
13235    pub fn into_channel(self) -> fidl::Channel {
13236        self.client.into_channel()
13237    }
13238
13239    /// Waits until an event arrives and returns it. It is safe for other
13240    /// threads to make concurrent requests while waiting for an event.
13241    pub fn wait_for_event(&self, deadline: zx::MonotonicInstant) -> Result<NodeEvent, fidl::Error> {
13242        NodeEvent::decode(self.client.wait_for_event(deadline)?)
13243    }
13244
13245    pub fn r#clone(
13246        &self,
13247        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
13248    ) -> Result<(), fidl::Error> {
13249        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
13250            (request,),
13251            0x20d8a7aba2168a79,
13252            fidl::encoding::DynamicFlags::empty(),
13253        )
13254    }
13255
13256    /// Terminates the connection.
13257    ///
13258    /// After calling `Close`, the client must not send any other requests.
13259    ///
13260    /// Servers, after sending the status response, should close the connection
13261    /// regardless of status and without sending an epitaph.
13262    ///
13263    /// Closing the client end of the channel should be semantically equivalent
13264    /// to calling `Close` without knowing when the close has completed or its
13265    /// status.
13266    pub fn r#close(
13267        &self,
13268        ___deadline: zx::MonotonicInstant,
13269    ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
13270        let _response = self.client.send_query::<
13271            fidl::encoding::EmptyPayload,
13272            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
13273        >(
13274            (),
13275            0x5ac5d459ad7f657e,
13276            fidl::encoding::DynamicFlags::empty(),
13277            ___deadline,
13278        )?;
13279        Ok(_response.map(|x| x))
13280    }
13281
13282    pub fn r#query(&self, ___deadline: zx::MonotonicInstant) -> Result<Vec<u8>, fidl::Error> {
13283        let _response = self.client.send_query::<
13284            fidl::encoding::EmptyPayload,
13285            fidl_fuchsia_unknown::QueryableQueryResponse,
13286        >(
13287            (),
13288            0x2658edee9decfc06,
13289            fidl::encoding::DynamicFlags::empty(),
13290            ___deadline,
13291        )?;
13292        Ok(_response.protocol)
13293    }
13294
13295    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
13296    pub fn r#deprecated_clone(
13297        &self,
13298        mut flags: OpenFlags,
13299        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
13300    ) -> Result<(), fidl::Error> {
13301        self.client.send::<NodeDeprecatedCloneRequest>(
13302            (flags, object),
13303            0x5a61678f293ce16f,
13304            fidl::encoding::DynamicFlags::FLEXIBLE,
13305        )
13306    }
13307
13308    /// Acquires information about the node.
13309    ///
13310    /// This method does not require any rights.
13311    pub fn r#get_attr(
13312        &self,
13313        ___deadline: zx::MonotonicInstant,
13314    ) -> Result<(i32, NodeAttributes), fidl::Error> {
13315        let _response =
13316            self.client.send_query::<fidl::encoding::EmptyPayload, NodeGetAttrResponse>(
13317                (),
13318                0x78985e216314dafd,
13319                fidl::encoding::DynamicFlags::empty(),
13320                ___deadline,
13321            )?;
13322        Ok((_response.s, _response.attributes))
13323    }
13324
13325    /// Updates information about the node.
13326    ///
13327    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
13328    ///
13329    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
13330    /// `ZX_ERR_BAD_HANDLE`.
13331    pub fn r#set_attr(
13332        &self,
13333        mut flags: NodeAttributeFlags,
13334        mut attributes: &NodeAttributes,
13335        ___deadline: zx::MonotonicInstant,
13336    ) -> Result<i32, fidl::Error> {
13337        let _response = self.client.send_query::<NodeSetAttrRequest, NodeSetAttrResponse>(
13338            (flags, attributes),
13339            0x4186c0f40d938f46,
13340            fidl::encoding::DynamicFlags::empty(),
13341            ___deadline,
13342        )?;
13343        Ok(_response.s)
13344    }
13345
13346    /// [DEPRECATED - Use new GetFlags method instead.]
13347    pub fn r#deprecated_get_flags(
13348        &self,
13349        ___deadline: zx::MonotonicInstant,
13350    ) -> Result<(i32, OpenFlags), fidl::Error> {
13351        let _response = self
13352            .client
13353            .send_query::<fidl::encoding::EmptyPayload, NodeDeprecatedGetFlagsResponse>(
13354                (),
13355                0x5b88fffb8eda3aa1,
13356                fidl::encoding::DynamicFlags::empty(),
13357                ___deadline,
13358            )?;
13359        Ok((_response.s, _response.flags))
13360    }
13361
13362    /// [DEPRECATED - Use new SetFlags method instead.]
13363    pub fn r#deprecated_set_flags(
13364        &self,
13365        mut flags: OpenFlags,
13366        ___deadline: zx::MonotonicInstant,
13367    ) -> Result<i32, fidl::Error> {
13368        let _response = self
13369            .client
13370            .send_query::<NodeDeprecatedSetFlagsRequest, NodeDeprecatedSetFlagsResponse>(
13371                (flags,),
13372                0x5295b76c71fde733,
13373                fidl::encoding::DynamicFlags::empty(),
13374                ___deadline,
13375            )?;
13376        Ok(_response.s)
13377    }
13378
13379    /// Queries the flags that apply to this node after it has been opened/created. This method does
13380    /// not require any rights.
13381    ///
13382    /// Note that the final set of flags that apply to the connection may differ from those
13383    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
13384    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
13385    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
13386    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
13387    pub fn r#get_flags(
13388        &self,
13389        ___deadline: zx::MonotonicInstant,
13390    ) -> Result<NodeGetFlagsResult, fidl::Error> {
13391        let _response = self.client.send_query::<
13392            fidl::encoding::EmptyPayload,
13393            fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
13394        >(
13395            (),
13396            0x176eb318f64ec23,
13397            fidl::encoding::DynamicFlags::FLEXIBLE,
13398            ___deadline,
13399        )?
13400        .into_result::<NodeMarker>("get_flags")?;
13401        Ok(_response.map(|x| x.flags))
13402    }
13403
13404    /// Sets the flags that apply to this node after it has been opened. This method does not
13405    /// require any rights.
13406    ///
13407    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
13408    /// clear append mode.
13409    ///
13410    /// Errors:
13411    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
13412    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
13413    pub fn r#set_flags(
13414        &self,
13415        mut flags: Flags,
13416        ___deadline: zx::MonotonicInstant,
13417    ) -> Result<NodeSetFlagsResult, fidl::Error> {
13418        let _response = self.client.send_query::<
13419            NodeSetFlagsRequest,
13420            fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
13421        >(
13422            (flags,),
13423            0x55a8028685791ea8,
13424            fidl::encoding::DynamicFlags::FLEXIBLE,
13425            ___deadline,
13426        )?
13427        .into_result::<NodeMarker>("set_flags")?;
13428        Ok(_response.map(|x| x))
13429    }
13430
13431    /// Query the filesystem for filesystem-specific information.
13432    pub fn r#query_filesystem(
13433        &self,
13434        ___deadline: zx::MonotonicInstant,
13435    ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
13436        let _response =
13437            self.client.send_query::<fidl::encoding::EmptyPayload, NodeQueryFilesystemResponse>(
13438                (),
13439                0x6f344a1c6b0a0610,
13440                fidl::encoding::DynamicFlags::empty(),
13441                ___deadline,
13442            )?;
13443        Ok((_response.s, _response.info))
13444    }
13445
13446    /// Acquires information about the connection.
13447    ///
13448    /// This method does not require any rights.
13449    pub fn r#get_connection_info(
13450        &self,
13451        ___deadline: zx::MonotonicInstant,
13452    ) -> Result<ConnectionInfo, fidl::Error> {
13453        let _response = self.client.send_query::<fidl::encoding::EmptyPayload, ConnectionInfo>(
13454            (),
13455            0x584c377c7c0a6d0b,
13456            fidl::encoding::DynamicFlags::empty(),
13457            ___deadline,
13458        )?;
13459        Ok(_response)
13460    }
13461
13462    /// Acquires information about the node.
13463    ///
13464    /// The attributes of a node should be stable, independent of the
13465    /// specific protocol used to access it.
13466    ///
13467    /// If a particular attribute is not applicable or not supported,
13468    /// filesystems should leave the corresponding field absent.
13469    ///
13470    /// + `query` a bit-mask specifying which attributes to fetch. The server
13471    ///   should not return more than necessary.
13472    /// - `attributes` the returned attributes.
13473    ///
13474    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
13475    pub fn r#get_attributes(
13476        &self,
13477        mut query: NodeAttributesQuery,
13478        ___deadline: zx::MonotonicInstant,
13479    ) -> Result<NodeGetAttributesResult, fidl::Error> {
13480        let _response = self.client.send_query::<
13481            NodeGetAttributesRequest,
13482            fidl::encoding::ResultType<NodeAttributes2, i32>,
13483        >(
13484            (query,),
13485            0x3d4396a638ea053b,
13486            fidl::encoding::DynamicFlags::empty(),
13487            ___deadline,
13488        )?;
13489        Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
13490    }
13491
13492    /// Updates information about the node.
13493    ///
13494    /// + `attributes` the presence of a table field in `attributes` indicates
13495    /// the intent to update the corresponding attribute.
13496    ///
13497    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
13498    ///
13499    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
13500    pub fn r#update_attributes(
13501        &self,
13502        mut payload: &MutableNodeAttributes,
13503        ___deadline: zx::MonotonicInstant,
13504    ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
13505        let _response = self.client.send_query::<
13506            MutableNodeAttributes,
13507            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
13508        >(
13509            payload,
13510            0x3308c1da5a89bf08,
13511            fidl::encoding::DynamicFlags::empty(),
13512            ___deadline,
13513        )?;
13514        Ok(_response.map(|x| x))
13515    }
13516
13517    /// Synchronizes updates to the node to the underlying media, if it exists.
13518    ///
13519    /// This method will return when the filesystem server has flushed the
13520    /// relevant updates to the underlying media, but does not guarantee the
13521    /// underlying media has persisted the information, nor that any information
13522    /// is committed to hardware. Clients may use `Sync` to ensure ordering
13523    /// between operations.
13524    ///
13525    /// This method does not require any rights.
13526    pub fn r#sync(&self, ___deadline: zx::MonotonicInstant) -> Result<NodeSyncResult, fidl::Error> {
13527        let _response = self.client.send_query::<
13528            fidl::encoding::EmptyPayload,
13529            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
13530        >(
13531            (),
13532            0x2c5c27ca0ab5dc49,
13533            fidl::encoding::DynamicFlags::empty(),
13534            ___deadline,
13535        )?;
13536        Ok(_response.map(|x| x))
13537    }
13538
13539    /// Creates an iterator over all the extended attribute names associated
13540    /// with this node. If an error occurs it is returned as an epitaph on the
13541    /// iterator request channel, and then the channel is closed.
13542    ///
13543    /// GetExtendedAttributes can be used with any of these names to retrieve
13544    /// the associated value.
13545    ///
13546    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
13547    pub fn r#list_extended_attributes(
13548        &self,
13549        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
13550    ) -> Result<(), fidl::Error> {
13551        self.client.send::<NodeListExtendedAttributesRequest>(
13552            (iterator,),
13553            0x4b61033de007fcd0,
13554            fidl::encoding::DynamicFlags::empty(),
13555        )
13556    }
13557
13558    /// Get the value associated with the given attribute `name` for this node.
13559    ///
13560    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
13561    /// particular structure is imposed on them.
13562    ///
13563    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
13564    pub fn r#get_extended_attribute(
13565        &self,
13566        mut name: &[u8],
13567        ___deadline: zx::MonotonicInstant,
13568    ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
13569        let _response = self.client.send_query::<
13570            NodeGetExtendedAttributeRequest,
13571            fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
13572        >(
13573            (name,),
13574            0x45ffa3ccfdeb76db,
13575            fidl::encoding::DynamicFlags::empty(),
13576            ___deadline,
13577        )?;
13578        Ok(_response.map(|x| x))
13579    }
13580
13581    /// Set the value for the given attribute `name` to `value` for this node.
13582    ///
13583    /// The attribute name may exist, in which case the attribute is updated.
13584    /// If the attribute doesn't exist, it is created. The name should have no
13585    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
13586    ///
13587    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
13588    pub fn r#set_extended_attribute(
13589        &self,
13590        mut name: &[u8],
13591        mut value: ExtendedAttributeValue,
13592        mut mode: SetExtendedAttributeMode,
13593        ___deadline: zx::MonotonicInstant,
13594    ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
13595        let _response = self.client.send_query::<
13596            NodeSetExtendedAttributeRequest,
13597            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
13598        >(
13599            (name, &mut value, mode,),
13600            0x4a951362f681f23c,
13601            fidl::encoding::DynamicFlags::empty(),
13602            ___deadline,
13603        )?;
13604        Ok(_response.map(|x| x))
13605    }
13606
13607    /// Remove the specified extended attribute.
13608    ///
13609    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
13610    ///
13611    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
13612    pub fn r#remove_extended_attribute(
13613        &self,
13614        mut name: &[u8],
13615        ___deadline: zx::MonotonicInstant,
13616    ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
13617        let _response = self.client.send_query::<
13618            NodeRemoveExtendedAttributeRequest,
13619            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
13620        >(
13621            (name,),
13622            0x7a0b9f3a9bf9032d,
13623            fidl::encoding::DynamicFlags::empty(),
13624            ___deadline,
13625        )?;
13626        Ok(_response.map(|x| x))
13627    }
13628}
13629
13630#[cfg(target_os = "fuchsia")]
13631impl From<NodeSynchronousProxy> for zx::Handle {
13632    fn from(value: NodeSynchronousProxy) -> Self {
13633        value.into_channel().into()
13634    }
13635}
13636
13637#[cfg(target_os = "fuchsia")]
13638impl From<fidl::Channel> for NodeSynchronousProxy {
13639    fn from(value: fidl::Channel) -> Self {
13640        Self::new(value)
13641    }
13642}
13643
13644#[derive(Debug, Clone)]
13645pub struct NodeProxy {
13646    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
13647}
13648
13649impl fidl::endpoints::Proxy for NodeProxy {
13650    type Protocol = NodeMarker;
13651
13652    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
13653        Self::new(inner)
13654    }
13655
13656    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
13657        self.client.into_channel().map_err(|client| Self { client })
13658    }
13659
13660    fn as_channel(&self) -> &::fidl::AsyncChannel {
13661        self.client.as_channel()
13662    }
13663}
13664
13665impl NodeProxy {
13666    /// Create a new Proxy for fuchsia.io/Node.
13667    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
13668        let protocol_name = <NodeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
13669        Self { client: fidl::client::Client::new(channel, protocol_name) }
13670    }
13671
13672    /// Get a Stream of events from the remote end of the protocol.
13673    ///
13674    /// # Panics
13675    ///
13676    /// Panics if the event stream was already taken.
13677    pub fn take_event_stream(&self) -> NodeEventStream {
13678        NodeEventStream { event_receiver: self.client.take_event_receiver() }
13679    }
13680
13681    pub fn r#clone(
13682        &self,
13683        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
13684    ) -> Result<(), fidl::Error> {
13685        NodeProxyInterface::r#clone(self, request)
13686    }
13687
13688    /// Terminates the connection.
13689    ///
13690    /// After calling `Close`, the client must not send any other requests.
13691    ///
13692    /// Servers, after sending the status response, should close the connection
13693    /// regardless of status and without sending an epitaph.
13694    ///
13695    /// Closing the client end of the channel should be semantically equivalent
13696    /// to calling `Close` without knowing when the close has completed or its
13697    /// status.
13698    pub fn r#close(
13699        &self,
13700    ) -> fidl::client::QueryResponseFut<
13701        fidl_fuchsia_unknown::CloseableCloseResult,
13702        fidl::encoding::DefaultFuchsiaResourceDialect,
13703    > {
13704        NodeProxyInterface::r#close(self)
13705    }
13706
13707    pub fn r#query(
13708        &self,
13709    ) -> fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>
13710    {
13711        NodeProxyInterface::r#query(self)
13712    }
13713
13714    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
13715    pub fn r#deprecated_clone(
13716        &self,
13717        mut flags: OpenFlags,
13718        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
13719    ) -> Result<(), fidl::Error> {
13720        NodeProxyInterface::r#deprecated_clone(self, flags, object)
13721    }
13722
13723    /// Acquires information about the node.
13724    ///
13725    /// This method does not require any rights.
13726    pub fn r#get_attr(
13727        &self,
13728    ) -> fidl::client::QueryResponseFut<
13729        (i32, NodeAttributes),
13730        fidl::encoding::DefaultFuchsiaResourceDialect,
13731    > {
13732        NodeProxyInterface::r#get_attr(self)
13733    }
13734
13735    /// Updates information about the node.
13736    ///
13737    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
13738    ///
13739    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
13740    /// `ZX_ERR_BAD_HANDLE`.
13741    pub fn r#set_attr(
13742        &self,
13743        mut flags: NodeAttributeFlags,
13744        mut attributes: &NodeAttributes,
13745    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
13746        NodeProxyInterface::r#set_attr(self, flags, attributes)
13747    }
13748
13749    /// [DEPRECATED - Use new GetFlags method instead.]
13750    pub fn r#deprecated_get_flags(
13751        &self,
13752    ) -> fidl::client::QueryResponseFut<
13753        (i32, OpenFlags),
13754        fidl::encoding::DefaultFuchsiaResourceDialect,
13755    > {
13756        NodeProxyInterface::r#deprecated_get_flags(self)
13757    }
13758
13759    /// [DEPRECATED - Use new SetFlags method instead.]
13760    pub fn r#deprecated_set_flags(
13761        &self,
13762        mut flags: OpenFlags,
13763    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
13764        NodeProxyInterface::r#deprecated_set_flags(self, flags)
13765    }
13766
13767    /// Queries the flags that apply to this node after it has been opened/created. This method does
13768    /// not require any rights.
13769    ///
13770    /// Note that the final set of flags that apply to the connection may differ from those
13771    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
13772    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
13773    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
13774    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
13775    pub fn r#get_flags(
13776        &self,
13777    ) -> fidl::client::QueryResponseFut<
13778        NodeGetFlagsResult,
13779        fidl::encoding::DefaultFuchsiaResourceDialect,
13780    > {
13781        NodeProxyInterface::r#get_flags(self)
13782    }
13783
13784    /// Sets the flags that apply to this node after it has been opened. This method does not
13785    /// require any rights.
13786    ///
13787    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
13788    /// clear append mode.
13789    ///
13790    /// Errors:
13791    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
13792    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
13793    pub fn r#set_flags(
13794        &self,
13795        mut flags: Flags,
13796    ) -> fidl::client::QueryResponseFut<
13797        NodeSetFlagsResult,
13798        fidl::encoding::DefaultFuchsiaResourceDialect,
13799    > {
13800        NodeProxyInterface::r#set_flags(self, flags)
13801    }
13802
13803    /// Query the filesystem for filesystem-specific information.
13804    pub fn r#query_filesystem(
13805        &self,
13806    ) -> fidl::client::QueryResponseFut<
13807        (i32, Option<Box<FilesystemInfo>>),
13808        fidl::encoding::DefaultFuchsiaResourceDialect,
13809    > {
13810        NodeProxyInterface::r#query_filesystem(self)
13811    }
13812
13813    /// Acquires information about the connection.
13814    ///
13815    /// This method does not require any rights.
13816    pub fn r#get_connection_info(
13817        &self,
13818    ) -> fidl::client::QueryResponseFut<ConnectionInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
13819    {
13820        NodeProxyInterface::r#get_connection_info(self)
13821    }
13822
13823    /// Acquires information about the node.
13824    ///
13825    /// The attributes of a node should be stable, independent of the
13826    /// specific protocol used to access it.
13827    ///
13828    /// If a particular attribute is not applicable or not supported,
13829    /// filesystems should leave the corresponding field absent.
13830    ///
13831    /// + `query` a bit-mask specifying which attributes to fetch. The server
13832    ///   should not return more than necessary.
13833    /// - `attributes` the returned attributes.
13834    ///
13835    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
13836    pub fn r#get_attributes(
13837        &self,
13838        mut query: NodeAttributesQuery,
13839    ) -> fidl::client::QueryResponseFut<
13840        NodeGetAttributesResult,
13841        fidl::encoding::DefaultFuchsiaResourceDialect,
13842    > {
13843        NodeProxyInterface::r#get_attributes(self, query)
13844    }
13845
13846    /// Updates information about the node.
13847    ///
13848    /// + `attributes` the presence of a table field in `attributes` indicates
13849    /// the intent to update the corresponding attribute.
13850    ///
13851    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
13852    ///
13853    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
13854    pub fn r#update_attributes(
13855        &self,
13856        mut payload: &MutableNodeAttributes,
13857    ) -> fidl::client::QueryResponseFut<
13858        NodeUpdateAttributesResult,
13859        fidl::encoding::DefaultFuchsiaResourceDialect,
13860    > {
13861        NodeProxyInterface::r#update_attributes(self, payload)
13862    }
13863
13864    /// Synchronizes updates to the node to the underlying media, if it exists.
13865    ///
13866    /// This method will return when the filesystem server has flushed the
13867    /// relevant updates to the underlying media, but does not guarantee the
13868    /// underlying media has persisted the information, nor that any information
13869    /// is committed to hardware. Clients may use `Sync` to ensure ordering
13870    /// between operations.
13871    ///
13872    /// This method does not require any rights.
13873    pub fn r#sync(
13874        &self,
13875    ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
13876    {
13877        NodeProxyInterface::r#sync(self)
13878    }
13879
13880    /// Creates an iterator over all the extended attribute names associated
13881    /// with this node. If an error occurs it is returned as an epitaph on the
13882    /// iterator request channel, and then the channel is closed.
13883    ///
13884    /// GetExtendedAttributes can be used with any of these names to retrieve
13885    /// the associated value.
13886    ///
13887    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
13888    pub fn r#list_extended_attributes(
13889        &self,
13890        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
13891    ) -> Result<(), fidl::Error> {
13892        NodeProxyInterface::r#list_extended_attributes(self, iterator)
13893    }
13894
13895    /// Get the value associated with the given attribute `name` for this node.
13896    ///
13897    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
13898    /// particular structure is imposed on them.
13899    ///
13900    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
13901    pub fn r#get_extended_attribute(
13902        &self,
13903        mut name: &[u8],
13904    ) -> fidl::client::QueryResponseFut<
13905        NodeGetExtendedAttributeResult,
13906        fidl::encoding::DefaultFuchsiaResourceDialect,
13907    > {
13908        NodeProxyInterface::r#get_extended_attribute(self, name)
13909    }
13910
13911    /// Set the value for the given attribute `name` to `value` for this node.
13912    ///
13913    /// The attribute name may exist, in which case the attribute is updated.
13914    /// If the attribute doesn't exist, it is created. The name should have no
13915    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
13916    ///
13917    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
13918    pub fn r#set_extended_attribute(
13919        &self,
13920        mut name: &[u8],
13921        mut value: ExtendedAttributeValue,
13922        mut mode: SetExtendedAttributeMode,
13923    ) -> fidl::client::QueryResponseFut<
13924        NodeSetExtendedAttributeResult,
13925        fidl::encoding::DefaultFuchsiaResourceDialect,
13926    > {
13927        NodeProxyInterface::r#set_extended_attribute(self, name, value, mode)
13928    }
13929
13930    /// Remove the specified extended attribute.
13931    ///
13932    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
13933    ///
13934    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
13935    pub fn r#remove_extended_attribute(
13936        &self,
13937        mut name: &[u8],
13938    ) -> fidl::client::QueryResponseFut<
13939        NodeRemoveExtendedAttributeResult,
13940        fidl::encoding::DefaultFuchsiaResourceDialect,
13941    > {
13942        NodeProxyInterface::r#remove_extended_attribute(self, name)
13943    }
13944}
13945
13946impl NodeProxyInterface for NodeProxy {
13947    fn r#clone(
13948        &self,
13949        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
13950    ) -> Result<(), fidl::Error> {
13951        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
13952            (request,),
13953            0x20d8a7aba2168a79,
13954            fidl::encoding::DynamicFlags::empty(),
13955        )
13956    }
13957
13958    type CloseResponseFut = fidl::client::QueryResponseFut<
13959        fidl_fuchsia_unknown::CloseableCloseResult,
13960        fidl::encoding::DefaultFuchsiaResourceDialect,
13961    >;
13962    fn r#close(&self) -> Self::CloseResponseFut {
13963        fn _decode(
13964            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
13965        ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
13966            let _response = fidl::client::decode_transaction_body::<
13967                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
13968                fidl::encoding::DefaultFuchsiaResourceDialect,
13969                0x5ac5d459ad7f657e,
13970            >(_buf?)?;
13971            Ok(_response.map(|x| x))
13972        }
13973        self.client.send_query_and_decode::<
13974            fidl::encoding::EmptyPayload,
13975            fidl_fuchsia_unknown::CloseableCloseResult,
13976        >(
13977            (),
13978            0x5ac5d459ad7f657e,
13979            fidl::encoding::DynamicFlags::empty(),
13980            _decode,
13981        )
13982    }
13983
13984    type QueryResponseFut =
13985        fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>;
13986    fn r#query(&self) -> Self::QueryResponseFut {
13987        fn _decode(
13988            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
13989        ) -> Result<Vec<u8>, fidl::Error> {
13990            let _response = fidl::client::decode_transaction_body::<
13991                fidl_fuchsia_unknown::QueryableQueryResponse,
13992                fidl::encoding::DefaultFuchsiaResourceDialect,
13993                0x2658edee9decfc06,
13994            >(_buf?)?;
13995            Ok(_response.protocol)
13996        }
13997        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<u8>>(
13998            (),
13999            0x2658edee9decfc06,
14000            fidl::encoding::DynamicFlags::empty(),
14001            _decode,
14002        )
14003    }
14004
14005    fn r#deprecated_clone(
14006        &self,
14007        mut flags: OpenFlags,
14008        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
14009    ) -> Result<(), fidl::Error> {
14010        self.client.send::<NodeDeprecatedCloneRequest>(
14011            (flags, object),
14012            0x5a61678f293ce16f,
14013            fidl::encoding::DynamicFlags::FLEXIBLE,
14014        )
14015    }
14016
14017    type GetAttrResponseFut = fidl::client::QueryResponseFut<
14018        (i32, NodeAttributes),
14019        fidl::encoding::DefaultFuchsiaResourceDialect,
14020    >;
14021    fn r#get_attr(&self) -> Self::GetAttrResponseFut {
14022        fn _decode(
14023            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14024        ) -> Result<(i32, NodeAttributes), fidl::Error> {
14025            let _response = fidl::client::decode_transaction_body::<
14026                NodeGetAttrResponse,
14027                fidl::encoding::DefaultFuchsiaResourceDialect,
14028                0x78985e216314dafd,
14029            >(_buf?)?;
14030            Ok((_response.s, _response.attributes))
14031        }
14032        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, NodeAttributes)>(
14033            (),
14034            0x78985e216314dafd,
14035            fidl::encoding::DynamicFlags::empty(),
14036            _decode,
14037        )
14038    }
14039
14040    type SetAttrResponseFut =
14041        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
14042    fn r#set_attr(
14043        &self,
14044        mut flags: NodeAttributeFlags,
14045        mut attributes: &NodeAttributes,
14046    ) -> Self::SetAttrResponseFut {
14047        fn _decode(
14048            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14049        ) -> Result<i32, fidl::Error> {
14050            let _response = fidl::client::decode_transaction_body::<
14051                NodeSetAttrResponse,
14052                fidl::encoding::DefaultFuchsiaResourceDialect,
14053                0x4186c0f40d938f46,
14054            >(_buf?)?;
14055            Ok(_response.s)
14056        }
14057        self.client.send_query_and_decode::<NodeSetAttrRequest, i32>(
14058            (flags, attributes),
14059            0x4186c0f40d938f46,
14060            fidl::encoding::DynamicFlags::empty(),
14061            _decode,
14062        )
14063    }
14064
14065    type DeprecatedGetFlagsResponseFut = fidl::client::QueryResponseFut<
14066        (i32, OpenFlags),
14067        fidl::encoding::DefaultFuchsiaResourceDialect,
14068    >;
14069    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut {
14070        fn _decode(
14071            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14072        ) -> Result<(i32, OpenFlags), fidl::Error> {
14073            let _response = fidl::client::decode_transaction_body::<
14074                NodeDeprecatedGetFlagsResponse,
14075                fidl::encoding::DefaultFuchsiaResourceDialect,
14076                0x5b88fffb8eda3aa1,
14077            >(_buf?)?;
14078            Ok((_response.s, _response.flags))
14079        }
14080        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, OpenFlags)>(
14081            (),
14082            0x5b88fffb8eda3aa1,
14083            fidl::encoding::DynamicFlags::empty(),
14084            _decode,
14085        )
14086    }
14087
14088    type DeprecatedSetFlagsResponseFut =
14089        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
14090    fn r#deprecated_set_flags(&self, mut flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut {
14091        fn _decode(
14092            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14093        ) -> Result<i32, fidl::Error> {
14094            let _response = fidl::client::decode_transaction_body::<
14095                NodeDeprecatedSetFlagsResponse,
14096                fidl::encoding::DefaultFuchsiaResourceDialect,
14097                0x5295b76c71fde733,
14098            >(_buf?)?;
14099            Ok(_response.s)
14100        }
14101        self.client.send_query_and_decode::<NodeDeprecatedSetFlagsRequest, i32>(
14102            (flags,),
14103            0x5295b76c71fde733,
14104            fidl::encoding::DynamicFlags::empty(),
14105            _decode,
14106        )
14107    }
14108
14109    type GetFlagsResponseFut = fidl::client::QueryResponseFut<
14110        NodeGetFlagsResult,
14111        fidl::encoding::DefaultFuchsiaResourceDialect,
14112    >;
14113    fn r#get_flags(&self) -> Self::GetFlagsResponseFut {
14114        fn _decode(
14115            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14116        ) -> Result<NodeGetFlagsResult, fidl::Error> {
14117            let _response = fidl::client::decode_transaction_body::<
14118                fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
14119                fidl::encoding::DefaultFuchsiaResourceDialect,
14120                0x176eb318f64ec23,
14121            >(_buf?)?
14122            .into_result::<NodeMarker>("get_flags")?;
14123            Ok(_response.map(|x| x.flags))
14124        }
14125        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeGetFlagsResult>(
14126            (),
14127            0x176eb318f64ec23,
14128            fidl::encoding::DynamicFlags::FLEXIBLE,
14129            _decode,
14130        )
14131    }
14132
14133    type SetFlagsResponseFut = fidl::client::QueryResponseFut<
14134        NodeSetFlagsResult,
14135        fidl::encoding::DefaultFuchsiaResourceDialect,
14136    >;
14137    fn r#set_flags(&self, mut flags: Flags) -> Self::SetFlagsResponseFut {
14138        fn _decode(
14139            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14140        ) -> Result<NodeSetFlagsResult, fidl::Error> {
14141            let _response = fidl::client::decode_transaction_body::<
14142                fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
14143                fidl::encoding::DefaultFuchsiaResourceDialect,
14144                0x55a8028685791ea8,
14145            >(_buf?)?
14146            .into_result::<NodeMarker>("set_flags")?;
14147            Ok(_response.map(|x| x))
14148        }
14149        self.client.send_query_and_decode::<NodeSetFlagsRequest, NodeSetFlagsResult>(
14150            (flags,),
14151            0x55a8028685791ea8,
14152            fidl::encoding::DynamicFlags::FLEXIBLE,
14153            _decode,
14154        )
14155    }
14156
14157    type QueryFilesystemResponseFut = fidl::client::QueryResponseFut<
14158        (i32, Option<Box<FilesystemInfo>>),
14159        fidl::encoding::DefaultFuchsiaResourceDialect,
14160    >;
14161    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut {
14162        fn _decode(
14163            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14164        ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
14165            let _response = fidl::client::decode_transaction_body::<
14166                NodeQueryFilesystemResponse,
14167                fidl::encoding::DefaultFuchsiaResourceDialect,
14168                0x6f344a1c6b0a0610,
14169            >(_buf?)?;
14170            Ok((_response.s, _response.info))
14171        }
14172        self.client.send_query_and_decode::<
14173            fidl::encoding::EmptyPayload,
14174            (i32, Option<Box<FilesystemInfo>>),
14175        >(
14176            (),
14177            0x6f344a1c6b0a0610,
14178            fidl::encoding::DynamicFlags::empty(),
14179            _decode,
14180        )
14181    }
14182
14183    type GetConnectionInfoResponseFut = fidl::client::QueryResponseFut<
14184        ConnectionInfo,
14185        fidl::encoding::DefaultFuchsiaResourceDialect,
14186    >;
14187    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut {
14188        fn _decode(
14189            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14190        ) -> Result<ConnectionInfo, fidl::Error> {
14191            let _response = fidl::client::decode_transaction_body::<
14192                ConnectionInfo,
14193                fidl::encoding::DefaultFuchsiaResourceDialect,
14194                0x584c377c7c0a6d0b,
14195            >(_buf?)?;
14196            Ok(_response)
14197        }
14198        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ConnectionInfo>(
14199            (),
14200            0x584c377c7c0a6d0b,
14201            fidl::encoding::DynamicFlags::empty(),
14202            _decode,
14203        )
14204    }
14205
14206    type GetAttributesResponseFut = fidl::client::QueryResponseFut<
14207        NodeGetAttributesResult,
14208        fidl::encoding::DefaultFuchsiaResourceDialect,
14209    >;
14210    fn r#get_attributes(&self, mut query: NodeAttributesQuery) -> Self::GetAttributesResponseFut {
14211        fn _decode(
14212            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14213        ) -> Result<NodeGetAttributesResult, fidl::Error> {
14214            let _response = fidl::client::decode_transaction_body::<
14215                fidl::encoding::ResultType<NodeAttributes2, i32>,
14216                fidl::encoding::DefaultFuchsiaResourceDialect,
14217                0x3d4396a638ea053b,
14218            >(_buf?)?;
14219            Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
14220        }
14221        self.client.send_query_and_decode::<NodeGetAttributesRequest, NodeGetAttributesResult>(
14222            (query,),
14223            0x3d4396a638ea053b,
14224            fidl::encoding::DynamicFlags::empty(),
14225            _decode,
14226        )
14227    }
14228
14229    type UpdateAttributesResponseFut = fidl::client::QueryResponseFut<
14230        NodeUpdateAttributesResult,
14231        fidl::encoding::DefaultFuchsiaResourceDialect,
14232    >;
14233    fn r#update_attributes(
14234        &self,
14235        mut payload: &MutableNodeAttributes,
14236    ) -> Self::UpdateAttributesResponseFut {
14237        fn _decode(
14238            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14239        ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
14240            let _response = fidl::client::decode_transaction_body::<
14241                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
14242                fidl::encoding::DefaultFuchsiaResourceDialect,
14243                0x3308c1da5a89bf08,
14244            >(_buf?)?;
14245            Ok(_response.map(|x| x))
14246        }
14247        self.client.send_query_and_decode::<MutableNodeAttributes, NodeUpdateAttributesResult>(
14248            payload,
14249            0x3308c1da5a89bf08,
14250            fidl::encoding::DynamicFlags::empty(),
14251            _decode,
14252        )
14253    }
14254
14255    type SyncResponseFut = fidl::client::QueryResponseFut<
14256        NodeSyncResult,
14257        fidl::encoding::DefaultFuchsiaResourceDialect,
14258    >;
14259    fn r#sync(&self) -> Self::SyncResponseFut {
14260        fn _decode(
14261            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14262        ) -> Result<NodeSyncResult, fidl::Error> {
14263            let _response = fidl::client::decode_transaction_body::<
14264                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
14265                fidl::encoding::DefaultFuchsiaResourceDialect,
14266                0x2c5c27ca0ab5dc49,
14267            >(_buf?)?;
14268            Ok(_response.map(|x| x))
14269        }
14270        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeSyncResult>(
14271            (),
14272            0x2c5c27ca0ab5dc49,
14273            fidl::encoding::DynamicFlags::empty(),
14274            _decode,
14275        )
14276    }
14277
14278    fn r#list_extended_attributes(
14279        &self,
14280        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
14281    ) -> Result<(), fidl::Error> {
14282        self.client.send::<NodeListExtendedAttributesRequest>(
14283            (iterator,),
14284            0x4b61033de007fcd0,
14285            fidl::encoding::DynamicFlags::empty(),
14286        )
14287    }
14288
14289    type GetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
14290        NodeGetExtendedAttributeResult,
14291        fidl::encoding::DefaultFuchsiaResourceDialect,
14292    >;
14293    fn r#get_extended_attribute(&self, mut name: &[u8]) -> Self::GetExtendedAttributeResponseFut {
14294        fn _decode(
14295            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14296        ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
14297            let _response = fidl::client::decode_transaction_body::<
14298                fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
14299                fidl::encoding::DefaultFuchsiaResourceDialect,
14300                0x45ffa3ccfdeb76db,
14301            >(_buf?)?;
14302            Ok(_response.map(|x| x))
14303        }
14304        self.client.send_query_and_decode::<
14305            NodeGetExtendedAttributeRequest,
14306            NodeGetExtendedAttributeResult,
14307        >(
14308            (name,),
14309            0x45ffa3ccfdeb76db,
14310            fidl::encoding::DynamicFlags::empty(),
14311            _decode,
14312        )
14313    }
14314
14315    type SetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
14316        NodeSetExtendedAttributeResult,
14317        fidl::encoding::DefaultFuchsiaResourceDialect,
14318    >;
14319    fn r#set_extended_attribute(
14320        &self,
14321        mut name: &[u8],
14322        mut value: ExtendedAttributeValue,
14323        mut mode: SetExtendedAttributeMode,
14324    ) -> Self::SetExtendedAttributeResponseFut {
14325        fn _decode(
14326            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14327        ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
14328            let _response = fidl::client::decode_transaction_body::<
14329                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
14330                fidl::encoding::DefaultFuchsiaResourceDialect,
14331                0x4a951362f681f23c,
14332            >(_buf?)?;
14333            Ok(_response.map(|x| x))
14334        }
14335        self.client.send_query_and_decode::<
14336            NodeSetExtendedAttributeRequest,
14337            NodeSetExtendedAttributeResult,
14338        >(
14339            (name, &mut value, mode,),
14340            0x4a951362f681f23c,
14341            fidl::encoding::DynamicFlags::empty(),
14342            _decode,
14343        )
14344    }
14345
14346    type RemoveExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
14347        NodeRemoveExtendedAttributeResult,
14348        fidl::encoding::DefaultFuchsiaResourceDialect,
14349    >;
14350    fn r#remove_extended_attribute(
14351        &self,
14352        mut name: &[u8],
14353    ) -> Self::RemoveExtendedAttributeResponseFut {
14354        fn _decode(
14355            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
14356        ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
14357            let _response = fidl::client::decode_transaction_body::<
14358                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
14359                fidl::encoding::DefaultFuchsiaResourceDialect,
14360                0x7a0b9f3a9bf9032d,
14361            >(_buf?)?;
14362            Ok(_response.map(|x| x))
14363        }
14364        self.client.send_query_and_decode::<
14365            NodeRemoveExtendedAttributeRequest,
14366            NodeRemoveExtendedAttributeResult,
14367        >(
14368            (name,),
14369            0x7a0b9f3a9bf9032d,
14370            fidl::encoding::DynamicFlags::empty(),
14371            _decode,
14372        )
14373    }
14374}
14375
14376pub struct NodeEventStream {
14377    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
14378}
14379
14380impl std::marker::Unpin for NodeEventStream {}
14381
14382impl futures::stream::FusedStream for NodeEventStream {
14383    fn is_terminated(&self) -> bool {
14384        self.event_receiver.is_terminated()
14385    }
14386}
14387
14388impl futures::Stream for NodeEventStream {
14389    type Item = Result<NodeEvent, fidl::Error>;
14390
14391    fn poll_next(
14392        mut self: std::pin::Pin<&mut Self>,
14393        cx: &mut std::task::Context<'_>,
14394    ) -> std::task::Poll<Option<Self::Item>> {
14395        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
14396            &mut self.event_receiver,
14397            cx
14398        )?) {
14399            Some(buf) => std::task::Poll::Ready(Some(NodeEvent::decode(buf))),
14400            None => std::task::Poll::Ready(None),
14401        }
14402    }
14403}
14404
14405#[derive(Debug)]
14406pub enum NodeEvent {
14407    OnOpen_ {
14408        s: i32,
14409        info: Option<Box<NodeInfoDeprecated>>,
14410    },
14411    OnRepresentation {
14412        payload: Representation,
14413    },
14414    #[non_exhaustive]
14415    _UnknownEvent {
14416        /// Ordinal of the event that was sent.
14417        ordinal: u64,
14418    },
14419}
14420
14421impl NodeEvent {
14422    #[allow(irrefutable_let_patterns)]
14423    pub fn into_on_open_(self) -> Option<(i32, Option<Box<NodeInfoDeprecated>>)> {
14424        if let NodeEvent::OnOpen_ { s, info } = self {
14425            Some((s, info))
14426        } else {
14427            None
14428        }
14429    }
14430    #[allow(irrefutable_let_patterns)]
14431    pub fn into_on_representation(self) -> Option<Representation> {
14432        if let NodeEvent::OnRepresentation { payload } = self {
14433            Some((payload))
14434        } else {
14435            None
14436        }
14437    }
14438
14439    /// Decodes a message buffer as a [`NodeEvent`].
14440    fn decode(
14441        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
14442    ) -> Result<NodeEvent, fidl::Error> {
14443        let (bytes, _handles) = buf.split_mut();
14444        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
14445        debug_assert_eq!(tx_header.tx_id, 0);
14446        match tx_header.ordinal {
14447            0x7fc7bbb1dbfd1972 => {
14448                let mut out = fidl::new_empty!(
14449                    NodeOnOpenRequest,
14450                    fidl::encoding::DefaultFuchsiaResourceDialect
14451                );
14452                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeOnOpenRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
14453                Ok((NodeEvent::OnOpen_ { s: out.s, info: out.info }))
14454            }
14455            0x5cb40567d80a510c => {
14456                let mut out =
14457                    fidl::new_empty!(Representation, fidl::encoding::DefaultFuchsiaResourceDialect);
14458                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<Representation>(&tx_header, _body_bytes, _handles, &mut out)?;
14459                Ok((NodeEvent::OnRepresentation { payload: out }))
14460            }
14461            _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
14462                Ok(NodeEvent::_UnknownEvent { ordinal: tx_header.ordinal })
14463            }
14464            _ => Err(fidl::Error::UnknownOrdinal {
14465                ordinal: tx_header.ordinal,
14466                protocol_name: <NodeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
14467            }),
14468        }
14469    }
14470}
14471
14472/// A Stream of incoming requests for fuchsia.io/Node.
14473pub struct NodeRequestStream {
14474    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
14475    is_terminated: bool,
14476}
14477
14478impl std::marker::Unpin for NodeRequestStream {}
14479
14480impl futures::stream::FusedStream for NodeRequestStream {
14481    fn is_terminated(&self) -> bool {
14482        self.is_terminated
14483    }
14484}
14485
14486impl fidl::endpoints::RequestStream for NodeRequestStream {
14487    type Protocol = NodeMarker;
14488    type ControlHandle = NodeControlHandle;
14489
14490    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
14491        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
14492    }
14493
14494    fn control_handle(&self) -> Self::ControlHandle {
14495        NodeControlHandle { inner: self.inner.clone() }
14496    }
14497
14498    fn into_inner(
14499        self,
14500    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
14501    {
14502        (self.inner, self.is_terminated)
14503    }
14504
14505    fn from_inner(
14506        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
14507        is_terminated: bool,
14508    ) -> Self {
14509        Self { inner, is_terminated }
14510    }
14511}
14512
14513impl futures::Stream for NodeRequestStream {
14514    type Item = Result<NodeRequest, fidl::Error>;
14515
14516    fn poll_next(
14517        mut self: std::pin::Pin<&mut Self>,
14518        cx: &mut std::task::Context<'_>,
14519    ) -> std::task::Poll<Option<Self::Item>> {
14520        let this = &mut *self;
14521        if this.inner.check_shutdown(cx) {
14522            this.is_terminated = true;
14523            return std::task::Poll::Ready(None);
14524        }
14525        if this.is_terminated {
14526            panic!("polled NodeRequestStream after completion");
14527        }
14528        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
14529            |bytes, handles| {
14530                match this.inner.channel().read_etc(cx, bytes, handles) {
14531                    std::task::Poll::Ready(Ok(())) => {}
14532                    std::task::Poll::Pending => return std::task::Poll::Pending,
14533                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
14534                        this.is_terminated = true;
14535                        return std::task::Poll::Ready(None);
14536                    }
14537                    std::task::Poll::Ready(Err(e)) => {
14538                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
14539                            e.into(),
14540                        ))))
14541                    }
14542                }
14543
14544                // A message has been received from the channel
14545                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
14546
14547                std::task::Poll::Ready(Some(match header.ordinal {
14548                    0x20d8a7aba2168a79 => {
14549                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
14550                        let mut req = fidl::new_empty!(
14551                            fidl_fuchsia_unknown::CloneableCloneRequest,
14552                            fidl::encoding::DefaultFuchsiaResourceDialect
14553                        );
14554                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_unknown::CloneableCloneRequest>(&header, _body_bytes, handles, &mut req)?;
14555                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14556                        Ok(NodeRequest::Clone { request: req.request, control_handle })
14557                    }
14558                    0x5ac5d459ad7f657e => {
14559                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14560                        let mut req = fidl::new_empty!(
14561                            fidl::encoding::EmptyPayload,
14562                            fidl::encoding::DefaultFuchsiaResourceDialect
14563                        );
14564                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14565                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14566                        Ok(NodeRequest::Close {
14567                            responder: NodeCloseResponder {
14568                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14569                                tx_id: header.tx_id,
14570                            },
14571                        })
14572                    }
14573                    0x2658edee9decfc06 => {
14574                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14575                        let mut req = fidl::new_empty!(
14576                            fidl::encoding::EmptyPayload,
14577                            fidl::encoding::DefaultFuchsiaResourceDialect
14578                        );
14579                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14580                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14581                        Ok(NodeRequest::Query {
14582                            responder: NodeQueryResponder {
14583                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14584                                tx_id: header.tx_id,
14585                            },
14586                        })
14587                    }
14588                    0x5a61678f293ce16f => {
14589                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
14590                        let mut req = fidl::new_empty!(
14591                            NodeDeprecatedCloneRequest,
14592                            fidl::encoding::DefaultFuchsiaResourceDialect
14593                        );
14594                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedCloneRequest>(&header, _body_bytes, handles, &mut req)?;
14595                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14596                        Ok(NodeRequest::DeprecatedClone {
14597                            flags: req.flags,
14598                            object: req.object,
14599
14600                            control_handle,
14601                        })
14602                    }
14603                    0x78985e216314dafd => {
14604                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14605                        let mut req = fidl::new_empty!(
14606                            fidl::encoding::EmptyPayload,
14607                            fidl::encoding::DefaultFuchsiaResourceDialect
14608                        );
14609                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14610                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14611                        Ok(NodeRequest::GetAttr {
14612                            responder: NodeGetAttrResponder {
14613                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14614                                tx_id: header.tx_id,
14615                            },
14616                        })
14617                    }
14618                    0x4186c0f40d938f46 => {
14619                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14620                        let mut req = fidl::new_empty!(
14621                            NodeSetAttrRequest,
14622                            fidl::encoding::DefaultFuchsiaResourceDialect
14623                        );
14624                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetAttrRequest>(&header, _body_bytes, handles, &mut req)?;
14625                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14626                        Ok(NodeRequest::SetAttr {
14627                            flags: req.flags,
14628                            attributes: req.attributes,
14629
14630                            responder: NodeSetAttrResponder {
14631                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14632                                tx_id: header.tx_id,
14633                            },
14634                        })
14635                    }
14636                    0x5b88fffb8eda3aa1 => {
14637                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14638                        let mut req = fidl::new_empty!(
14639                            fidl::encoding::EmptyPayload,
14640                            fidl::encoding::DefaultFuchsiaResourceDialect
14641                        );
14642                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14643                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14644                        Ok(NodeRequest::DeprecatedGetFlags {
14645                            responder: NodeDeprecatedGetFlagsResponder {
14646                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14647                                tx_id: header.tx_id,
14648                            },
14649                        })
14650                    }
14651                    0x5295b76c71fde733 => {
14652                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14653                        let mut req = fidl::new_empty!(
14654                            NodeDeprecatedSetFlagsRequest,
14655                            fidl::encoding::DefaultFuchsiaResourceDialect
14656                        );
14657                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
14658                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14659                        Ok(NodeRequest::DeprecatedSetFlags {
14660                            flags: req.flags,
14661
14662                            responder: NodeDeprecatedSetFlagsResponder {
14663                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14664                                tx_id: header.tx_id,
14665                            },
14666                        })
14667                    }
14668                    0x176eb318f64ec23 => {
14669                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14670                        let mut req = fidl::new_empty!(
14671                            fidl::encoding::EmptyPayload,
14672                            fidl::encoding::DefaultFuchsiaResourceDialect
14673                        );
14674                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14675                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14676                        Ok(NodeRequest::GetFlags {
14677                            responder: NodeGetFlagsResponder {
14678                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14679                                tx_id: header.tx_id,
14680                            },
14681                        })
14682                    }
14683                    0x55a8028685791ea8 => {
14684                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14685                        let mut req = fidl::new_empty!(
14686                            NodeSetFlagsRequest,
14687                            fidl::encoding::DefaultFuchsiaResourceDialect
14688                        );
14689                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
14690                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14691                        Ok(NodeRequest::SetFlags {
14692                            flags: req.flags,
14693
14694                            responder: NodeSetFlagsResponder {
14695                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14696                                tx_id: header.tx_id,
14697                            },
14698                        })
14699                    }
14700                    0x6f344a1c6b0a0610 => {
14701                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14702                        let mut req = fidl::new_empty!(
14703                            fidl::encoding::EmptyPayload,
14704                            fidl::encoding::DefaultFuchsiaResourceDialect
14705                        );
14706                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14707                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14708                        Ok(NodeRequest::QueryFilesystem {
14709                            responder: NodeQueryFilesystemResponder {
14710                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14711                                tx_id: header.tx_id,
14712                            },
14713                        })
14714                    }
14715                    0x584c377c7c0a6d0b => {
14716                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14717                        let mut req = fidl::new_empty!(
14718                            fidl::encoding::EmptyPayload,
14719                            fidl::encoding::DefaultFuchsiaResourceDialect
14720                        );
14721                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14722                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14723                        Ok(NodeRequest::GetConnectionInfo {
14724                            responder: NodeGetConnectionInfoResponder {
14725                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14726                                tx_id: header.tx_id,
14727                            },
14728                        })
14729                    }
14730                    0x3d4396a638ea053b => {
14731                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14732                        let mut req = fidl::new_empty!(
14733                            NodeGetAttributesRequest,
14734                            fidl::encoding::DefaultFuchsiaResourceDialect
14735                        );
14736                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
14737                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14738                        Ok(NodeRequest::GetAttributes {
14739                            query: req.query,
14740
14741                            responder: NodeGetAttributesResponder {
14742                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14743                                tx_id: header.tx_id,
14744                            },
14745                        })
14746                    }
14747                    0x3308c1da5a89bf08 => {
14748                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14749                        let mut req = fidl::new_empty!(
14750                            MutableNodeAttributes,
14751                            fidl::encoding::DefaultFuchsiaResourceDialect
14752                        );
14753                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<MutableNodeAttributes>(&header, _body_bytes, handles, &mut req)?;
14754                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14755                        Ok(NodeRequest::UpdateAttributes {
14756                            payload: req,
14757                            responder: NodeUpdateAttributesResponder {
14758                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14759                                tx_id: header.tx_id,
14760                            },
14761                        })
14762                    }
14763                    0x2c5c27ca0ab5dc49 => {
14764                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14765                        let mut req = fidl::new_empty!(
14766                            fidl::encoding::EmptyPayload,
14767                            fidl::encoding::DefaultFuchsiaResourceDialect
14768                        );
14769                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
14770                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14771                        Ok(NodeRequest::Sync {
14772                            responder: NodeSyncResponder {
14773                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14774                                tx_id: header.tx_id,
14775                            },
14776                        })
14777                    }
14778                    0x4b61033de007fcd0 => {
14779                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
14780                        let mut req = fidl::new_empty!(
14781                            NodeListExtendedAttributesRequest,
14782                            fidl::encoding::DefaultFuchsiaResourceDialect
14783                        );
14784                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeListExtendedAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
14785                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14786                        Ok(NodeRequest::ListExtendedAttributes {
14787                            iterator: req.iterator,
14788
14789                            control_handle,
14790                        })
14791                    }
14792                    0x45ffa3ccfdeb76db => {
14793                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14794                        let mut req = fidl::new_empty!(
14795                            NodeGetExtendedAttributeRequest,
14796                            fidl::encoding::DefaultFuchsiaResourceDialect
14797                        );
14798                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
14799                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14800                        Ok(NodeRequest::GetExtendedAttribute {
14801                            name: req.name,
14802
14803                            responder: NodeGetExtendedAttributeResponder {
14804                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14805                                tx_id: header.tx_id,
14806                            },
14807                        })
14808                    }
14809                    0x4a951362f681f23c => {
14810                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14811                        let mut req = fidl::new_empty!(
14812                            NodeSetExtendedAttributeRequest,
14813                            fidl::encoding::DefaultFuchsiaResourceDialect
14814                        );
14815                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
14816                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14817                        Ok(NodeRequest::SetExtendedAttribute {
14818                            name: req.name,
14819                            value: req.value,
14820                            mode: req.mode,
14821
14822                            responder: NodeSetExtendedAttributeResponder {
14823                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14824                                tx_id: header.tx_id,
14825                            },
14826                        })
14827                    }
14828                    0x7a0b9f3a9bf9032d => {
14829                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
14830                        let mut req = fidl::new_empty!(
14831                            NodeRemoveExtendedAttributeRequest,
14832                            fidl::encoding::DefaultFuchsiaResourceDialect
14833                        );
14834                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeRemoveExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
14835                        let control_handle = NodeControlHandle { inner: this.inner.clone() };
14836                        Ok(NodeRequest::RemoveExtendedAttribute {
14837                            name: req.name,
14838
14839                            responder: NodeRemoveExtendedAttributeResponder {
14840                                control_handle: std::mem::ManuallyDrop::new(control_handle),
14841                                tx_id: header.tx_id,
14842                            },
14843                        })
14844                    }
14845                    _ if header.tx_id == 0
14846                        && header
14847                            .dynamic_flags()
14848                            .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
14849                    {
14850                        Ok(NodeRequest::_UnknownMethod {
14851                            ordinal: header.ordinal,
14852                            control_handle: NodeControlHandle { inner: this.inner.clone() },
14853                            method_type: fidl::MethodType::OneWay,
14854                        })
14855                    }
14856                    _ if header
14857                        .dynamic_flags()
14858                        .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
14859                    {
14860                        this.inner.send_framework_err(
14861                            fidl::encoding::FrameworkErr::UnknownMethod,
14862                            header.tx_id,
14863                            header.ordinal,
14864                            header.dynamic_flags(),
14865                            (bytes, handles),
14866                        )?;
14867                        Ok(NodeRequest::_UnknownMethod {
14868                            ordinal: header.ordinal,
14869                            control_handle: NodeControlHandle { inner: this.inner.clone() },
14870                            method_type: fidl::MethodType::TwoWay,
14871                        })
14872                    }
14873                    _ => Err(fidl::Error::UnknownOrdinal {
14874                        ordinal: header.ordinal,
14875                        protocol_name: <NodeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
14876                    }),
14877                }))
14878            },
14879        )
14880    }
14881}
14882
14883/// Node defines the minimal interface for entities which can be accessed in a filesystem.
14884#[derive(Debug)]
14885pub enum NodeRequest {
14886    Clone {
14887        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
14888        control_handle: NodeControlHandle,
14889    },
14890    /// Terminates the connection.
14891    ///
14892    /// After calling `Close`, the client must not send any other requests.
14893    ///
14894    /// Servers, after sending the status response, should close the connection
14895    /// regardless of status and without sending an epitaph.
14896    ///
14897    /// Closing the client end of the channel should be semantically equivalent
14898    /// to calling `Close` without knowing when the close has completed or its
14899    /// status.
14900    Close {
14901        responder: NodeCloseResponder,
14902    },
14903    Query {
14904        responder: NodeQueryResponder,
14905    },
14906    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
14907    DeprecatedClone {
14908        flags: OpenFlags,
14909        object: fidl::endpoints::ServerEnd<NodeMarker>,
14910        control_handle: NodeControlHandle,
14911    },
14912    /// Acquires information about the node.
14913    ///
14914    /// This method does not require any rights.
14915    GetAttr {
14916        responder: NodeGetAttrResponder,
14917    },
14918    /// Updates information about the node.
14919    ///
14920    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
14921    ///
14922    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
14923    /// `ZX_ERR_BAD_HANDLE`.
14924    SetAttr {
14925        flags: NodeAttributeFlags,
14926        attributes: NodeAttributes,
14927        responder: NodeSetAttrResponder,
14928    },
14929    /// [DEPRECATED - Use new GetFlags method instead.]
14930    DeprecatedGetFlags {
14931        responder: NodeDeprecatedGetFlagsResponder,
14932    },
14933    /// [DEPRECATED - Use new SetFlags method instead.]
14934    DeprecatedSetFlags {
14935        flags: OpenFlags,
14936        responder: NodeDeprecatedSetFlagsResponder,
14937    },
14938    /// Queries the flags that apply to this node after it has been opened/created. This method does
14939    /// not require any rights.
14940    ///
14941    /// Note that the final set of flags that apply to the connection may differ from those
14942    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
14943    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
14944    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
14945    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
14946    GetFlags {
14947        responder: NodeGetFlagsResponder,
14948    },
14949    /// Sets the flags that apply to this node after it has been opened. This method does not
14950    /// require any rights.
14951    ///
14952    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
14953    /// clear append mode.
14954    ///
14955    /// Errors:
14956    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
14957    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
14958    SetFlags {
14959        flags: Flags,
14960        responder: NodeSetFlagsResponder,
14961    },
14962    /// Query the filesystem for filesystem-specific information.
14963    QueryFilesystem {
14964        responder: NodeQueryFilesystemResponder,
14965    },
14966    /// Acquires information about the connection.
14967    ///
14968    /// This method does not require any rights.
14969    GetConnectionInfo {
14970        responder: NodeGetConnectionInfoResponder,
14971    },
14972    /// Acquires information about the node.
14973    ///
14974    /// The attributes of a node should be stable, independent of the
14975    /// specific protocol used to access it.
14976    ///
14977    /// If a particular attribute is not applicable or not supported,
14978    /// filesystems should leave the corresponding field absent.
14979    ///
14980    /// + `query` a bit-mask specifying which attributes to fetch. The server
14981    ///   should not return more than necessary.
14982    /// - `attributes` the returned attributes.
14983    ///
14984    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
14985    GetAttributes {
14986        query: NodeAttributesQuery,
14987        responder: NodeGetAttributesResponder,
14988    },
14989    /// Updates information about the node.
14990    ///
14991    /// + `attributes` the presence of a table field in `attributes` indicates
14992    /// the intent to update the corresponding attribute.
14993    ///
14994    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
14995    ///
14996    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
14997    UpdateAttributes {
14998        payload: MutableNodeAttributes,
14999        responder: NodeUpdateAttributesResponder,
15000    },
15001    /// Synchronizes updates to the node to the underlying media, if it exists.
15002    ///
15003    /// This method will return when the filesystem server has flushed the
15004    /// relevant updates to the underlying media, but does not guarantee the
15005    /// underlying media has persisted the information, nor that any information
15006    /// is committed to hardware. Clients may use `Sync` to ensure ordering
15007    /// between operations.
15008    ///
15009    /// This method does not require any rights.
15010    Sync {
15011        responder: NodeSyncResponder,
15012    },
15013    /// Creates an iterator over all the extended attribute names associated
15014    /// with this node. If an error occurs it is returned as an epitaph on the
15015    /// iterator request channel, and then the channel is closed.
15016    ///
15017    /// GetExtendedAttributes can be used with any of these names to retrieve
15018    /// the associated value.
15019    ///
15020    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
15021    ListExtendedAttributes {
15022        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
15023        control_handle: NodeControlHandle,
15024    },
15025    /// Get the value associated with the given attribute `name` for this node.
15026    ///
15027    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
15028    /// particular structure is imposed on them.
15029    ///
15030    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
15031    GetExtendedAttribute {
15032        name: Vec<u8>,
15033        responder: NodeGetExtendedAttributeResponder,
15034    },
15035    /// Set the value for the given attribute `name` to `value` for this node.
15036    ///
15037    /// The attribute name may exist, in which case the attribute is updated.
15038    /// If the attribute doesn't exist, it is created. The name should have no
15039    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
15040    ///
15041    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
15042    SetExtendedAttribute {
15043        name: Vec<u8>,
15044        value: ExtendedAttributeValue,
15045        mode: SetExtendedAttributeMode,
15046        responder: NodeSetExtendedAttributeResponder,
15047    },
15048    /// Remove the specified extended attribute.
15049    ///
15050    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
15051    ///
15052    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
15053    RemoveExtendedAttribute {
15054        name: Vec<u8>,
15055        responder: NodeRemoveExtendedAttributeResponder,
15056    },
15057    /// An interaction was received which does not match any known method.
15058    #[non_exhaustive]
15059    _UnknownMethod {
15060        /// Ordinal of the method that was called.
15061        ordinal: u64,
15062        control_handle: NodeControlHandle,
15063        method_type: fidl::MethodType,
15064    },
15065}
15066
15067impl NodeRequest {
15068    #[allow(irrefutable_let_patterns)]
15069    pub fn into_clone(
15070        self,
15071    ) -> Option<(
15072        fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
15073        NodeControlHandle,
15074    )> {
15075        if let NodeRequest::Clone { request, control_handle } = self {
15076            Some((request, control_handle))
15077        } else {
15078            None
15079        }
15080    }
15081
15082    #[allow(irrefutable_let_patterns)]
15083    pub fn into_close(self) -> Option<(NodeCloseResponder)> {
15084        if let NodeRequest::Close { responder } = self {
15085            Some((responder))
15086        } else {
15087            None
15088        }
15089    }
15090
15091    #[allow(irrefutable_let_patterns)]
15092    pub fn into_query(self) -> Option<(NodeQueryResponder)> {
15093        if let NodeRequest::Query { responder } = self {
15094            Some((responder))
15095        } else {
15096            None
15097        }
15098    }
15099
15100    #[allow(irrefutable_let_patterns)]
15101    pub fn into_deprecated_clone(
15102        self,
15103    ) -> Option<(OpenFlags, fidl::endpoints::ServerEnd<NodeMarker>, NodeControlHandle)> {
15104        if let NodeRequest::DeprecatedClone { flags, object, control_handle } = self {
15105            Some((flags, object, control_handle))
15106        } else {
15107            None
15108        }
15109    }
15110
15111    #[allow(irrefutable_let_patterns)]
15112    pub fn into_get_attr(self) -> Option<(NodeGetAttrResponder)> {
15113        if let NodeRequest::GetAttr { responder } = self {
15114            Some((responder))
15115        } else {
15116            None
15117        }
15118    }
15119
15120    #[allow(irrefutable_let_patterns)]
15121    pub fn into_set_attr(
15122        self,
15123    ) -> Option<(NodeAttributeFlags, NodeAttributes, NodeSetAttrResponder)> {
15124        if let NodeRequest::SetAttr { flags, attributes, responder } = self {
15125            Some((flags, attributes, responder))
15126        } else {
15127            None
15128        }
15129    }
15130
15131    #[allow(irrefutable_let_patterns)]
15132    pub fn into_deprecated_get_flags(self) -> Option<(NodeDeprecatedGetFlagsResponder)> {
15133        if let NodeRequest::DeprecatedGetFlags { responder } = self {
15134            Some((responder))
15135        } else {
15136            None
15137        }
15138    }
15139
15140    #[allow(irrefutable_let_patterns)]
15141    pub fn into_deprecated_set_flags(self) -> Option<(OpenFlags, NodeDeprecatedSetFlagsResponder)> {
15142        if let NodeRequest::DeprecatedSetFlags { flags, responder } = self {
15143            Some((flags, responder))
15144        } else {
15145            None
15146        }
15147    }
15148
15149    #[allow(irrefutable_let_patterns)]
15150    pub fn into_get_flags(self) -> Option<(NodeGetFlagsResponder)> {
15151        if let NodeRequest::GetFlags { responder } = self {
15152            Some((responder))
15153        } else {
15154            None
15155        }
15156    }
15157
15158    #[allow(irrefutable_let_patterns)]
15159    pub fn into_set_flags(self) -> Option<(Flags, NodeSetFlagsResponder)> {
15160        if let NodeRequest::SetFlags { flags, responder } = self {
15161            Some((flags, responder))
15162        } else {
15163            None
15164        }
15165    }
15166
15167    #[allow(irrefutable_let_patterns)]
15168    pub fn into_query_filesystem(self) -> Option<(NodeQueryFilesystemResponder)> {
15169        if let NodeRequest::QueryFilesystem { responder } = self {
15170            Some((responder))
15171        } else {
15172            None
15173        }
15174    }
15175
15176    #[allow(irrefutable_let_patterns)]
15177    pub fn into_get_connection_info(self) -> Option<(NodeGetConnectionInfoResponder)> {
15178        if let NodeRequest::GetConnectionInfo { responder } = self {
15179            Some((responder))
15180        } else {
15181            None
15182        }
15183    }
15184
15185    #[allow(irrefutable_let_patterns)]
15186    pub fn into_get_attributes(self) -> Option<(NodeAttributesQuery, NodeGetAttributesResponder)> {
15187        if let NodeRequest::GetAttributes { query, responder } = self {
15188            Some((query, responder))
15189        } else {
15190            None
15191        }
15192    }
15193
15194    #[allow(irrefutable_let_patterns)]
15195    pub fn into_update_attributes(
15196        self,
15197    ) -> Option<(MutableNodeAttributes, NodeUpdateAttributesResponder)> {
15198        if let NodeRequest::UpdateAttributes { payload, responder } = self {
15199            Some((payload, responder))
15200        } else {
15201            None
15202        }
15203    }
15204
15205    #[allow(irrefutable_let_patterns)]
15206    pub fn into_sync(self) -> Option<(NodeSyncResponder)> {
15207        if let NodeRequest::Sync { responder } = self {
15208            Some((responder))
15209        } else {
15210            None
15211        }
15212    }
15213
15214    #[allow(irrefutable_let_patterns)]
15215    pub fn into_list_extended_attributes(
15216        self,
15217    ) -> Option<(fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>, NodeControlHandle)>
15218    {
15219        if let NodeRequest::ListExtendedAttributes { iterator, control_handle } = self {
15220            Some((iterator, control_handle))
15221        } else {
15222            None
15223        }
15224    }
15225
15226    #[allow(irrefutable_let_patterns)]
15227    pub fn into_get_extended_attribute(
15228        self,
15229    ) -> Option<(Vec<u8>, NodeGetExtendedAttributeResponder)> {
15230        if let NodeRequest::GetExtendedAttribute { name, responder } = self {
15231            Some((name, responder))
15232        } else {
15233            None
15234        }
15235    }
15236
15237    #[allow(irrefutable_let_patterns)]
15238    pub fn into_set_extended_attribute(
15239        self,
15240    ) -> Option<(
15241        Vec<u8>,
15242        ExtendedAttributeValue,
15243        SetExtendedAttributeMode,
15244        NodeSetExtendedAttributeResponder,
15245    )> {
15246        if let NodeRequest::SetExtendedAttribute { name, value, mode, responder } = self {
15247            Some((name, value, mode, responder))
15248        } else {
15249            None
15250        }
15251    }
15252
15253    #[allow(irrefutable_let_patterns)]
15254    pub fn into_remove_extended_attribute(
15255        self,
15256    ) -> Option<(Vec<u8>, NodeRemoveExtendedAttributeResponder)> {
15257        if let NodeRequest::RemoveExtendedAttribute { name, responder } = self {
15258            Some((name, responder))
15259        } else {
15260            None
15261        }
15262    }
15263
15264    /// Name of the method defined in FIDL
15265    pub fn method_name(&self) -> &'static str {
15266        match *self {
15267            NodeRequest::Clone { .. } => "clone",
15268            NodeRequest::Close { .. } => "close",
15269            NodeRequest::Query { .. } => "query",
15270            NodeRequest::DeprecatedClone { .. } => "deprecated_clone",
15271            NodeRequest::GetAttr { .. } => "get_attr",
15272            NodeRequest::SetAttr { .. } => "set_attr",
15273            NodeRequest::DeprecatedGetFlags { .. } => "deprecated_get_flags",
15274            NodeRequest::DeprecatedSetFlags { .. } => "deprecated_set_flags",
15275            NodeRequest::GetFlags { .. } => "get_flags",
15276            NodeRequest::SetFlags { .. } => "set_flags",
15277            NodeRequest::QueryFilesystem { .. } => "query_filesystem",
15278            NodeRequest::GetConnectionInfo { .. } => "get_connection_info",
15279            NodeRequest::GetAttributes { .. } => "get_attributes",
15280            NodeRequest::UpdateAttributes { .. } => "update_attributes",
15281            NodeRequest::Sync { .. } => "sync",
15282            NodeRequest::ListExtendedAttributes { .. } => "list_extended_attributes",
15283            NodeRequest::GetExtendedAttribute { .. } => "get_extended_attribute",
15284            NodeRequest::SetExtendedAttribute { .. } => "set_extended_attribute",
15285            NodeRequest::RemoveExtendedAttribute { .. } => "remove_extended_attribute",
15286            NodeRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
15287                "unknown one-way method"
15288            }
15289            NodeRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
15290                "unknown two-way method"
15291            }
15292        }
15293    }
15294}
15295
15296#[derive(Debug, Clone)]
15297pub struct NodeControlHandle {
15298    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
15299}
15300
15301impl fidl::endpoints::ControlHandle for NodeControlHandle {
15302    fn shutdown(&self) {
15303        self.inner.shutdown()
15304    }
15305    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
15306        self.inner.shutdown_with_epitaph(status)
15307    }
15308
15309    fn is_closed(&self) -> bool {
15310        self.inner.channel().is_closed()
15311    }
15312    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
15313        self.inner.channel().on_closed()
15314    }
15315
15316    #[cfg(target_os = "fuchsia")]
15317    fn signal_peer(
15318        &self,
15319        clear_mask: zx::Signals,
15320        set_mask: zx::Signals,
15321    ) -> Result<(), zx_status::Status> {
15322        use fidl::Peered;
15323        self.inner.channel().signal_peer(clear_mask, set_mask)
15324    }
15325}
15326
15327impl NodeControlHandle {
15328    pub fn send_on_open_(
15329        &self,
15330        mut s: i32,
15331        mut info: Option<NodeInfoDeprecated>,
15332    ) -> Result<(), fidl::Error> {
15333        self.inner.send::<NodeOnOpenRequest>(
15334            (s, info.as_mut()),
15335            0,
15336            0x7fc7bbb1dbfd1972,
15337            fidl::encoding::DynamicFlags::empty(),
15338        )
15339    }
15340
15341    pub fn send_on_representation(&self, mut payload: Representation) -> Result<(), fidl::Error> {
15342        self.inner.send::<Representation>(
15343            &mut payload,
15344            0,
15345            0x5cb40567d80a510c,
15346            fidl::encoding::DynamicFlags::empty(),
15347        )
15348    }
15349}
15350
15351#[must_use = "FIDL methods require a response to be sent"]
15352#[derive(Debug)]
15353pub struct NodeCloseResponder {
15354    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15355    tx_id: u32,
15356}
15357
15358/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15359/// if the responder is dropped without sending a response, so that the client
15360/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15361impl std::ops::Drop for NodeCloseResponder {
15362    fn drop(&mut self) {
15363        self.control_handle.shutdown();
15364        // Safety: drops once, never accessed again
15365        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15366    }
15367}
15368
15369impl fidl::endpoints::Responder for NodeCloseResponder {
15370    type ControlHandle = NodeControlHandle;
15371
15372    fn control_handle(&self) -> &NodeControlHandle {
15373        &self.control_handle
15374    }
15375
15376    fn drop_without_shutdown(mut self) {
15377        // Safety: drops once, never accessed again due to mem::forget
15378        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15379        // Prevent Drop from running (which would shut down the channel)
15380        std::mem::forget(self);
15381    }
15382}
15383
15384impl NodeCloseResponder {
15385    /// Sends a response to the FIDL transaction.
15386    ///
15387    /// Sets the channel to shutdown if an error occurs.
15388    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
15389        let _result = self.send_raw(result);
15390        if _result.is_err() {
15391            self.control_handle.shutdown();
15392        }
15393        self.drop_without_shutdown();
15394        _result
15395    }
15396
15397    /// Similar to "send" but does not shutdown the channel if an error occurs.
15398    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
15399        let _result = self.send_raw(result);
15400        self.drop_without_shutdown();
15401        _result
15402    }
15403
15404    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
15405        self.control_handle
15406            .inner
15407            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
15408                result,
15409                self.tx_id,
15410                0x5ac5d459ad7f657e,
15411                fidl::encoding::DynamicFlags::empty(),
15412            )
15413    }
15414}
15415
15416#[must_use = "FIDL methods require a response to be sent"]
15417#[derive(Debug)]
15418pub struct NodeQueryResponder {
15419    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15420    tx_id: u32,
15421}
15422
15423/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15424/// if the responder is dropped without sending a response, so that the client
15425/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15426impl std::ops::Drop for NodeQueryResponder {
15427    fn drop(&mut self) {
15428        self.control_handle.shutdown();
15429        // Safety: drops once, never accessed again
15430        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15431    }
15432}
15433
15434impl fidl::endpoints::Responder for NodeQueryResponder {
15435    type ControlHandle = NodeControlHandle;
15436
15437    fn control_handle(&self) -> &NodeControlHandle {
15438        &self.control_handle
15439    }
15440
15441    fn drop_without_shutdown(mut self) {
15442        // Safety: drops once, never accessed again due to mem::forget
15443        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15444        // Prevent Drop from running (which would shut down the channel)
15445        std::mem::forget(self);
15446    }
15447}
15448
15449impl NodeQueryResponder {
15450    /// Sends a response to the FIDL transaction.
15451    ///
15452    /// Sets the channel to shutdown if an error occurs.
15453    pub fn send(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
15454        let _result = self.send_raw(protocol);
15455        if _result.is_err() {
15456            self.control_handle.shutdown();
15457        }
15458        self.drop_without_shutdown();
15459        _result
15460    }
15461
15462    /// Similar to "send" but does not shutdown the channel if an error occurs.
15463    pub fn send_no_shutdown_on_err(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
15464        let _result = self.send_raw(protocol);
15465        self.drop_without_shutdown();
15466        _result
15467    }
15468
15469    fn send_raw(&self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
15470        self.control_handle.inner.send::<fidl_fuchsia_unknown::QueryableQueryResponse>(
15471            (protocol,),
15472            self.tx_id,
15473            0x2658edee9decfc06,
15474            fidl::encoding::DynamicFlags::empty(),
15475        )
15476    }
15477}
15478
15479#[must_use = "FIDL methods require a response to be sent"]
15480#[derive(Debug)]
15481pub struct NodeGetAttrResponder {
15482    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15483    tx_id: u32,
15484}
15485
15486/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15487/// if the responder is dropped without sending a response, so that the client
15488/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15489impl std::ops::Drop for NodeGetAttrResponder {
15490    fn drop(&mut self) {
15491        self.control_handle.shutdown();
15492        // Safety: drops once, never accessed again
15493        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15494    }
15495}
15496
15497impl fidl::endpoints::Responder for NodeGetAttrResponder {
15498    type ControlHandle = NodeControlHandle;
15499
15500    fn control_handle(&self) -> &NodeControlHandle {
15501        &self.control_handle
15502    }
15503
15504    fn drop_without_shutdown(mut self) {
15505        // Safety: drops once, never accessed again due to mem::forget
15506        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15507        // Prevent Drop from running (which would shut down the channel)
15508        std::mem::forget(self);
15509    }
15510}
15511
15512impl NodeGetAttrResponder {
15513    /// Sends a response to the FIDL transaction.
15514    ///
15515    /// Sets the channel to shutdown if an error occurs.
15516    pub fn send(self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
15517        let _result = self.send_raw(s, attributes);
15518        if _result.is_err() {
15519            self.control_handle.shutdown();
15520        }
15521        self.drop_without_shutdown();
15522        _result
15523    }
15524
15525    /// Similar to "send" but does not shutdown the channel if an error occurs.
15526    pub fn send_no_shutdown_on_err(
15527        self,
15528        mut s: i32,
15529        mut attributes: &NodeAttributes,
15530    ) -> Result<(), fidl::Error> {
15531        let _result = self.send_raw(s, attributes);
15532        self.drop_without_shutdown();
15533        _result
15534    }
15535
15536    fn send_raw(&self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
15537        self.control_handle.inner.send::<NodeGetAttrResponse>(
15538            (s, attributes),
15539            self.tx_id,
15540            0x78985e216314dafd,
15541            fidl::encoding::DynamicFlags::empty(),
15542        )
15543    }
15544}
15545
15546#[must_use = "FIDL methods require a response to be sent"]
15547#[derive(Debug)]
15548pub struct NodeSetAttrResponder {
15549    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15550    tx_id: u32,
15551}
15552
15553/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15554/// if the responder is dropped without sending a response, so that the client
15555/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15556impl std::ops::Drop for NodeSetAttrResponder {
15557    fn drop(&mut self) {
15558        self.control_handle.shutdown();
15559        // Safety: drops once, never accessed again
15560        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15561    }
15562}
15563
15564impl fidl::endpoints::Responder for NodeSetAttrResponder {
15565    type ControlHandle = NodeControlHandle;
15566
15567    fn control_handle(&self) -> &NodeControlHandle {
15568        &self.control_handle
15569    }
15570
15571    fn drop_without_shutdown(mut self) {
15572        // Safety: drops once, never accessed again due to mem::forget
15573        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15574        // Prevent Drop from running (which would shut down the channel)
15575        std::mem::forget(self);
15576    }
15577}
15578
15579impl NodeSetAttrResponder {
15580    /// Sends a response to the FIDL transaction.
15581    ///
15582    /// Sets the channel to shutdown if an error occurs.
15583    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
15584        let _result = self.send_raw(s);
15585        if _result.is_err() {
15586            self.control_handle.shutdown();
15587        }
15588        self.drop_without_shutdown();
15589        _result
15590    }
15591
15592    /// Similar to "send" but does not shutdown the channel if an error occurs.
15593    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
15594        let _result = self.send_raw(s);
15595        self.drop_without_shutdown();
15596        _result
15597    }
15598
15599    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
15600        self.control_handle.inner.send::<NodeSetAttrResponse>(
15601            (s,),
15602            self.tx_id,
15603            0x4186c0f40d938f46,
15604            fidl::encoding::DynamicFlags::empty(),
15605        )
15606    }
15607}
15608
15609#[must_use = "FIDL methods require a response to be sent"]
15610#[derive(Debug)]
15611pub struct NodeDeprecatedGetFlagsResponder {
15612    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15613    tx_id: u32,
15614}
15615
15616/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15617/// if the responder is dropped without sending a response, so that the client
15618/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15619impl std::ops::Drop for NodeDeprecatedGetFlagsResponder {
15620    fn drop(&mut self) {
15621        self.control_handle.shutdown();
15622        // Safety: drops once, never accessed again
15623        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15624    }
15625}
15626
15627impl fidl::endpoints::Responder for NodeDeprecatedGetFlagsResponder {
15628    type ControlHandle = NodeControlHandle;
15629
15630    fn control_handle(&self) -> &NodeControlHandle {
15631        &self.control_handle
15632    }
15633
15634    fn drop_without_shutdown(mut self) {
15635        // Safety: drops once, never accessed again due to mem::forget
15636        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15637        // Prevent Drop from running (which would shut down the channel)
15638        std::mem::forget(self);
15639    }
15640}
15641
15642impl NodeDeprecatedGetFlagsResponder {
15643    /// Sends a response to the FIDL transaction.
15644    ///
15645    /// Sets the channel to shutdown if an error occurs.
15646    pub fn send(self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
15647        let _result = self.send_raw(s, flags);
15648        if _result.is_err() {
15649            self.control_handle.shutdown();
15650        }
15651        self.drop_without_shutdown();
15652        _result
15653    }
15654
15655    /// Similar to "send" but does not shutdown the channel if an error occurs.
15656    pub fn send_no_shutdown_on_err(
15657        self,
15658        mut s: i32,
15659        mut flags: OpenFlags,
15660    ) -> Result<(), fidl::Error> {
15661        let _result = self.send_raw(s, flags);
15662        self.drop_without_shutdown();
15663        _result
15664    }
15665
15666    fn send_raw(&self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
15667        self.control_handle.inner.send::<NodeDeprecatedGetFlagsResponse>(
15668            (s, flags),
15669            self.tx_id,
15670            0x5b88fffb8eda3aa1,
15671            fidl::encoding::DynamicFlags::empty(),
15672        )
15673    }
15674}
15675
15676#[must_use = "FIDL methods require a response to be sent"]
15677#[derive(Debug)]
15678pub struct NodeDeprecatedSetFlagsResponder {
15679    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15680    tx_id: u32,
15681}
15682
15683/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15684/// if the responder is dropped without sending a response, so that the client
15685/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15686impl std::ops::Drop for NodeDeprecatedSetFlagsResponder {
15687    fn drop(&mut self) {
15688        self.control_handle.shutdown();
15689        // Safety: drops once, never accessed again
15690        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15691    }
15692}
15693
15694impl fidl::endpoints::Responder for NodeDeprecatedSetFlagsResponder {
15695    type ControlHandle = NodeControlHandle;
15696
15697    fn control_handle(&self) -> &NodeControlHandle {
15698        &self.control_handle
15699    }
15700
15701    fn drop_without_shutdown(mut self) {
15702        // Safety: drops once, never accessed again due to mem::forget
15703        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15704        // Prevent Drop from running (which would shut down the channel)
15705        std::mem::forget(self);
15706    }
15707}
15708
15709impl NodeDeprecatedSetFlagsResponder {
15710    /// Sends a response to the FIDL transaction.
15711    ///
15712    /// Sets the channel to shutdown if an error occurs.
15713    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
15714        let _result = self.send_raw(s);
15715        if _result.is_err() {
15716            self.control_handle.shutdown();
15717        }
15718        self.drop_without_shutdown();
15719        _result
15720    }
15721
15722    /// Similar to "send" but does not shutdown the channel if an error occurs.
15723    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
15724        let _result = self.send_raw(s);
15725        self.drop_without_shutdown();
15726        _result
15727    }
15728
15729    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
15730        self.control_handle.inner.send::<NodeDeprecatedSetFlagsResponse>(
15731            (s,),
15732            self.tx_id,
15733            0x5295b76c71fde733,
15734            fidl::encoding::DynamicFlags::empty(),
15735        )
15736    }
15737}
15738
15739#[must_use = "FIDL methods require a response to be sent"]
15740#[derive(Debug)]
15741pub struct NodeGetFlagsResponder {
15742    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15743    tx_id: u32,
15744}
15745
15746/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15747/// if the responder is dropped without sending a response, so that the client
15748/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15749impl std::ops::Drop for NodeGetFlagsResponder {
15750    fn drop(&mut self) {
15751        self.control_handle.shutdown();
15752        // Safety: drops once, never accessed again
15753        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15754    }
15755}
15756
15757impl fidl::endpoints::Responder for NodeGetFlagsResponder {
15758    type ControlHandle = NodeControlHandle;
15759
15760    fn control_handle(&self) -> &NodeControlHandle {
15761        &self.control_handle
15762    }
15763
15764    fn drop_without_shutdown(mut self) {
15765        // Safety: drops once, never accessed again due to mem::forget
15766        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15767        // Prevent Drop from running (which would shut down the channel)
15768        std::mem::forget(self);
15769    }
15770}
15771
15772impl NodeGetFlagsResponder {
15773    /// Sends a response to the FIDL transaction.
15774    ///
15775    /// Sets the channel to shutdown if an error occurs.
15776    pub fn send(self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
15777        let _result = self.send_raw(result);
15778        if _result.is_err() {
15779            self.control_handle.shutdown();
15780        }
15781        self.drop_without_shutdown();
15782        _result
15783    }
15784
15785    /// Similar to "send" but does not shutdown the channel if an error occurs.
15786    pub fn send_no_shutdown_on_err(
15787        self,
15788        mut result: Result<Flags, i32>,
15789    ) -> Result<(), fidl::Error> {
15790        let _result = self.send_raw(result);
15791        self.drop_without_shutdown();
15792        _result
15793    }
15794
15795    fn send_raw(&self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
15796        self.control_handle
15797            .inner
15798            .send::<fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>>(
15799                fidl::encoding::FlexibleResult::new(result.map(|flags| (flags,))),
15800                self.tx_id,
15801                0x176eb318f64ec23,
15802                fidl::encoding::DynamicFlags::FLEXIBLE,
15803            )
15804    }
15805}
15806
15807#[must_use = "FIDL methods require a response to be sent"]
15808#[derive(Debug)]
15809pub struct NodeSetFlagsResponder {
15810    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15811    tx_id: u32,
15812}
15813
15814/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15815/// if the responder is dropped without sending a response, so that the client
15816/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15817impl std::ops::Drop for NodeSetFlagsResponder {
15818    fn drop(&mut self) {
15819        self.control_handle.shutdown();
15820        // Safety: drops once, never accessed again
15821        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15822    }
15823}
15824
15825impl fidl::endpoints::Responder for NodeSetFlagsResponder {
15826    type ControlHandle = NodeControlHandle;
15827
15828    fn control_handle(&self) -> &NodeControlHandle {
15829        &self.control_handle
15830    }
15831
15832    fn drop_without_shutdown(mut self) {
15833        // Safety: drops once, never accessed again due to mem::forget
15834        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15835        // Prevent Drop from running (which would shut down the channel)
15836        std::mem::forget(self);
15837    }
15838}
15839
15840impl NodeSetFlagsResponder {
15841    /// Sends a response to the FIDL transaction.
15842    ///
15843    /// Sets the channel to shutdown if an error occurs.
15844    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
15845        let _result = self.send_raw(result);
15846        if _result.is_err() {
15847            self.control_handle.shutdown();
15848        }
15849        self.drop_without_shutdown();
15850        _result
15851    }
15852
15853    /// Similar to "send" but does not shutdown the channel if an error occurs.
15854    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
15855        let _result = self.send_raw(result);
15856        self.drop_without_shutdown();
15857        _result
15858    }
15859
15860    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
15861        self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
15862            fidl::encoding::EmptyStruct,
15863            i32,
15864        >>(
15865            fidl::encoding::FlexibleResult::new(result),
15866            self.tx_id,
15867            0x55a8028685791ea8,
15868            fidl::encoding::DynamicFlags::FLEXIBLE,
15869        )
15870    }
15871}
15872
15873#[must_use = "FIDL methods require a response to be sent"]
15874#[derive(Debug)]
15875pub struct NodeQueryFilesystemResponder {
15876    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15877    tx_id: u32,
15878}
15879
15880/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15881/// if the responder is dropped without sending a response, so that the client
15882/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15883impl std::ops::Drop for NodeQueryFilesystemResponder {
15884    fn drop(&mut self) {
15885        self.control_handle.shutdown();
15886        // Safety: drops once, never accessed again
15887        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15888    }
15889}
15890
15891impl fidl::endpoints::Responder for NodeQueryFilesystemResponder {
15892    type ControlHandle = NodeControlHandle;
15893
15894    fn control_handle(&self) -> &NodeControlHandle {
15895        &self.control_handle
15896    }
15897
15898    fn drop_without_shutdown(mut self) {
15899        // Safety: drops once, never accessed again due to mem::forget
15900        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15901        // Prevent Drop from running (which would shut down the channel)
15902        std::mem::forget(self);
15903    }
15904}
15905
15906impl NodeQueryFilesystemResponder {
15907    /// Sends a response to the FIDL transaction.
15908    ///
15909    /// Sets the channel to shutdown if an error occurs.
15910    pub fn send(self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
15911        let _result = self.send_raw(s, info);
15912        if _result.is_err() {
15913            self.control_handle.shutdown();
15914        }
15915        self.drop_without_shutdown();
15916        _result
15917    }
15918
15919    /// Similar to "send" but does not shutdown the channel if an error occurs.
15920    pub fn send_no_shutdown_on_err(
15921        self,
15922        mut s: i32,
15923        mut info: Option<&FilesystemInfo>,
15924    ) -> Result<(), fidl::Error> {
15925        let _result = self.send_raw(s, info);
15926        self.drop_without_shutdown();
15927        _result
15928    }
15929
15930    fn send_raw(&self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
15931        self.control_handle.inner.send::<NodeQueryFilesystemResponse>(
15932            (s, info),
15933            self.tx_id,
15934            0x6f344a1c6b0a0610,
15935            fidl::encoding::DynamicFlags::empty(),
15936        )
15937    }
15938}
15939
15940#[must_use = "FIDL methods require a response to be sent"]
15941#[derive(Debug)]
15942pub struct NodeGetConnectionInfoResponder {
15943    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
15944    tx_id: u32,
15945}
15946
15947/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
15948/// if the responder is dropped without sending a response, so that the client
15949/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
15950impl std::ops::Drop for NodeGetConnectionInfoResponder {
15951    fn drop(&mut self) {
15952        self.control_handle.shutdown();
15953        // Safety: drops once, never accessed again
15954        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15955    }
15956}
15957
15958impl fidl::endpoints::Responder for NodeGetConnectionInfoResponder {
15959    type ControlHandle = NodeControlHandle;
15960
15961    fn control_handle(&self) -> &NodeControlHandle {
15962        &self.control_handle
15963    }
15964
15965    fn drop_without_shutdown(mut self) {
15966        // Safety: drops once, never accessed again due to mem::forget
15967        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15968        // Prevent Drop from running (which would shut down the channel)
15969        std::mem::forget(self);
15970    }
15971}
15972
15973impl NodeGetConnectionInfoResponder {
15974    /// Sends a response to the FIDL transaction.
15975    ///
15976    /// Sets the channel to shutdown if an error occurs.
15977    pub fn send(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
15978        let _result = self.send_raw(payload);
15979        if _result.is_err() {
15980            self.control_handle.shutdown();
15981        }
15982        self.drop_without_shutdown();
15983        _result
15984    }
15985
15986    /// Similar to "send" but does not shutdown the channel if an error occurs.
15987    pub fn send_no_shutdown_on_err(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
15988        let _result = self.send_raw(payload);
15989        self.drop_without_shutdown();
15990        _result
15991    }
15992
15993    fn send_raw(&self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
15994        self.control_handle.inner.send::<ConnectionInfo>(
15995            &mut payload,
15996            self.tx_id,
15997            0x584c377c7c0a6d0b,
15998            fidl::encoding::DynamicFlags::empty(),
15999        )
16000    }
16001}
16002
16003#[must_use = "FIDL methods require a response to be sent"]
16004#[derive(Debug)]
16005pub struct NodeGetAttributesResponder {
16006    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
16007    tx_id: u32,
16008}
16009
16010/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
16011/// if the responder is dropped without sending a response, so that the client
16012/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16013impl std::ops::Drop for NodeGetAttributesResponder {
16014    fn drop(&mut self) {
16015        self.control_handle.shutdown();
16016        // Safety: drops once, never accessed again
16017        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16018    }
16019}
16020
16021impl fidl::endpoints::Responder for NodeGetAttributesResponder {
16022    type ControlHandle = NodeControlHandle;
16023
16024    fn control_handle(&self) -> &NodeControlHandle {
16025        &self.control_handle
16026    }
16027
16028    fn drop_without_shutdown(mut self) {
16029        // Safety: drops once, never accessed again due to mem::forget
16030        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16031        // Prevent Drop from running (which would shut down the channel)
16032        std::mem::forget(self);
16033    }
16034}
16035
16036impl NodeGetAttributesResponder {
16037    /// Sends a response to the FIDL transaction.
16038    ///
16039    /// Sets the channel to shutdown if an error occurs.
16040    pub fn send(
16041        self,
16042        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
16043    ) -> Result<(), fidl::Error> {
16044        let _result = self.send_raw(result);
16045        if _result.is_err() {
16046            self.control_handle.shutdown();
16047        }
16048        self.drop_without_shutdown();
16049        _result
16050    }
16051
16052    /// Similar to "send" but does not shutdown the channel if an error occurs.
16053    pub fn send_no_shutdown_on_err(
16054        self,
16055        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
16056    ) -> Result<(), fidl::Error> {
16057        let _result = self.send_raw(result);
16058        self.drop_without_shutdown();
16059        _result
16060    }
16061
16062    fn send_raw(
16063        &self,
16064        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
16065    ) -> Result<(), fidl::Error> {
16066        self.control_handle.inner.send::<fidl::encoding::ResultType<NodeAttributes2, i32>>(
16067            result,
16068            self.tx_id,
16069            0x3d4396a638ea053b,
16070            fidl::encoding::DynamicFlags::empty(),
16071        )
16072    }
16073}
16074
16075#[must_use = "FIDL methods require a response to be sent"]
16076#[derive(Debug)]
16077pub struct NodeUpdateAttributesResponder {
16078    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
16079    tx_id: u32,
16080}
16081
16082/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
16083/// if the responder is dropped without sending a response, so that the client
16084/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16085impl std::ops::Drop for NodeUpdateAttributesResponder {
16086    fn drop(&mut self) {
16087        self.control_handle.shutdown();
16088        // Safety: drops once, never accessed again
16089        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16090    }
16091}
16092
16093impl fidl::endpoints::Responder for NodeUpdateAttributesResponder {
16094    type ControlHandle = NodeControlHandle;
16095
16096    fn control_handle(&self) -> &NodeControlHandle {
16097        &self.control_handle
16098    }
16099
16100    fn drop_without_shutdown(mut self) {
16101        // Safety: drops once, never accessed again due to mem::forget
16102        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16103        // Prevent Drop from running (which would shut down the channel)
16104        std::mem::forget(self);
16105    }
16106}
16107
16108impl NodeUpdateAttributesResponder {
16109    /// Sends a response to the FIDL transaction.
16110    ///
16111    /// Sets the channel to shutdown if an error occurs.
16112    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16113        let _result = self.send_raw(result);
16114        if _result.is_err() {
16115            self.control_handle.shutdown();
16116        }
16117        self.drop_without_shutdown();
16118        _result
16119    }
16120
16121    /// Similar to "send" but does not shutdown the channel if an error occurs.
16122    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16123        let _result = self.send_raw(result);
16124        self.drop_without_shutdown();
16125        _result
16126    }
16127
16128    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16129        self.control_handle
16130            .inner
16131            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
16132                result,
16133                self.tx_id,
16134                0x3308c1da5a89bf08,
16135                fidl::encoding::DynamicFlags::empty(),
16136            )
16137    }
16138}
16139
16140#[must_use = "FIDL methods require a response to be sent"]
16141#[derive(Debug)]
16142pub struct NodeSyncResponder {
16143    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
16144    tx_id: u32,
16145}
16146
16147/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
16148/// if the responder is dropped without sending a response, so that the client
16149/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16150impl std::ops::Drop for NodeSyncResponder {
16151    fn drop(&mut self) {
16152        self.control_handle.shutdown();
16153        // Safety: drops once, never accessed again
16154        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16155    }
16156}
16157
16158impl fidl::endpoints::Responder for NodeSyncResponder {
16159    type ControlHandle = NodeControlHandle;
16160
16161    fn control_handle(&self) -> &NodeControlHandle {
16162        &self.control_handle
16163    }
16164
16165    fn drop_without_shutdown(mut self) {
16166        // Safety: drops once, never accessed again due to mem::forget
16167        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16168        // Prevent Drop from running (which would shut down the channel)
16169        std::mem::forget(self);
16170    }
16171}
16172
16173impl NodeSyncResponder {
16174    /// Sends a response to the FIDL transaction.
16175    ///
16176    /// Sets the channel to shutdown if an error occurs.
16177    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16178        let _result = self.send_raw(result);
16179        if _result.is_err() {
16180            self.control_handle.shutdown();
16181        }
16182        self.drop_without_shutdown();
16183        _result
16184    }
16185
16186    /// Similar to "send" but does not shutdown the channel if an error occurs.
16187    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16188        let _result = self.send_raw(result);
16189        self.drop_without_shutdown();
16190        _result
16191    }
16192
16193    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16194        self.control_handle
16195            .inner
16196            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
16197                result,
16198                self.tx_id,
16199                0x2c5c27ca0ab5dc49,
16200                fidl::encoding::DynamicFlags::empty(),
16201            )
16202    }
16203}
16204
16205#[must_use = "FIDL methods require a response to be sent"]
16206#[derive(Debug)]
16207pub struct NodeGetExtendedAttributeResponder {
16208    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
16209    tx_id: u32,
16210}
16211
16212/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
16213/// if the responder is dropped without sending a response, so that the client
16214/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16215impl std::ops::Drop for NodeGetExtendedAttributeResponder {
16216    fn drop(&mut self) {
16217        self.control_handle.shutdown();
16218        // Safety: drops once, never accessed again
16219        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16220    }
16221}
16222
16223impl fidl::endpoints::Responder for NodeGetExtendedAttributeResponder {
16224    type ControlHandle = NodeControlHandle;
16225
16226    fn control_handle(&self) -> &NodeControlHandle {
16227        &self.control_handle
16228    }
16229
16230    fn drop_without_shutdown(mut self) {
16231        // Safety: drops once, never accessed again due to mem::forget
16232        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16233        // Prevent Drop from running (which would shut down the channel)
16234        std::mem::forget(self);
16235    }
16236}
16237
16238impl NodeGetExtendedAttributeResponder {
16239    /// Sends a response to the FIDL transaction.
16240    ///
16241    /// Sets the channel to shutdown if an error occurs.
16242    pub fn send(self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
16243        let _result = self.send_raw(result);
16244        if _result.is_err() {
16245            self.control_handle.shutdown();
16246        }
16247        self.drop_without_shutdown();
16248        _result
16249    }
16250
16251    /// Similar to "send" but does not shutdown the channel if an error occurs.
16252    pub fn send_no_shutdown_on_err(
16253        self,
16254        mut result: Result<ExtendedAttributeValue, i32>,
16255    ) -> Result<(), fidl::Error> {
16256        let _result = self.send_raw(result);
16257        self.drop_without_shutdown();
16258        _result
16259    }
16260
16261    fn send_raw(&self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
16262        self.control_handle.inner.send::<fidl::encoding::ResultType<ExtendedAttributeValue, i32>>(
16263            result.as_mut().map_err(|e| *e),
16264            self.tx_id,
16265            0x45ffa3ccfdeb76db,
16266            fidl::encoding::DynamicFlags::empty(),
16267        )
16268    }
16269}
16270
16271#[must_use = "FIDL methods require a response to be sent"]
16272#[derive(Debug)]
16273pub struct NodeSetExtendedAttributeResponder {
16274    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
16275    tx_id: u32,
16276}
16277
16278/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
16279/// if the responder is dropped without sending a response, so that the client
16280/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16281impl std::ops::Drop for NodeSetExtendedAttributeResponder {
16282    fn drop(&mut self) {
16283        self.control_handle.shutdown();
16284        // Safety: drops once, never accessed again
16285        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16286    }
16287}
16288
16289impl fidl::endpoints::Responder for NodeSetExtendedAttributeResponder {
16290    type ControlHandle = NodeControlHandle;
16291
16292    fn control_handle(&self) -> &NodeControlHandle {
16293        &self.control_handle
16294    }
16295
16296    fn drop_without_shutdown(mut self) {
16297        // Safety: drops once, never accessed again due to mem::forget
16298        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16299        // Prevent Drop from running (which would shut down the channel)
16300        std::mem::forget(self);
16301    }
16302}
16303
16304impl NodeSetExtendedAttributeResponder {
16305    /// Sends a response to the FIDL transaction.
16306    ///
16307    /// Sets the channel to shutdown if an error occurs.
16308    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16309        let _result = self.send_raw(result);
16310        if _result.is_err() {
16311            self.control_handle.shutdown();
16312        }
16313        self.drop_without_shutdown();
16314        _result
16315    }
16316
16317    /// Similar to "send" but does not shutdown the channel if an error occurs.
16318    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16319        let _result = self.send_raw(result);
16320        self.drop_without_shutdown();
16321        _result
16322    }
16323
16324    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16325        self.control_handle
16326            .inner
16327            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
16328                result,
16329                self.tx_id,
16330                0x4a951362f681f23c,
16331                fidl::encoding::DynamicFlags::empty(),
16332            )
16333    }
16334}
16335
16336#[must_use = "FIDL methods require a response to be sent"]
16337#[derive(Debug)]
16338pub struct NodeRemoveExtendedAttributeResponder {
16339    control_handle: std::mem::ManuallyDrop<NodeControlHandle>,
16340    tx_id: u32,
16341}
16342
16343/// Set the the channel to be shutdown (see [`NodeControlHandle::shutdown`])
16344/// if the responder is dropped without sending a response, so that the client
16345/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16346impl std::ops::Drop for NodeRemoveExtendedAttributeResponder {
16347    fn drop(&mut self) {
16348        self.control_handle.shutdown();
16349        // Safety: drops once, never accessed again
16350        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16351    }
16352}
16353
16354impl fidl::endpoints::Responder for NodeRemoveExtendedAttributeResponder {
16355    type ControlHandle = NodeControlHandle;
16356
16357    fn control_handle(&self) -> &NodeControlHandle {
16358        &self.control_handle
16359    }
16360
16361    fn drop_without_shutdown(mut self) {
16362        // Safety: drops once, never accessed again due to mem::forget
16363        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16364        // Prevent Drop from running (which would shut down the channel)
16365        std::mem::forget(self);
16366    }
16367}
16368
16369impl NodeRemoveExtendedAttributeResponder {
16370    /// Sends a response to the FIDL transaction.
16371    ///
16372    /// Sets the channel to shutdown if an error occurs.
16373    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16374        let _result = self.send_raw(result);
16375        if _result.is_err() {
16376            self.control_handle.shutdown();
16377        }
16378        self.drop_without_shutdown();
16379        _result
16380    }
16381
16382    /// Similar to "send" but does not shutdown the channel if an error occurs.
16383    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16384        let _result = self.send_raw(result);
16385        self.drop_without_shutdown();
16386        _result
16387    }
16388
16389    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
16390        self.control_handle
16391            .inner
16392            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
16393                result,
16394                self.tx_id,
16395                0x7a0b9f3a9bf9032d,
16396                fidl::encoding::DynamicFlags::empty(),
16397            )
16398    }
16399}
16400
16401#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
16402pub struct ReadableMarker;
16403
16404impl fidl::endpoints::ProtocolMarker for ReadableMarker {
16405    type Proxy = ReadableProxy;
16406    type RequestStream = ReadableRequestStream;
16407    #[cfg(target_os = "fuchsia")]
16408    type SynchronousProxy = ReadableSynchronousProxy;
16409
16410    const DEBUG_NAME: &'static str = "(anonymous) Readable";
16411}
16412pub type ReadableReadResult = Result<Vec<u8>, i32>;
16413
16414pub trait ReadableProxyInterface: Send + Sync {
16415    type ReadResponseFut: std::future::Future<Output = Result<ReadableReadResult, fidl::Error>>
16416        + Send;
16417    fn r#read(&self, count: u64) -> Self::ReadResponseFut;
16418}
16419#[derive(Debug)]
16420#[cfg(target_os = "fuchsia")]
16421pub struct ReadableSynchronousProxy {
16422    client: fidl::client::sync::Client,
16423}
16424
16425#[cfg(target_os = "fuchsia")]
16426impl fidl::endpoints::SynchronousProxy for ReadableSynchronousProxy {
16427    type Proxy = ReadableProxy;
16428    type Protocol = ReadableMarker;
16429
16430    fn from_channel(inner: fidl::Channel) -> Self {
16431        Self::new(inner)
16432    }
16433
16434    fn into_channel(self) -> fidl::Channel {
16435        self.client.into_channel()
16436    }
16437
16438    fn as_channel(&self) -> &fidl::Channel {
16439        self.client.as_channel()
16440    }
16441}
16442
16443#[cfg(target_os = "fuchsia")]
16444impl ReadableSynchronousProxy {
16445    pub fn new(channel: fidl::Channel) -> Self {
16446        let protocol_name = <ReadableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
16447        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
16448    }
16449
16450    pub fn into_channel(self) -> fidl::Channel {
16451        self.client.into_channel()
16452    }
16453
16454    /// Waits until an event arrives and returns it. It is safe for other
16455    /// threads to make concurrent requests while waiting for an event.
16456    pub fn wait_for_event(
16457        &self,
16458        deadline: zx::MonotonicInstant,
16459    ) -> Result<ReadableEvent, fidl::Error> {
16460        ReadableEvent::decode(self.client.wait_for_event(deadline)?)
16461    }
16462
16463    /// Reads up to 'count' bytes at the seek offset.
16464    /// The seek offset is moved forward by the number of bytes read.
16465    ///
16466    /// ## Invariants
16467    ///
16468    /// * The returned `data.length` will never be greater than `count`.
16469    /// * If `data.length` is less than `count`, it means that the seek offset
16470    ///   has reached the end of file as part of this operation.
16471    /// * If `data.length` is zero while `count` is not, it means that the
16472    ///   seek offset is already at or beyond the end of file, and no data could
16473    ///   be read.
16474    /// * If `count` is zero, the server should perform all the checks ensuring
16475    ///   read access without actually read anything, and return an empty
16476    ///   `data` vector.
16477    ///
16478    /// This method requires the [`Rights.READ_BYTES`] right.
16479    ///
16480    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
16481    pub fn r#read(
16482        &self,
16483        mut count: u64,
16484        ___deadline: zx::MonotonicInstant,
16485    ) -> Result<ReadableReadResult, fidl::Error> {
16486        let _response = self.client.send_query::<
16487            ReadableReadRequest,
16488            fidl::encoding::ResultType<ReadableReadResponse, i32>,
16489        >(
16490            (count,),
16491            0x57e419a298c8ede,
16492            fidl::encoding::DynamicFlags::empty(),
16493            ___deadline,
16494        )?;
16495        Ok(_response.map(|x| x.data))
16496    }
16497}
16498
16499#[cfg(target_os = "fuchsia")]
16500impl From<ReadableSynchronousProxy> for zx::Handle {
16501    fn from(value: ReadableSynchronousProxy) -> Self {
16502        value.into_channel().into()
16503    }
16504}
16505
16506#[cfg(target_os = "fuchsia")]
16507impl From<fidl::Channel> for ReadableSynchronousProxy {
16508    fn from(value: fidl::Channel) -> Self {
16509        Self::new(value)
16510    }
16511}
16512
16513#[derive(Debug, Clone)]
16514pub struct ReadableProxy {
16515    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
16516}
16517
16518impl fidl::endpoints::Proxy for ReadableProxy {
16519    type Protocol = ReadableMarker;
16520
16521    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
16522        Self::new(inner)
16523    }
16524
16525    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
16526        self.client.into_channel().map_err(|client| Self { client })
16527    }
16528
16529    fn as_channel(&self) -> &::fidl::AsyncChannel {
16530        self.client.as_channel()
16531    }
16532}
16533
16534impl ReadableProxy {
16535    /// Create a new Proxy for fuchsia.io/Readable.
16536    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
16537        let protocol_name = <ReadableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
16538        Self { client: fidl::client::Client::new(channel, protocol_name) }
16539    }
16540
16541    /// Get a Stream of events from the remote end of the protocol.
16542    ///
16543    /// # Panics
16544    ///
16545    /// Panics if the event stream was already taken.
16546    pub fn take_event_stream(&self) -> ReadableEventStream {
16547        ReadableEventStream { event_receiver: self.client.take_event_receiver() }
16548    }
16549
16550    /// Reads up to 'count' bytes at the seek offset.
16551    /// The seek offset is moved forward by the number of bytes read.
16552    ///
16553    /// ## Invariants
16554    ///
16555    /// * The returned `data.length` will never be greater than `count`.
16556    /// * If `data.length` is less than `count`, it means that the seek offset
16557    ///   has reached the end of file as part of this operation.
16558    /// * If `data.length` is zero while `count` is not, it means that the
16559    ///   seek offset is already at or beyond the end of file, and no data could
16560    ///   be read.
16561    /// * If `count` is zero, the server should perform all the checks ensuring
16562    ///   read access without actually read anything, and return an empty
16563    ///   `data` vector.
16564    ///
16565    /// This method requires the [`Rights.READ_BYTES`] right.
16566    ///
16567    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
16568    pub fn r#read(
16569        &self,
16570        mut count: u64,
16571    ) -> fidl::client::QueryResponseFut<
16572        ReadableReadResult,
16573        fidl::encoding::DefaultFuchsiaResourceDialect,
16574    > {
16575        ReadableProxyInterface::r#read(self, count)
16576    }
16577}
16578
16579impl ReadableProxyInterface for ReadableProxy {
16580    type ReadResponseFut = fidl::client::QueryResponseFut<
16581        ReadableReadResult,
16582        fidl::encoding::DefaultFuchsiaResourceDialect,
16583    >;
16584    fn r#read(&self, mut count: u64) -> Self::ReadResponseFut {
16585        fn _decode(
16586            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
16587        ) -> Result<ReadableReadResult, fidl::Error> {
16588            let _response = fidl::client::decode_transaction_body::<
16589                fidl::encoding::ResultType<ReadableReadResponse, i32>,
16590                fidl::encoding::DefaultFuchsiaResourceDialect,
16591                0x57e419a298c8ede,
16592            >(_buf?)?;
16593            Ok(_response.map(|x| x.data))
16594        }
16595        self.client.send_query_and_decode::<ReadableReadRequest, ReadableReadResult>(
16596            (count,),
16597            0x57e419a298c8ede,
16598            fidl::encoding::DynamicFlags::empty(),
16599            _decode,
16600        )
16601    }
16602}
16603
16604pub struct ReadableEventStream {
16605    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
16606}
16607
16608impl std::marker::Unpin for ReadableEventStream {}
16609
16610impl futures::stream::FusedStream for ReadableEventStream {
16611    fn is_terminated(&self) -> bool {
16612        self.event_receiver.is_terminated()
16613    }
16614}
16615
16616impl futures::Stream for ReadableEventStream {
16617    type Item = Result<ReadableEvent, fidl::Error>;
16618
16619    fn poll_next(
16620        mut self: std::pin::Pin<&mut Self>,
16621        cx: &mut std::task::Context<'_>,
16622    ) -> std::task::Poll<Option<Self::Item>> {
16623        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
16624            &mut self.event_receiver,
16625            cx
16626        )?) {
16627            Some(buf) => std::task::Poll::Ready(Some(ReadableEvent::decode(buf))),
16628            None => std::task::Poll::Ready(None),
16629        }
16630    }
16631}
16632
16633#[derive(Debug)]
16634pub enum ReadableEvent {}
16635
16636impl ReadableEvent {
16637    /// Decodes a message buffer as a [`ReadableEvent`].
16638    fn decode(
16639        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
16640    ) -> Result<ReadableEvent, fidl::Error> {
16641        let (bytes, _handles) = buf.split_mut();
16642        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
16643        debug_assert_eq!(tx_header.tx_id, 0);
16644        match tx_header.ordinal {
16645            _ => Err(fidl::Error::UnknownOrdinal {
16646                ordinal: tx_header.ordinal,
16647                protocol_name: <ReadableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
16648            }),
16649        }
16650    }
16651}
16652
16653/// A Stream of incoming requests for fuchsia.io/Readable.
16654pub struct ReadableRequestStream {
16655    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
16656    is_terminated: bool,
16657}
16658
16659impl std::marker::Unpin for ReadableRequestStream {}
16660
16661impl futures::stream::FusedStream for ReadableRequestStream {
16662    fn is_terminated(&self) -> bool {
16663        self.is_terminated
16664    }
16665}
16666
16667impl fidl::endpoints::RequestStream for ReadableRequestStream {
16668    type Protocol = ReadableMarker;
16669    type ControlHandle = ReadableControlHandle;
16670
16671    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
16672        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
16673    }
16674
16675    fn control_handle(&self) -> Self::ControlHandle {
16676        ReadableControlHandle { inner: self.inner.clone() }
16677    }
16678
16679    fn into_inner(
16680        self,
16681    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
16682    {
16683        (self.inner, self.is_terminated)
16684    }
16685
16686    fn from_inner(
16687        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
16688        is_terminated: bool,
16689    ) -> Self {
16690        Self { inner, is_terminated }
16691    }
16692}
16693
16694impl futures::Stream for ReadableRequestStream {
16695    type Item = Result<ReadableRequest, fidl::Error>;
16696
16697    fn poll_next(
16698        mut self: std::pin::Pin<&mut Self>,
16699        cx: &mut std::task::Context<'_>,
16700    ) -> std::task::Poll<Option<Self::Item>> {
16701        let this = &mut *self;
16702        if this.inner.check_shutdown(cx) {
16703            this.is_terminated = true;
16704            return std::task::Poll::Ready(None);
16705        }
16706        if this.is_terminated {
16707            panic!("polled ReadableRequestStream after completion");
16708        }
16709        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
16710            |bytes, handles| {
16711                match this.inner.channel().read_etc(cx, bytes, handles) {
16712                    std::task::Poll::Ready(Ok(())) => {}
16713                    std::task::Poll::Pending => return std::task::Poll::Pending,
16714                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
16715                        this.is_terminated = true;
16716                        return std::task::Poll::Ready(None);
16717                    }
16718                    std::task::Poll::Ready(Err(e)) => {
16719                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
16720                            e.into(),
16721                        ))))
16722                    }
16723                }
16724
16725                // A message has been received from the channel
16726                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
16727
16728                std::task::Poll::Ready(Some(match header.ordinal {
16729                    0x57e419a298c8ede => {
16730                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
16731                        let mut req = fidl::new_empty!(
16732                            ReadableReadRequest,
16733                            fidl::encoding::DefaultFuchsiaResourceDialect
16734                        );
16735                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ReadableReadRequest>(&header, _body_bytes, handles, &mut req)?;
16736                        let control_handle = ReadableControlHandle { inner: this.inner.clone() };
16737                        Ok(ReadableRequest::Read {
16738                            count: req.count,
16739
16740                            responder: ReadableReadResponder {
16741                                control_handle: std::mem::ManuallyDrop::new(control_handle),
16742                                tx_id: header.tx_id,
16743                            },
16744                        })
16745                    }
16746                    _ => Err(fidl::Error::UnknownOrdinal {
16747                        ordinal: header.ordinal,
16748                        protocol_name:
16749                            <ReadableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
16750                    }),
16751                }))
16752            },
16753        )
16754    }
16755}
16756
16757#[derive(Debug)]
16758pub enum ReadableRequest {
16759    /// Reads up to 'count' bytes at the seek offset.
16760    /// The seek offset is moved forward by the number of bytes read.
16761    ///
16762    /// ## Invariants
16763    ///
16764    /// * The returned `data.length` will never be greater than `count`.
16765    /// * If `data.length` is less than `count`, it means that the seek offset
16766    ///   has reached the end of file as part of this operation.
16767    /// * If `data.length` is zero while `count` is not, it means that the
16768    ///   seek offset is already at or beyond the end of file, and no data could
16769    ///   be read.
16770    /// * If `count` is zero, the server should perform all the checks ensuring
16771    ///   read access without actually read anything, and return an empty
16772    ///   `data` vector.
16773    ///
16774    /// This method requires the [`Rights.READ_BYTES`] right.
16775    ///
16776    /// Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.
16777    Read { count: u64, responder: ReadableReadResponder },
16778}
16779
16780impl ReadableRequest {
16781    #[allow(irrefutable_let_patterns)]
16782    pub fn into_read(self) -> Option<(u64, ReadableReadResponder)> {
16783        if let ReadableRequest::Read { count, responder } = self {
16784            Some((count, responder))
16785        } else {
16786            None
16787        }
16788    }
16789
16790    /// Name of the method defined in FIDL
16791    pub fn method_name(&self) -> &'static str {
16792        match *self {
16793            ReadableRequest::Read { .. } => "read",
16794        }
16795    }
16796}
16797
16798#[derive(Debug, Clone)]
16799pub struct ReadableControlHandle {
16800    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
16801}
16802
16803impl fidl::endpoints::ControlHandle for ReadableControlHandle {
16804    fn shutdown(&self) {
16805        self.inner.shutdown()
16806    }
16807    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
16808        self.inner.shutdown_with_epitaph(status)
16809    }
16810
16811    fn is_closed(&self) -> bool {
16812        self.inner.channel().is_closed()
16813    }
16814    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
16815        self.inner.channel().on_closed()
16816    }
16817
16818    #[cfg(target_os = "fuchsia")]
16819    fn signal_peer(
16820        &self,
16821        clear_mask: zx::Signals,
16822        set_mask: zx::Signals,
16823    ) -> Result<(), zx_status::Status> {
16824        use fidl::Peered;
16825        self.inner.channel().signal_peer(clear_mask, set_mask)
16826    }
16827}
16828
16829impl ReadableControlHandle {}
16830
16831#[must_use = "FIDL methods require a response to be sent"]
16832#[derive(Debug)]
16833pub struct ReadableReadResponder {
16834    control_handle: std::mem::ManuallyDrop<ReadableControlHandle>,
16835    tx_id: u32,
16836}
16837
16838/// Set the the channel to be shutdown (see [`ReadableControlHandle::shutdown`])
16839/// if the responder is dropped without sending a response, so that the client
16840/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
16841impl std::ops::Drop for ReadableReadResponder {
16842    fn drop(&mut self) {
16843        self.control_handle.shutdown();
16844        // Safety: drops once, never accessed again
16845        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16846    }
16847}
16848
16849impl fidl::endpoints::Responder for ReadableReadResponder {
16850    type ControlHandle = ReadableControlHandle;
16851
16852    fn control_handle(&self) -> &ReadableControlHandle {
16853        &self.control_handle
16854    }
16855
16856    fn drop_without_shutdown(mut self) {
16857        // Safety: drops once, never accessed again due to mem::forget
16858        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16859        // Prevent Drop from running (which would shut down the channel)
16860        std::mem::forget(self);
16861    }
16862}
16863
16864impl ReadableReadResponder {
16865    /// Sends a response to the FIDL transaction.
16866    ///
16867    /// Sets the channel to shutdown if an error occurs.
16868    pub fn send(self, mut result: Result<&[u8], i32>) -> Result<(), fidl::Error> {
16869        let _result = self.send_raw(result);
16870        if _result.is_err() {
16871            self.control_handle.shutdown();
16872        }
16873        self.drop_without_shutdown();
16874        _result
16875    }
16876
16877    /// Similar to "send" but does not shutdown the channel if an error occurs.
16878    pub fn send_no_shutdown_on_err(
16879        self,
16880        mut result: Result<&[u8], i32>,
16881    ) -> Result<(), fidl::Error> {
16882        let _result = self.send_raw(result);
16883        self.drop_without_shutdown();
16884        _result
16885    }
16886
16887    fn send_raw(&self, mut result: Result<&[u8], i32>) -> Result<(), fidl::Error> {
16888        self.control_handle.inner.send::<fidl::encoding::ResultType<ReadableReadResponse, i32>>(
16889            result.map(|data| (data,)),
16890            self.tx_id,
16891            0x57e419a298c8ede,
16892            fidl::encoding::DynamicFlags::empty(),
16893        )
16894    }
16895}
16896
16897#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
16898pub struct SymlinkMarker;
16899
16900impl fidl::endpoints::ProtocolMarker for SymlinkMarker {
16901    type Proxy = SymlinkProxy;
16902    type RequestStream = SymlinkRequestStream;
16903    #[cfg(target_os = "fuchsia")]
16904    type SynchronousProxy = SymlinkSynchronousProxy;
16905
16906    const DEBUG_NAME: &'static str = "fuchsia.io.Symlink";
16907}
16908impl fidl::endpoints::DiscoverableProtocolMarker for SymlinkMarker {}
16909
16910pub trait SymlinkProxyInterface: Send + Sync {
16911    type LinkIntoResponseFut: std::future::Future<Output = Result<LinkableLinkIntoResult, fidl::Error>>
16912        + Send;
16913    fn r#link_into(&self, dst_parent_token: fidl::Event, dst: &str) -> Self::LinkIntoResponseFut;
16914    fn r#clone(
16915        &self,
16916        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
16917    ) -> Result<(), fidl::Error>;
16918    type CloseResponseFut: std::future::Future<
16919            Output = Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error>,
16920        > + Send;
16921    fn r#close(&self) -> Self::CloseResponseFut;
16922    type QueryResponseFut: std::future::Future<Output = Result<Vec<u8>, fidl::Error>> + Send;
16923    fn r#query(&self) -> Self::QueryResponseFut;
16924    fn r#deprecated_clone(
16925        &self,
16926        flags: OpenFlags,
16927        object: fidl::endpoints::ServerEnd<NodeMarker>,
16928    ) -> Result<(), fidl::Error>;
16929    type GetAttrResponseFut: std::future::Future<Output = Result<(i32, NodeAttributes), fidl::Error>>
16930        + Send;
16931    fn r#get_attr(&self) -> Self::GetAttrResponseFut;
16932    type SetAttrResponseFut: std::future::Future<Output = Result<i32, fidl::Error>> + Send;
16933    fn r#set_attr(
16934        &self,
16935        flags: NodeAttributeFlags,
16936        attributes: &NodeAttributes,
16937    ) -> Self::SetAttrResponseFut;
16938    type DeprecatedGetFlagsResponseFut: std::future::Future<Output = Result<(i32, OpenFlags), fidl::Error>>
16939        + Send;
16940    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut;
16941    type DeprecatedSetFlagsResponseFut: std::future::Future<Output = Result<i32, fidl::Error>>
16942        + Send;
16943    fn r#deprecated_set_flags(&self, flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut;
16944    type GetFlagsResponseFut: std::future::Future<Output = Result<NodeGetFlagsResult, fidl::Error>>
16945        + Send;
16946    fn r#get_flags(&self) -> Self::GetFlagsResponseFut;
16947    type SetFlagsResponseFut: std::future::Future<Output = Result<NodeSetFlagsResult, fidl::Error>>
16948        + Send;
16949    fn r#set_flags(&self, flags: Flags) -> Self::SetFlagsResponseFut;
16950    type QueryFilesystemResponseFut: std::future::Future<Output = Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error>>
16951        + Send;
16952    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut;
16953    type GetConnectionInfoResponseFut: std::future::Future<Output = Result<ConnectionInfo, fidl::Error>>
16954        + Send;
16955    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut;
16956    type GetAttributesResponseFut: std::future::Future<Output = Result<NodeGetAttributesResult, fidl::Error>>
16957        + Send;
16958    fn r#get_attributes(&self, query: NodeAttributesQuery) -> Self::GetAttributesResponseFut;
16959    type UpdateAttributesResponseFut: std::future::Future<Output = Result<NodeUpdateAttributesResult, fidl::Error>>
16960        + Send;
16961    fn r#update_attributes(
16962        &self,
16963        payload: &MutableNodeAttributes,
16964    ) -> Self::UpdateAttributesResponseFut;
16965    type SyncResponseFut: std::future::Future<Output = Result<NodeSyncResult, fidl::Error>> + Send;
16966    fn r#sync(&self) -> Self::SyncResponseFut;
16967    fn r#list_extended_attributes(
16968        &self,
16969        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
16970    ) -> Result<(), fidl::Error>;
16971    type GetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeGetExtendedAttributeResult, fidl::Error>>
16972        + Send;
16973    fn r#get_extended_attribute(&self, name: &[u8]) -> Self::GetExtendedAttributeResponseFut;
16974    type SetExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeSetExtendedAttributeResult, fidl::Error>>
16975        + Send;
16976    fn r#set_extended_attribute(
16977        &self,
16978        name: &[u8],
16979        value: ExtendedAttributeValue,
16980        mode: SetExtendedAttributeMode,
16981    ) -> Self::SetExtendedAttributeResponseFut;
16982    type RemoveExtendedAttributeResponseFut: std::future::Future<Output = Result<NodeRemoveExtendedAttributeResult, fidl::Error>>
16983        + Send;
16984    fn r#remove_extended_attribute(&self, name: &[u8]) -> Self::RemoveExtendedAttributeResponseFut;
16985    type DescribeResponseFut: std::future::Future<Output = Result<SymlinkInfo, fidl::Error>> + Send;
16986    fn r#describe(&self) -> Self::DescribeResponseFut;
16987}
16988#[derive(Debug)]
16989#[cfg(target_os = "fuchsia")]
16990pub struct SymlinkSynchronousProxy {
16991    client: fidl::client::sync::Client,
16992}
16993
16994#[cfg(target_os = "fuchsia")]
16995impl fidl::endpoints::SynchronousProxy for SymlinkSynchronousProxy {
16996    type Proxy = SymlinkProxy;
16997    type Protocol = SymlinkMarker;
16998
16999    fn from_channel(inner: fidl::Channel) -> Self {
17000        Self::new(inner)
17001    }
17002
17003    fn into_channel(self) -> fidl::Channel {
17004        self.client.into_channel()
17005    }
17006
17007    fn as_channel(&self) -> &fidl::Channel {
17008        self.client.as_channel()
17009    }
17010}
17011
17012#[cfg(target_os = "fuchsia")]
17013impl SymlinkSynchronousProxy {
17014    pub fn new(channel: fidl::Channel) -> Self {
17015        let protocol_name = <SymlinkMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
17016        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
17017    }
17018
17019    pub fn into_channel(self) -> fidl::Channel {
17020        self.client.into_channel()
17021    }
17022
17023    /// Waits until an event arrives and returns it. It is safe for other
17024    /// threads to make concurrent requests while waiting for an event.
17025    pub fn wait_for_event(
17026        &self,
17027        deadline: zx::MonotonicInstant,
17028    ) -> Result<SymlinkEvent, fidl::Error> {
17029        SymlinkEvent::decode(self.client.wait_for_event(deadline)?)
17030    }
17031
17032    /// Creates a link to this this object with name `dst` in the directory represented by
17033    /// `dst_parent_token`.
17034    ///
17035    /// `dst` must be a resolved object name. Including "/" in the string will return
17036    /// `ZX_ERR_INVALID_ARGS`.
17037    ///
17038    /// This method requires the maximal set of rights supported by the filesystem for this object.
17039    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
17040    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
17041    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
17042    /// `ZX_ERR_ACCESS_DENIED`.
17043    ///
17044    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
17045    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
17046    ///
17047    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
17048    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
17049    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
17050    ///
17051    /// This method does not have the same atomicity properties has the `Directory::Link` method,
17052    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
17053    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
17054    pub fn r#link_into(
17055        &self,
17056        mut dst_parent_token: fidl::Event,
17057        mut dst: &str,
17058        ___deadline: zx::MonotonicInstant,
17059    ) -> Result<LinkableLinkIntoResult, fidl::Error> {
17060        let _response = self.client.send_query::<
17061            LinkableLinkIntoRequest,
17062            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17063        >(
17064            (dst_parent_token, dst,),
17065            0x54f3949246a03e74,
17066            fidl::encoding::DynamicFlags::empty(),
17067            ___deadline,
17068        )?;
17069        Ok(_response.map(|x| x))
17070    }
17071
17072    pub fn r#clone(
17073        &self,
17074        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
17075    ) -> Result<(), fidl::Error> {
17076        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
17077            (request,),
17078            0x20d8a7aba2168a79,
17079            fidl::encoding::DynamicFlags::empty(),
17080        )
17081    }
17082
17083    /// Terminates the connection.
17084    ///
17085    /// After calling `Close`, the client must not send any other requests.
17086    ///
17087    /// Servers, after sending the status response, should close the connection
17088    /// regardless of status and without sending an epitaph.
17089    ///
17090    /// Closing the client end of the channel should be semantically equivalent
17091    /// to calling `Close` without knowing when the close has completed or its
17092    /// status.
17093    pub fn r#close(
17094        &self,
17095        ___deadline: zx::MonotonicInstant,
17096    ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
17097        let _response = self.client.send_query::<
17098            fidl::encoding::EmptyPayload,
17099            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17100        >(
17101            (),
17102            0x5ac5d459ad7f657e,
17103            fidl::encoding::DynamicFlags::empty(),
17104            ___deadline,
17105        )?;
17106        Ok(_response.map(|x| x))
17107    }
17108
17109    pub fn r#query(&self, ___deadline: zx::MonotonicInstant) -> Result<Vec<u8>, fidl::Error> {
17110        let _response = self.client.send_query::<
17111            fidl::encoding::EmptyPayload,
17112            fidl_fuchsia_unknown::QueryableQueryResponse,
17113        >(
17114            (),
17115            0x2658edee9decfc06,
17116            fidl::encoding::DynamicFlags::empty(),
17117            ___deadline,
17118        )?;
17119        Ok(_response.protocol)
17120    }
17121
17122    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
17123    pub fn r#deprecated_clone(
17124        &self,
17125        mut flags: OpenFlags,
17126        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
17127    ) -> Result<(), fidl::Error> {
17128        self.client.send::<NodeDeprecatedCloneRequest>(
17129            (flags, object),
17130            0x5a61678f293ce16f,
17131            fidl::encoding::DynamicFlags::FLEXIBLE,
17132        )
17133    }
17134
17135    /// Acquires information about the node.
17136    ///
17137    /// This method does not require any rights.
17138    pub fn r#get_attr(
17139        &self,
17140        ___deadline: zx::MonotonicInstant,
17141    ) -> Result<(i32, NodeAttributes), fidl::Error> {
17142        let _response =
17143            self.client.send_query::<fidl::encoding::EmptyPayload, NodeGetAttrResponse>(
17144                (),
17145                0x78985e216314dafd,
17146                fidl::encoding::DynamicFlags::empty(),
17147                ___deadline,
17148            )?;
17149        Ok((_response.s, _response.attributes))
17150    }
17151
17152    /// Updates information about the node.
17153    ///
17154    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
17155    ///
17156    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
17157    /// `ZX_ERR_BAD_HANDLE`.
17158    pub fn r#set_attr(
17159        &self,
17160        mut flags: NodeAttributeFlags,
17161        mut attributes: &NodeAttributes,
17162        ___deadline: zx::MonotonicInstant,
17163    ) -> Result<i32, fidl::Error> {
17164        let _response = self.client.send_query::<NodeSetAttrRequest, NodeSetAttrResponse>(
17165            (flags, attributes),
17166            0x4186c0f40d938f46,
17167            fidl::encoding::DynamicFlags::empty(),
17168            ___deadline,
17169        )?;
17170        Ok(_response.s)
17171    }
17172
17173    /// [DEPRECATED - Use new GetFlags method instead.]
17174    pub fn r#deprecated_get_flags(
17175        &self,
17176        ___deadline: zx::MonotonicInstant,
17177    ) -> Result<(i32, OpenFlags), fidl::Error> {
17178        let _response = self
17179            .client
17180            .send_query::<fidl::encoding::EmptyPayload, NodeDeprecatedGetFlagsResponse>(
17181                (),
17182                0x5b88fffb8eda3aa1,
17183                fidl::encoding::DynamicFlags::empty(),
17184                ___deadline,
17185            )?;
17186        Ok((_response.s, _response.flags))
17187    }
17188
17189    /// [DEPRECATED - Use new SetFlags method instead.]
17190    pub fn r#deprecated_set_flags(
17191        &self,
17192        mut flags: OpenFlags,
17193        ___deadline: zx::MonotonicInstant,
17194    ) -> Result<i32, fidl::Error> {
17195        let _response = self
17196            .client
17197            .send_query::<NodeDeprecatedSetFlagsRequest, NodeDeprecatedSetFlagsResponse>(
17198                (flags,),
17199                0x5295b76c71fde733,
17200                fidl::encoding::DynamicFlags::empty(),
17201                ___deadline,
17202            )?;
17203        Ok(_response.s)
17204    }
17205
17206    /// Queries the flags that apply to this node after it has been opened/created. This method does
17207    /// not require any rights.
17208    ///
17209    /// Note that the final set of flags that apply to the connection may differ from those
17210    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
17211    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
17212    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
17213    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
17214    pub fn r#get_flags(
17215        &self,
17216        ___deadline: zx::MonotonicInstant,
17217    ) -> Result<NodeGetFlagsResult, fidl::Error> {
17218        let _response = self.client.send_query::<
17219            fidl::encoding::EmptyPayload,
17220            fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
17221        >(
17222            (),
17223            0x176eb318f64ec23,
17224            fidl::encoding::DynamicFlags::FLEXIBLE,
17225            ___deadline,
17226        )?
17227        .into_result::<SymlinkMarker>("get_flags")?;
17228        Ok(_response.map(|x| x.flags))
17229    }
17230
17231    /// Sets the flags that apply to this node after it has been opened. This method does not
17232    /// require any rights.
17233    ///
17234    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
17235    /// clear append mode.
17236    ///
17237    /// Errors:
17238    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
17239    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
17240    pub fn r#set_flags(
17241        &self,
17242        mut flags: Flags,
17243        ___deadline: zx::MonotonicInstant,
17244    ) -> Result<NodeSetFlagsResult, fidl::Error> {
17245        let _response = self.client.send_query::<
17246            NodeSetFlagsRequest,
17247            fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
17248        >(
17249            (flags,),
17250            0x55a8028685791ea8,
17251            fidl::encoding::DynamicFlags::FLEXIBLE,
17252            ___deadline,
17253        )?
17254        .into_result::<SymlinkMarker>("set_flags")?;
17255        Ok(_response.map(|x| x))
17256    }
17257
17258    /// Query the filesystem for filesystem-specific information.
17259    pub fn r#query_filesystem(
17260        &self,
17261        ___deadline: zx::MonotonicInstant,
17262    ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
17263        let _response =
17264            self.client.send_query::<fidl::encoding::EmptyPayload, NodeQueryFilesystemResponse>(
17265                (),
17266                0x6f344a1c6b0a0610,
17267                fidl::encoding::DynamicFlags::empty(),
17268                ___deadline,
17269            )?;
17270        Ok((_response.s, _response.info))
17271    }
17272
17273    /// Acquires information about the connection.
17274    ///
17275    /// This method does not require any rights.
17276    pub fn r#get_connection_info(
17277        &self,
17278        ___deadline: zx::MonotonicInstant,
17279    ) -> Result<ConnectionInfo, fidl::Error> {
17280        let _response = self.client.send_query::<fidl::encoding::EmptyPayload, ConnectionInfo>(
17281            (),
17282            0x584c377c7c0a6d0b,
17283            fidl::encoding::DynamicFlags::empty(),
17284            ___deadline,
17285        )?;
17286        Ok(_response)
17287    }
17288
17289    /// Acquires information about the node.
17290    ///
17291    /// The attributes of a node should be stable, independent of the
17292    /// specific protocol used to access it.
17293    ///
17294    /// If a particular attribute is not applicable or not supported,
17295    /// filesystems should leave the corresponding field absent.
17296    ///
17297    /// + `query` a bit-mask specifying which attributes to fetch. The server
17298    ///   should not return more than necessary.
17299    /// - `attributes` the returned attributes.
17300    ///
17301    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
17302    pub fn r#get_attributes(
17303        &self,
17304        mut query: NodeAttributesQuery,
17305        ___deadline: zx::MonotonicInstant,
17306    ) -> Result<NodeGetAttributesResult, fidl::Error> {
17307        let _response = self.client.send_query::<
17308            NodeGetAttributesRequest,
17309            fidl::encoding::ResultType<NodeAttributes2, i32>,
17310        >(
17311            (query,),
17312            0x3d4396a638ea053b,
17313            fidl::encoding::DynamicFlags::empty(),
17314            ___deadline,
17315        )?;
17316        Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
17317    }
17318
17319    /// Updates information about the node.
17320    ///
17321    /// + `attributes` the presence of a table field in `attributes` indicates
17322    /// the intent to update the corresponding attribute.
17323    ///
17324    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
17325    ///
17326    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
17327    pub fn r#update_attributes(
17328        &self,
17329        mut payload: &MutableNodeAttributes,
17330        ___deadline: zx::MonotonicInstant,
17331    ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
17332        let _response = self.client.send_query::<
17333            MutableNodeAttributes,
17334            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17335        >(
17336            payload,
17337            0x3308c1da5a89bf08,
17338            fidl::encoding::DynamicFlags::empty(),
17339            ___deadline,
17340        )?;
17341        Ok(_response.map(|x| x))
17342    }
17343
17344    /// Synchronizes updates to the node to the underlying media, if it exists.
17345    ///
17346    /// This method will return when the filesystem server has flushed the
17347    /// relevant updates to the underlying media, but does not guarantee the
17348    /// underlying media has persisted the information, nor that any information
17349    /// is committed to hardware. Clients may use `Sync` to ensure ordering
17350    /// between operations.
17351    ///
17352    /// This method does not require any rights.
17353    pub fn r#sync(&self, ___deadline: zx::MonotonicInstant) -> Result<NodeSyncResult, fidl::Error> {
17354        let _response = self.client.send_query::<
17355            fidl::encoding::EmptyPayload,
17356            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17357        >(
17358            (),
17359            0x2c5c27ca0ab5dc49,
17360            fidl::encoding::DynamicFlags::empty(),
17361            ___deadline,
17362        )?;
17363        Ok(_response.map(|x| x))
17364    }
17365
17366    /// Creates an iterator over all the extended attribute names associated
17367    /// with this node. If an error occurs it is returned as an epitaph on the
17368    /// iterator request channel, and then the channel is closed.
17369    ///
17370    /// GetExtendedAttributes can be used with any of these names to retrieve
17371    /// the associated value.
17372    ///
17373    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
17374    pub fn r#list_extended_attributes(
17375        &self,
17376        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
17377    ) -> Result<(), fidl::Error> {
17378        self.client.send::<NodeListExtendedAttributesRequest>(
17379            (iterator,),
17380            0x4b61033de007fcd0,
17381            fidl::encoding::DynamicFlags::empty(),
17382        )
17383    }
17384
17385    /// Get the value associated with the given attribute `name` for this node.
17386    ///
17387    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
17388    /// particular structure is imposed on them.
17389    ///
17390    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
17391    pub fn r#get_extended_attribute(
17392        &self,
17393        mut name: &[u8],
17394        ___deadline: zx::MonotonicInstant,
17395    ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
17396        let _response = self.client.send_query::<
17397            NodeGetExtendedAttributeRequest,
17398            fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
17399        >(
17400            (name,),
17401            0x45ffa3ccfdeb76db,
17402            fidl::encoding::DynamicFlags::empty(),
17403            ___deadline,
17404        )?;
17405        Ok(_response.map(|x| x))
17406    }
17407
17408    /// Set the value for the given attribute `name` to `value` for this node.
17409    ///
17410    /// The attribute name may exist, in which case the attribute is updated.
17411    /// If the attribute doesn't exist, it is created. The name should have no
17412    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
17413    ///
17414    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
17415    pub fn r#set_extended_attribute(
17416        &self,
17417        mut name: &[u8],
17418        mut value: ExtendedAttributeValue,
17419        mut mode: SetExtendedAttributeMode,
17420        ___deadline: zx::MonotonicInstant,
17421    ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
17422        let _response = self.client.send_query::<
17423            NodeSetExtendedAttributeRequest,
17424            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17425        >(
17426            (name, &mut value, mode,),
17427            0x4a951362f681f23c,
17428            fidl::encoding::DynamicFlags::empty(),
17429            ___deadline,
17430        )?;
17431        Ok(_response.map(|x| x))
17432    }
17433
17434    /// Remove the specified extended attribute.
17435    ///
17436    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
17437    ///
17438    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
17439    pub fn r#remove_extended_attribute(
17440        &self,
17441        mut name: &[u8],
17442        ___deadline: zx::MonotonicInstant,
17443    ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
17444        let _response = self.client.send_query::<
17445            NodeRemoveExtendedAttributeRequest,
17446            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17447        >(
17448            (name,),
17449            0x7a0b9f3a9bf9032d,
17450            fidl::encoding::DynamicFlags::empty(),
17451            ___deadline,
17452        )?;
17453        Ok(_response.map(|x| x))
17454    }
17455
17456    pub fn r#describe(
17457        &self,
17458        ___deadline: zx::MonotonicInstant,
17459    ) -> Result<SymlinkInfo, fidl::Error> {
17460        let _response = self
17461            .client
17462            .send_query::<fidl::encoding::EmptyPayload, fidl::encoding::FlexibleType<SymlinkInfo>>(
17463                (),
17464                0x742c2ea5e89831f3,
17465                fidl::encoding::DynamicFlags::FLEXIBLE,
17466                ___deadline,
17467            )?
17468            .into_result::<SymlinkMarker>("describe")?;
17469        Ok(_response)
17470    }
17471}
17472
17473#[cfg(target_os = "fuchsia")]
17474impl From<SymlinkSynchronousProxy> for zx::Handle {
17475    fn from(value: SymlinkSynchronousProxy) -> Self {
17476        value.into_channel().into()
17477    }
17478}
17479
17480#[cfg(target_os = "fuchsia")]
17481impl From<fidl::Channel> for SymlinkSynchronousProxy {
17482    fn from(value: fidl::Channel) -> Self {
17483        Self::new(value)
17484    }
17485}
17486
17487#[derive(Debug, Clone)]
17488pub struct SymlinkProxy {
17489    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
17490}
17491
17492impl fidl::endpoints::Proxy for SymlinkProxy {
17493    type Protocol = SymlinkMarker;
17494
17495    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
17496        Self::new(inner)
17497    }
17498
17499    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
17500        self.client.into_channel().map_err(|client| Self { client })
17501    }
17502
17503    fn as_channel(&self) -> &::fidl::AsyncChannel {
17504        self.client.as_channel()
17505    }
17506}
17507
17508impl SymlinkProxy {
17509    /// Create a new Proxy for fuchsia.io/Symlink.
17510    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
17511        let protocol_name = <SymlinkMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
17512        Self { client: fidl::client::Client::new(channel, protocol_name) }
17513    }
17514
17515    /// Get a Stream of events from the remote end of the protocol.
17516    ///
17517    /// # Panics
17518    ///
17519    /// Panics if the event stream was already taken.
17520    pub fn take_event_stream(&self) -> SymlinkEventStream {
17521        SymlinkEventStream { event_receiver: self.client.take_event_receiver() }
17522    }
17523
17524    /// Creates a link to this this object with name `dst` in the directory represented by
17525    /// `dst_parent_token`.
17526    ///
17527    /// `dst` must be a resolved object name. Including "/" in the string will return
17528    /// `ZX_ERR_INVALID_ARGS`.
17529    ///
17530    /// This method requires the maximal set of rights supported by the filesystem for this object.
17531    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
17532    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
17533    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
17534    /// `ZX_ERR_ACCESS_DENIED`.
17535    ///
17536    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
17537    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
17538    ///
17539    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
17540    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
17541    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
17542    ///
17543    /// This method does not have the same atomicity properties has the `Directory::Link` method,
17544    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
17545    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
17546    pub fn r#link_into(
17547        &self,
17548        mut dst_parent_token: fidl::Event,
17549        mut dst: &str,
17550    ) -> fidl::client::QueryResponseFut<
17551        LinkableLinkIntoResult,
17552        fidl::encoding::DefaultFuchsiaResourceDialect,
17553    > {
17554        SymlinkProxyInterface::r#link_into(self, dst_parent_token, dst)
17555    }
17556
17557    pub fn r#clone(
17558        &self,
17559        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
17560    ) -> Result<(), fidl::Error> {
17561        SymlinkProxyInterface::r#clone(self, request)
17562    }
17563
17564    /// Terminates the connection.
17565    ///
17566    /// After calling `Close`, the client must not send any other requests.
17567    ///
17568    /// Servers, after sending the status response, should close the connection
17569    /// regardless of status and without sending an epitaph.
17570    ///
17571    /// Closing the client end of the channel should be semantically equivalent
17572    /// to calling `Close` without knowing when the close has completed or its
17573    /// status.
17574    pub fn r#close(
17575        &self,
17576    ) -> fidl::client::QueryResponseFut<
17577        fidl_fuchsia_unknown::CloseableCloseResult,
17578        fidl::encoding::DefaultFuchsiaResourceDialect,
17579    > {
17580        SymlinkProxyInterface::r#close(self)
17581    }
17582
17583    pub fn r#query(
17584        &self,
17585    ) -> fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>
17586    {
17587        SymlinkProxyInterface::r#query(self)
17588    }
17589
17590    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
17591    pub fn r#deprecated_clone(
17592        &self,
17593        mut flags: OpenFlags,
17594        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
17595    ) -> Result<(), fidl::Error> {
17596        SymlinkProxyInterface::r#deprecated_clone(self, flags, object)
17597    }
17598
17599    /// Acquires information about the node.
17600    ///
17601    /// This method does not require any rights.
17602    pub fn r#get_attr(
17603        &self,
17604    ) -> fidl::client::QueryResponseFut<
17605        (i32, NodeAttributes),
17606        fidl::encoding::DefaultFuchsiaResourceDialect,
17607    > {
17608        SymlinkProxyInterface::r#get_attr(self)
17609    }
17610
17611    /// Updates information about the node.
17612    ///
17613    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
17614    ///
17615    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
17616    /// `ZX_ERR_BAD_HANDLE`.
17617    pub fn r#set_attr(
17618        &self,
17619        mut flags: NodeAttributeFlags,
17620        mut attributes: &NodeAttributes,
17621    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
17622        SymlinkProxyInterface::r#set_attr(self, flags, attributes)
17623    }
17624
17625    /// [DEPRECATED - Use new GetFlags method instead.]
17626    pub fn r#deprecated_get_flags(
17627        &self,
17628    ) -> fidl::client::QueryResponseFut<
17629        (i32, OpenFlags),
17630        fidl::encoding::DefaultFuchsiaResourceDialect,
17631    > {
17632        SymlinkProxyInterface::r#deprecated_get_flags(self)
17633    }
17634
17635    /// [DEPRECATED - Use new SetFlags method instead.]
17636    pub fn r#deprecated_set_flags(
17637        &self,
17638        mut flags: OpenFlags,
17639    ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
17640        SymlinkProxyInterface::r#deprecated_set_flags(self, flags)
17641    }
17642
17643    /// Queries the flags that apply to this node after it has been opened/created. This method does
17644    /// not require any rights.
17645    ///
17646    /// Note that the final set of flags that apply to the connection may differ from those
17647    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
17648    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
17649    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
17650    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
17651    pub fn r#get_flags(
17652        &self,
17653    ) -> fidl::client::QueryResponseFut<
17654        NodeGetFlagsResult,
17655        fidl::encoding::DefaultFuchsiaResourceDialect,
17656    > {
17657        SymlinkProxyInterface::r#get_flags(self)
17658    }
17659
17660    /// Sets the flags that apply to this node after it has been opened. This method does not
17661    /// require any rights.
17662    ///
17663    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
17664    /// clear append mode.
17665    ///
17666    /// Errors:
17667    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
17668    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
17669    pub fn r#set_flags(
17670        &self,
17671        mut flags: Flags,
17672    ) -> fidl::client::QueryResponseFut<
17673        NodeSetFlagsResult,
17674        fidl::encoding::DefaultFuchsiaResourceDialect,
17675    > {
17676        SymlinkProxyInterface::r#set_flags(self, flags)
17677    }
17678
17679    /// Query the filesystem for filesystem-specific information.
17680    pub fn r#query_filesystem(
17681        &self,
17682    ) -> fidl::client::QueryResponseFut<
17683        (i32, Option<Box<FilesystemInfo>>),
17684        fidl::encoding::DefaultFuchsiaResourceDialect,
17685    > {
17686        SymlinkProxyInterface::r#query_filesystem(self)
17687    }
17688
17689    /// Acquires information about the connection.
17690    ///
17691    /// This method does not require any rights.
17692    pub fn r#get_connection_info(
17693        &self,
17694    ) -> fidl::client::QueryResponseFut<ConnectionInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
17695    {
17696        SymlinkProxyInterface::r#get_connection_info(self)
17697    }
17698
17699    /// Acquires information about the node.
17700    ///
17701    /// The attributes of a node should be stable, independent of the
17702    /// specific protocol used to access it.
17703    ///
17704    /// If a particular attribute is not applicable or not supported,
17705    /// filesystems should leave the corresponding field absent.
17706    ///
17707    /// + `query` a bit-mask specifying which attributes to fetch. The server
17708    ///   should not return more than necessary.
17709    /// - `attributes` the returned attributes.
17710    ///
17711    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
17712    pub fn r#get_attributes(
17713        &self,
17714        mut query: NodeAttributesQuery,
17715    ) -> fidl::client::QueryResponseFut<
17716        NodeGetAttributesResult,
17717        fidl::encoding::DefaultFuchsiaResourceDialect,
17718    > {
17719        SymlinkProxyInterface::r#get_attributes(self, query)
17720    }
17721
17722    /// Updates information about the node.
17723    ///
17724    /// + `attributes` the presence of a table field in `attributes` indicates
17725    /// the intent to update the corresponding attribute.
17726    ///
17727    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
17728    ///
17729    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
17730    pub fn r#update_attributes(
17731        &self,
17732        mut payload: &MutableNodeAttributes,
17733    ) -> fidl::client::QueryResponseFut<
17734        NodeUpdateAttributesResult,
17735        fidl::encoding::DefaultFuchsiaResourceDialect,
17736    > {
17737        SymlinkProxyInterface::r#update_attributes(self, payload)
17738    }
17739
17740    /// Synchronizes updates to the node to the underlying media, if it exists.
17741    ///
17742    /// This method will return when the filesystem server has flushed the
17743    /// relevant updates to the underlying media, but does not guarantee the
17744    /// underlying media has persisted the information, nor that any information
17745    /// is committed to hardware. Clients may use `Sync` to ensure ordering
17746    /// between operations.
17747    ///
17748    /// This method does not require any rights.
17749    pub fn r#sync(
17750        &self,
17751    ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
17752    {
17753        SymlinkProxyInterface::r#sync(self)
17754    }
17755
17756    /// Creates an iterator over all the extended attribute names associated
17757    /// with this node. If an error occurs it is returned as an epitaph on the
17758    /// iterator request channel, and then the channel is closed.
17759    ///
17760    /// GetExtendedAttributes can be used with any of these names to retrieve
17761    /// the associated value.
17762    ///
17763    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
17764    pub fn r#list_extended_attributes(
17765        &self,
17766        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
17767    ) -> Result<(), fidl::Error> {
17768        SymlinkProxyInterface::r#list_extended_attributes(self, iterator)
17769    }
17770
17771    /// Get the value associated with the given attribute `name` for this node.
17772    ///
17773    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
17774    /// particular structure is imposed on them.
17775    ///
17776    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
17777    pub fn r#get_extended_attribute(
17778        &self,
17779        mut name: &[u8],
17780    ) -> fidl::client::QueryResponseFut<
17781        NodeGetExtendedAttributeResult,
17782        fidl::encoding::DefaultFuchsiaResourceDialect,
17783    > {
17784        SymlinkProxyInterface::r#get_extended_attribute(self, name)
17785    }
17786
17787    /// Set the value for the given attribute `name` to `value` for this node.
17788    ///
17789    /// The attribute name may exist, in which case the attribute is updated.
17790    /// If the attribute doesn't exist, it is created. The name should have no
17791    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
17792    ///
17793    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
17794    pub fn r#set_extended_attribute(
17795        &self,
17796        mut name: &[u8],
17797        mut value: ExtendedAttributeValue,
17798        mut mode: SetExtendedAttributeMode,
17799    ) -> fidl::client::QueryResponseFut<
17800        NodeSetExtendedAttributeResult,
17801        fidl::encoding::DefaultFuchsiaResourceDialect,
17802    > {
17803        SymlinkProxyInterface::r#set_extended_attribute(self, name, value, mode)
17804    }
17805
17806    /// Remove the specified extended attribute.
17807    ///
17808    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
17809    ///
17810    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
17811    pub fn r#remove_extended_attribute(
17812        &self,
17813        mut name: &[u8],
17814    ) -> fidl::client::QueryResponseFut<
17815        NodeRemoveExtendedAttributeResult,
17816        fidl::encoding::DefaultFuchsiaResourceDialect,
17817    > {
17818        SymlinkProxyInterface::r#remove_extended_attribute(self, name)
17819    }
17820
17821    pub fn r#describe(
17822        &self,
17823    ) -> fidl::client::QueryResponseFut<SymlinkInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
17824    {
17825        SymlinkProxyInterface::r#describe(self)
17826    }
17827}
17828
17829impl SymlinkProxyInterface for SymlinkProxy {
17830    type LinkIntoResponseFut = fidl::client::QueryResponseFut<
17831        LinkableLinkIntoResult,
17832        fidl::encoding::DefaultFuchsiaResourceDialect,
17833    >;
17834    fn r#link_into(
17835        &self,
17836        mut dst_parent_token: fidl::Event,
17837        mut dst: &str,
17838    ) -> Self::LinkIntoResponseFut {
17839        fn _decode(
17840            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
17841        ) -> Result<LinkableLinkIntoResult, fidl::Error> {
17842            let _response = fidl::client::decode_transaction_body::<
17843                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17844                fidl::encoding::DefaultFuchsiaResourceDialect,
17845                0x54f3949246a03e74,
17846            >(_buf?)?;
17847            Ok(_response.map(|x| x))
17848        }
17849        self.client.send_query_and_decode::<LinkableLinkIntoRequest, LinkableLinkIntoResult>(
17850            (dst_parent_token, dst),
17851            0x54f3949246a03e74,
17852            fidl::encoding::DynamicFlags::empty(),
17853            _decode,
17854        )
17855    }
17856
17857    fn r#clone(
17858        &self,
17859        mut request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
17860    ) -> Result<(), fidl::Error> {
17861        self.client.send::<fidl_fuchsia_unknown::CloneableCloneRequest>(
17862            (request,),
17863            0x20d8a7aba2168a79,
17864            fidl::encoding::DynamicFlags::empty(),
17865        )
17866    }
17867
17868    type CloseResponseFut = fidl::client::QueryResponseFut<
17869        fidl_fuchsia_unknown::CloseableCloseResult,
17870        fidl::encoding::DefaultFuchsiaResourceDialect,
17871    >;
17872    fn r#close(&self) -> Self::CloseResponseFut {
17873        fn _decode(
17874            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
17875        ) -> Result<fidl_fuchsia_unknown::CloseableCloseResult, fidl::Error> {
17876            let _response = fidl::client::decode_transaction_body::<
17877                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
17878                fidl::encoding::DefaultFuchsiaResourceDialect,
17879                0x5ac5d459ad7f657e,
17880            >(_buf?)?;
17881            Ok(_response.map(|x| x))
17882        }
17883        self.client.send_query_and_decode::<
17884            fidl::encoding::EmptyPayload,
17885            fidl_fuchsia_unknown::CloseableCloseResult,
17886        >(
17887            (),
17888            0x5ac5d459ad7f657e,
17889            fidl::encoding::DynamicFlags::empty(),
17890            _decode,
17891        )
17892    }
17893
17894    type QueryResponseFut =
17895        fidl::client::QueryResponseFut<Vec<u8>, fidl::encoding::DefaultFuchsiaResourceDialect>;
17896    fn r#query(&self) -> Self::QueryResponseFut {
17897        fn _decode(
17898            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
17899        ) -> Result<Vec<u8>, fidl::Error> {
17900            let _response = fidl::client::decode_transaction_body::<
17901                fidl_fuchsia_unknown::QueryableQueryResponse,
17902                fidl::encoding::DefaultFuchsiaResourceDialect,
17903                0x2658edee9decfc06,
17904            >(_buf?)?;
17905            Ok(_response.protocol)
17906        }
17907        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<u8>>(
17908            (),
17909            0x2658edee9decfc06,
17910            fidl::encoding::DynamicFlags::empty(),
17911            _decode,
17912        )
17913    }
17914
17915    fn r#deprecated_clone(
17916        &self,
17917        mut flags: OpenFlags,
17918        mut object: fidl::endpoints::ServerEnd<NodeMarker>,
17919    ) -> Result<(), fidl::Error> {
17920        self.client.send::<NodeDeprecatedCloneRequest>(
17921            (flags, object),
17922            0x5a61678f293ce16f,
17923            fidl::encoding::DynamicFlags::FLEXIBLE,
17924        )
17925    }
17926
17927    type GetAttrResponseFut = fidl::client::QueryResponseFut<
17928        (i32, NodeAttributes),
17929        fidl::encoding::DefaultFuchsiaResourceDialect,
17930    >;
17931    fn r#get_attr(&self) -> Self::GetAttrResponseFut {
17932        fn _decode(
17933            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
17934        ) -> Result<(i32, NodeAttributes), fidl::Error> {
17935            let _response = fidl::client::decode_transaction_body::<
17936                NodeGetAttrResponse,
17937                fidl::encoding::DefaultFuchsiaResourceDialect,
17938                0x78985e216314dafd,
17939            >(_buf?)?;
17940            Ok((_response.s, _response.attributes))
17941        }
17942        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, NodeAttributes)>(
17943            (),
17944            0x78985e216314dafd,
17945            fidl::encoding::DynamicFlags::empty(),
17946            _decode,
17947        )
17948    }
17949
17950    type SetAttrResponseFut =
17951        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
17952    fn r#set_attr(
17953        &self,
17954        mut flags: NodeAttributeFlags,
17955        mut attributes: &NodeAttributes,
17956    ) -> Self::SetAttrResponseFut {
17957        fn _decode(
17958            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
17959        ) -> Result<i32, fidl::Error> {
17960            let _response = fidl::client::decode_transaction_body::<
17961                NodeSetAttrResponse,
17962                fidl::encoding::DefaultFuchsiaResourceDialect,
17963                0x4186c0f40d938f46,
17964            >(_buf?)?;
17965            Ok(_response.s)
17966        }
17967        self.client.send_query_and_decode::<NodeSetAttrRequest, i32>(
17968            (flags, attributes),
17969            0x4186c0f40d938f46,
17970            fidl::encoding::DynamicFlags::empty(),
17971            _decode,
17972        )
17973    }
17974
17975    type DeprecatedGetFlagsResponseFut = fidl::client::QueryResponseFut<
17976        (i32, OpenFlags),
17977        fidl::encoding::DefaultFuchsiaResourceDialect,
17978    >;
17979    fn r#deprecated_get_flags(&self) -> Self::DeprecatedGetFlagsResponseFut {
17980        fn _decode(
17981            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
17982        ) -> Result<(i32, OpenFlags), fidl::Error> {
17983            let _response = fidl::client::decode_transaction_body::<
17984                NodeDeprecatedGetFlagsResponse,
17985                fidl::encoding::DefaultFuchsiaResourceDialect,
17986                0x5b88fffb8eda3aa1,
17987            >(_buf?)?;
17988            Ok((_response.s, _response.flags))
17989        }
17990        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, (i32, OpenFlags)>(
17991            (),
17992            0x5b88fffb8eda3aa1,
17993            fidl::encoding::DynamicFlags::empty(),
17994            _decode,
17995        )
17996    }
17997
17998    type DeprecatedSetFlagsResponseFut =
17999        fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect>;
18000    fn r#deprecated_set_flags(&self, mut flags: OpenFlags) -> Self::DeprecatedSetFlagsResponseFut {
18001        fn _decode(
18002            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18003        ) -> Result<i32, fidl::Error> {
18004            let _response = fidl::client::decode_transaction_body::<
18005                NodeDeprecatedSetFlagsResponse,
18006                fidl::encoding::DefaultFuchsiaResourceDialect,
18007                0x5295b76c71fde733,
18008            >(_buf?)?;
18009            Ok(_response.s)
18010        }
18011        self.client.send_query_and_decode::<NodeDeprecatedSetFlagsRequest, i32>(
18012            (flags,),
18013            0x5295b76c71fde733,
18014            fidl::encoding::DynamicFlags::empty(),
18015            _decode,
18016        )
18017    }
18018
18019    type GetFlagsResponseFut = fidl::client::QueryResponseFut<
18020        NodeGetFlagsResult,
18021        fidl::encoding::DefaultFuchsiaResourceDialect,
18022    >;
18023    fn r#get_flags(&self) -> Self::GetFlagsResponseFut {
18024        fn _decode(
18025            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18026        ) -> Result<NodeGetFlagsResult, fidl::Error> {
18027            let _response = fidl::client::decode_transaction_body::<
18028                fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>,
18029                fidl::encoding::DefaultFuchsiaResourceDialect,
18030                0x176eb318f64ec23,
18031            >(_buf?)?
18032            .into_result::<SymlinkMarker>("get_flags")?;
18033            Ok(_response.map(|x| x.flags))
18034        }
18035        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeGetFlagsResult>(
18036            (),
18037            0x176eb318f64ec23,
18038            fidl::encoding::DynamicFlags::FLEXIBLE,
18039            _decode,
18040        )
18041    }
18042
18043    type SetFlagsResponseFut = fidl::client::QueryResponseFut<
18044        NodeSetFlagsResult,
18045        fidl::encoding::DefaultFuchsiaResourceDialect,
18046    >;
18047    fn r#set_flags(&self, mut flags: Flags) -> Self::SetFlagsResponseFut {
18048        fn _decode(
18049            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18050        ) -> Result<NodeSetFlagsResult, fidl::Error> {
18051            let _response = fidl::client::decode_transaction_body::<
18052                fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, i32>,
18053                fidl::encoding::DefaultFuchsiaResourceDialect,
18054                0x55a8028685791ea8,
18055            >(_buf?)?
18056            .into_result::<SymlinkMarker>("set_flags")?;
18057            Ok(_response.map(|x| x))
18058        }
18059        self.client.send_query_and_decode::<NodeSetFlagsRequest, NodeSetFlagsResult>(
18060            (flags,),
18061            0x55a8028685791ea8,
18062            fidl::encoding::DynamicFlags::FLEXIBLE,
18063            _decode,
18064        )
18065    }
18066
18067    type QueryFilesystemResponseFut = fidl::client::QueryResponseFut<
18068        (i32, Option<Box<FilesystemInfo>>),
18069        fidl::encoding::DefaultFuchsiaResourceDialect,
18070    >;
18071    fn r#query_filesystem(&self) -> Self::QueryFilesystemResponseFut {
18072        fn _decode(
18073            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18074        ) -> Result<(i32, Option<Box<FilesystemInfo>>), fidl::Error> {
18075            let _response = fidl::client::decode_transaction_body::<
18076                NodeQueryFilesystemResponse,
18077                fidl::encoding::DefaultFuchsiaResourceDialect,
18078                0x6f344a1c6b0a0610,
18079            >(_buf?)?;
18080            Ok((_response.s, _response.info))
18081        }
18082        self.client.send_query_and_decode::<
18083            fidl::encoding::EmptyPayload,
18084            (i32, Option<Box<FilesystemInfo>>),
18085        >(
18086            (),
18087            0x6f344a1c6b0a0610,
18088            fidl::encoding::DynamicFlags::empty(),
18089            _decode,
18090        )
18091    }
18092
18093    type GetConnectionInfoResponseFut = fidl::client::QueryResponseFut<
18094        ConnectionInfo,
18095        fidl::encoding::DefaultFuchsiaResourceDialect,
18096    >;
18097    fn r#get_connection_info(&self) -> Self::GetConnectionInfoResponseFut {
18098        fn _decode(
18099            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18100        ) -> Result<ConnectionInfo, fidl::Error> {
18101            let _response = fidl::client::decode_transaction_body::<
18102                ConnectionInfo,
18103                fidl::encoding::DefaultFuchsiaResourceDialect,
18104                0x584c377c7c0a6d0b,
18105            >(_buf?)?;
18106            Ok(_response)
18107        }
18108        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ConnectionInfo>(
18109            (),
18110            0x584c377c7c0a6d0b,
18111            fidl::encoding::DynamicFlags::empty(),
18112            _decode,
18113        )
18114    }
18115
18116    type GetAttributesResponseFut = fidl::client::QueryResponseFut<
18117        NodeGetAttributesResult,
18118        fidl::encoding::DefaultFuchsiaResourceDialect,
18119    >;
18120    fn r#get_attributes(&self, mut query: NodeAttributesQuery) -> Self::GetAttributesResponseFut {
18121        fn _decode(
18122            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18123        ) -> Result<NodeGetAttributesResult, fidl::Error> {
18124            let _response = fidl::client::decode_transaction_body::<
18125                fidl::encoding::ResultType<NodeAttributes2, i32>,
18126                fidl::encoding::DefaultFuchsiaResourceDialect,
18127                0x3d4396a638ea053b,
18128            >(_buf?)?;
18129            Ok(_response.map(|x| (x.mutable_attributes, x.immutable_attributes)))
18130        }
18131        self.client.send_query_and_decode::<NodeGetAttributesRequest, NodeGetAttributesResult>(
18132            (query,),
18133            0x3d4396a638ea053b,
18134            fidl::encoding::DynamicFlags::empty(),
18135            _decode,
18136        )
18137    }
18138
18139    type UpdateAttributesResponseFut = fidl::client::QueryResponseFut<
18140        NodeUpdateAttributesResult,
18141        fidl::encoding::DefaultFuchsiaResourceDialect,
18142    >;
18143    fn r#update_attributes(
18144        &self,
18145        mut payload: &MutableNodeAttributes,
18146    ) -> Self::UpdateAttributesResponseFut {
18147        fn _decode(
18148            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18149        ) -> Result<NodeUpdateAttributesResult, fidl::Error> {
18150            let _response = fidl::client::decode_transaction_body::<
18151                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
18152                fidl::encoding::DefaultFuchsiaResourceDialect,
18153                0x3308c1da5a89bf08,
18154            >(_buf?)?;
18155            Ok(_response.map(|x| x))
18156        }
18157        self.client.send_query_and_decode::<MutableNodeAttributes, NodeUpdateAttributesResult>(
18158            payload,
18159            0x3308c1da5a89bf08,
18160            fidl::encoding::DynamicFlags::empty(),
18161            _decode,
18162        )
18163    }
18164
18165    type SyncResponseFut = fidl::client::QueryResponseFut<
18166        NodeSyncResult,
18167        fidl::encoding::DefaultFuchsiaResourceDialect,
18168    >;
18169    fn r#sync(&self) -> Self::SyncResponseFut {
18170        fn _decode(
18171            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18172        ) -> Result<NodeSyncResult, fidl::Error> {
18173            let _response = fidl::client::decode_transaction_body::<
18174                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
18175                fidl::encoding::DefaultFuchsiaResourceDialect,
18176                0x2c5c27ca0ab5dc49,
18177            >(_buf?)?;
18178            Ok(_response.map(|x| x))
18179        }
18180        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NodeSyncResult>(
18181            (),
18182            0x2c5c27ca0ab5dc49,
18183            fidl::encoding::DynamicFlags::empty(),
18184            _decode,
18185        )
18186    }
18187
18188    fn r#list_extended_attributes(
18189        &self,
18190        mut iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
18191    ) -> Result<(), fidl::Error> {
18192        self.client.send::<NodeListExtendedAttributesRequest>(
18193            (iterator,),
18194            0x4b61033de007fcd0,
18195            fidl::encoding::DynamicFlags::empty(),
18196        )
18197    }
18198
18199    type GetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
18200        NodeGetExtendedAttributeResult,
18201        fidl::encoding::DefaultFuchsiaResourceDialect,
18202    >;
18203    fn r#get_extended_attribute(&self, mut name: &[u8]) -> Self::GetExtendedAttributeResponseFut {
18204        fn _decode(
18205            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18206        ) -> Result<NodeGetExtendedAttributeResult, fidl::Error> {
18207            let _response = fidl::client::decode_transaction_body::<
18208                fidl::encoding::ResultType<ExtendedAttributeValue, i32>,
18209                fidl::encoding::DefaultFuchsiaResourceDialect,
18210                0x45ffa3ccfdeb76db,
18211            >(_buf?)?;
18212            Ok(_response.map(|x| x))
18213        }
18214        self.client.send_query_and_decode::<
18215            NodeGetExtendedAttributeRequest,
18216            NodeGetExtendedAttributeResult,
18217        >(
18218            (name,),
18219            0x45ffa3ccfdeb76db,
18220            fidl::encoding::DynamicFlags::empty(),
18221            _decode,
18222        )
18223    }
18224
18225    type SetExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
18226        NodeSetExtendedAttributeResult,
18227        fidl::encoding::DefaultFuchsiaResourceDialect,
18228    >;
18229    fn r#set_extended_attribute(
18230        &self,
18231        mut name: &[u8],
18232        mut value: ExtendedAttributeValue,
18233        mut mode: SetExtendedAttributeMode,
18234    ) -> Self::SetExtendedAttributeResponseFut {
18235        fn _decode(
18236            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18237        ) -> Result<NodeSetExtendedAttributeResult, fidl::Error> {
18238            let _response = fidl::client::decode_transaction_body::<
18239                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
18240                fidl::encoding::DefaultFuchsiaResourceDialect,
18241                0x4a951362f681f23c,
18242            >(_buf?)?;
18243            Ok(_response.map(|x| x))
18244        }
18245        self.client.send_query_and_decode::<
18246            NodeSetExtendedAttributeRequest,
18247            NodeSetExtendedAttributeResult,
18248        >(
18249            (name, &mut value, mode,),
18250            0x4a951362f681f23c,
18251            fidl::encoding::DynamicFlags::empty(),
18252            _decode,
18253        )
18254    }
18255
18256    type RemoveExtendedAttributeResponseFut = fidl::client::QueryResponseFut<
18257        NodeRemoveExtendedAttributeResult,
18258        fidl::encoding::DefaultFuchsiaResourceDialect,
18259    >;
18260    fn r#remove_extended_attribute(
18261        &self,
18262        mut name: &[u8],
18263    ) -> Self::RemoveExtendedAttributeResponseFut {
18264        fn _decode(
18265            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18266        ) -> Result<NodeRemoveExtendedAttributeResult, fidl::Error> {
18267            let _response = fidl::client::decode_transaction_body::<
18268                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
18269                fidl::encoding::DefaultFuchsiaResourceDialect,
18270                0x7a0b9f3a9bf9032d,
18271            >(_buf?)?;
18272            Ok(_response.map(|x| x))
18273        }
18274        self.client.send_query_and_decode::<
18275            NodeRemoveExtendedAttributeRequest,
18276            NodeRemoveExtendedAttributeResult,
18277        >(
18278            (name,),
18279            0x7a0b9f3a9bf9032d,
18280            fidl::encoding::DynamicFlags::empty(),
18281            _decode,
18282        )
18283    }
18284
18285    type DescribeResponseFut =
18286        fidl::client::QueryResponseFut<SymlinkInfo, fidl::encoding::DefaultFuchsiaResourceDialect>;
18287    fn r#describe(&self) -> Self::DescribeResponseFut {
18288        fn _decode(
18289            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
18290        ) -> Result<SymlinkInfo, fidl::Error> {
18291            let _response = fidl::client::decode_transaction_body::<
18292                fidl::encoding::FlexibleType<SymlinkInfo>,
18293                fidl::encoding::DefaultFuchsiaResourceDialect,
18294                0x742c2ea5e89831f3,
18295            >(_buf?)?
18296            .into_result::<SymlinkMarker>("describe")?;
18297            Ok(_response)
18298        }
18299        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, SymlinkInfo>(
18300            (),
18301            0x742c2ea5e89831f3,
18302            fidl::encoding::DynamicFlags::FLEXIBLE,
18303            _decode,
18304        )
18305    }
18306}
18307
18308pub struct SymlinkEventStream {
18309    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
18310}
18311
18312impl std::marker::Unpin for SymlinkEventStream {}
18313
18314impl futures::stream::FusedStream for SymlinkEventStream {
18315    fn is_terminated(&self) -> bool {
18316        self.event_receiver.is_terminated()
18317    }
18318}
18319
18320impl futures::Stream for SymlinkEventStream {
18321    type Item = Result<SymlinkEvent, fidl::Error>;
18322
18323    fn poll_next(
18324        mut self: std::pin::Pin<&mut Self>,
18325        cx: &mut std::task::Context<'_>,
18326    ) -> std::task::Poll<Option<Self::Item>> {
18327        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
18328            &mut self.event_receiver,
18329            cx
18330        )?) {
18331            Some(buf) => std::task::Poll::Ready(Some(SymlinkEvent::decode(buf))),
18332            None => std::task::Poll::Ready(None),
18333        }
18334    }
18335}
18336
18337#[derive(Debug)]
18338pub enum SymlinkEvent {
18339    OnOpen_ {
18340        s: i32,
18341        info: Option<Box<NodeInfoDeprecated>>,
18342    },
18343    OnRepresentation {
18344        payload: Representation,
18345    },
18346    #[non_exhaustive]
18347    _UnknownEvent {
18348        /// Ordinal of the event that was sent.
18349        ordinal: u64,
18350    },
18351}
18352
18353impl SymlinkEvent {
18354    #[allow(irrefutable_let_patterns)]
18355    pub fn into_on_open_(self) -> Option<(i32, Option<Box<NodeInfoDeprecated>>)> {
18356        if let SymlinkEvent::OnOpen_ { s, info } = self {
18357            Some((s, info))
18358        } else {
18359            None
18360        }
18361    }
18362    #[allow(irrefutable_let_patterns)]
18363    pub fn into_on_representation(self) -> Option<Representation> {
18364        if let SymlinkEvent::OnRepresentation { payload } = self {
18365            Some((payload))
18366        } else {
18367            None
18368        }
18369    }
18370
18371    /// Decodes a message buffer as a [`SymlinkEvent`].
18372    fn decode(
18373        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
18374    ) -> Result<SymlinkEvent, fidl::Error> {
18375        let (bytes, _handles) = buf.split_mut();
18376        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
18377        debug_assert_eq!(tx_header.tx_id, 0);
18378        match tx_header.ordinal {
18379            0x7fc7bbb1dbfd1972 => {
18380                let mut out = fidl::new_empty!(
18381                    NodeOnOpenRequest,
18382                    fidl::encoding::DefaultFuchsiaResourceDialect
18383                );
18384                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeOnOpenRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
18385                Ok((SymlinkEvent::OnOpen_ { s: out.s, info: out.info }))
18386            }
18387            0x5cb40567d80a510c => {
18388                let mut out =
18389                    fidl::new_empty!(Representation, fidl::encoding::DefaultFuchsiaResourceDialect);
18390                fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<Representation>(&tx_header, _body_bytes, _handles, &mut out)?;
18391                Ok((SymlinkEvent::OnRepresentation { payload: out }))
18392            }
18393            _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
18394                Ok(SymlinkEvent::_UnknownEvent { ordinal: tx_header.ordinal })
18395            }
18396            _ => Err(fidl::Error::UnknownOrdinal {
18397                ordinal: tx_header.ordinal,
18398                protocol_name: <SymlinkMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
18399            }),
18400        }
18401    }
18402}
18403
18404/// A Stream of incoming requests for fuchsia.io/Symlink.
18405pub struct SymlinkRequestStream {
18406    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
18407    is_terminated: bool,
18408}
18409
18410impl std::marker::Unpin for SymlinkRequestStream {}
18411
18412impl futures::stream::FusedStream for SymlinkRequestStream {
18413    fn is_terminated(&self) -> bool {
18414        self.is_terminated
18415    }
18416}
18417
18418impl fidl::endpoints::RequestStream for SymlinkRequestStream {
18419    type Protocol = SymlinkMarker;
18420    type ControlHandle = SymlinkControlHandle;
18421
18422    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
18423        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
18424    }
18425
18426    fn control_handle(&self) -> Self::ControlHandle {
18427        SymlinkControlHandle { inner: self.inner.clone() }
18428    }
18429
18430    fn into_inner(
18431        self,
18432    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
18433    {
18434        (self.inner, self.is_terminated)
18435    }
18436
18437    fn from_inner(
18438        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
18439        is_terminated: bool,
18440    ) -> Self {
18441        Self { inner, is_terminated }
18442    }
18443}
18444
18445impl futures::Stream for SymlinkRequestStream {
18446    type Item = Result<SymlinkRequest, fidl::Error>;
18447
18448    fn poll_next(
18449        mut self: std::pin::Pin<&mut Self>,
18450        cx: &mut std::task::Context<'_>,
18451    ) -> std::task::Poll<Option<Self::Item>> {
18452        let this = &mut *self;
18453        if this.inner.check_shutdown(cx) {
18454            this.is_terminated = true;
18455            return std::task::Poll::Ready(None);
18456        }
18457        if this.is_terminated {
18458            panic!("polled SymlinkRequestStream after completion");
18459        }
18460        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
18461            |bytes, handles| {
18462                match this.inner.channel().read_etc(cx, bytes, handles) {
18463                    std::task::Poll::Ready(Ok(())) => {}
18464                    std::task::Poll::Pending => return std::task::Poll::Pending,
18465                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
18466                        this.is_terminated = true;
18467                        return std::task::Poll::Ready(None);
18468                    }
18469                    std::task::Poll::Ready(Err(e)) => {
18470                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
18471                            e.into(),
18472                        ))))
18473                    }
18474                }
18475
18476                // A message has been received from the channel
18477                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
18478
18479                std::task::Poll::Ready(Some(match header.ordinal {
18480                    0x54f3949246a03e74 => {
18481                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18482                        let mut req = fidl::new_empty!(
18483                            LinkableLinkIntoRequest,
18484                            fidl::encoding::DefaultFuchsiaResourceDialect
18485                        );
18486                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<LinkableLinkIntoRequest>(&header, _body_bytes, handles, &mut req)?;
18487                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18488                        Ok(SymlinkRequest::LinkInto {
18489                            dst_parent_token: req.dst_parent_token,
18490                            dst: req.dst,
18491
18492                            responder: SymlinkLinkIntoResponder {
18493                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18494                                tx_id: header.tx_id,
18495                            },
18496                        })
18497                    }
18498                    0x20d8a7aba2168a79 => {
18499                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
18500                        let mut req = fidl::new_empty!(
18501                            fidl_fuchsia_unknown::CloneableCloneRequest,
18502                            fidl::encoding::DefaultFuchsiaResourceDialect
18503                        );
18504                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl_fuchsia_unknown::CloneableCloneRequest>(&header, _body_bytes, handles, &mut req)?;
18505                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18506                        Ok(SymlinkRequest::Clone { request: req.request, control_handle })
18507                    }
18508                    0x5ac5d459ad7f657e => {
18509                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18510                        let mut req = fidl::new_empty!(
18511                            fidl::encoding::EmptyPayload,
18512                            fidl::encoding::DefaultFuchsiaResourceDialect
18513                        );
18514                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18515                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18516                        Ok(SymlinkRequest::Close {
18517                            responder: SymlinkCloseResponder {
18518                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18519                                tx_id: header.tx_id,
18520                            },
18521                        })
18522                    }
18523                    0x2658edee9decfc06 => {
18524                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18525                        let mut req = fidl::new_empty!(
18526                            fidl::encoding::EmptyPayload,
18527                            fidl::encoding::DefaultFuchsiaResourceDialect
18528                        );
18529                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18530                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18531                        Ok(SymlinkRequest::Query {
18532                            responder: SymlinkQueryResponder {
18533                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18534                                tx_id: header.tx_id,
18535                            },
18536                        })
18537                    }
18538                    0x5a61678f293ce16f => {
18539                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
18540                        let mut req = fidl::new_empty!(
18541                            NodeDeprecatedCloneRequest,
18542                            fidl::encoding::DefaultFuchsiaResourceDialect
18543                        );
18544                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedCloneRequest>(&header, _body_bytes, handles, &mut req)?;
18545                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18546                        Ok(SymlinkRequest::DeprecatedClone {
18547                            flags: req.flags,
18548                            object: req.object,
18549
18550                            control_handle,
18551                        })
18552                    }
18553                    0x78985e216314dafd => {
18554                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18555                        let mut req = fidl::new_empty!(
18556                            fidl::encoding::EmptyPayload,
18557                            fidl::encoding::DefaultFuchsiaResourceDialect
18558                        );
18559                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18560                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18561                        Ok(SymlinkRequest::GetAttr {
18562                            responder: SymlinkGetAttrResponder {
18563                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18564                                tx_id: header.tx_id,
18565                            },
18566                        })
18567                    }
18568                    0x4186c0f40d938f46 => {
18569                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18570                        let mut req = fidl::new_empty!(
18571                            NodeSetAttrRequest,
18572                            fidl::encoding::DefaultFuchsiaResourceDialect
18573                        );
18574                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetAttrRequest>(&header, _body_bytes, handles, &mut req)?;
18575                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18576                        Ok(SymlinkRequest::SetAttr {
18577                            flags: req.flags,
18578                            attributes: req.attributes,
18579
18580                            responder: SymlinkSetAttrResponder {
18581                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18582                                tx_id: header.tx_id,
18583                            },
18584                        })
18585                    }
18586                    0x5b88fffb8eda3aa1 => {
18587                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18588                        let mut req = fidl::new_empty!(
18589                            fidl::encoding::EmptyPayload,
18590                            fidl::encoding::DefaultFuchsiaResourceDialect
18591                        );
18592                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18593                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18594                        Ok(SymlinkRequest::DeprecatedGetFlags {
18595                            responder: SymlinkDeprecatedGetFlagsResponder {
18596                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18597                                tx_id: header.tx_id,
18598                            },
18599                        })
18600                    }
18601                    0x5295b76c71fde733 => {
18602                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18603                        let mut req = fidl::new_empty!(
18604                            NodeDeprecatedSetFlagsRequest,
18605                            fidl::encoding::DefaultFuchsiaResourceDialect
18606                        );
18607                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeDeprecatedSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
18608                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18609                        Ok(SymlinkRequest::DeprecatedSetFlags {
18610                            flags: req.flags,
18611
18612                            responder: SymlinkDeprecatedSetFlagsResponder {
18613                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18614                                tx_id: header.tx_id,
18615                            },
18616                        })
18617                    }
18618                    0x176eb318f64ec23 => {
18619                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18620                        let mut req = fidl::new_empty!(
18621                            fidl::encoding::EmptyPayload,
18622                            fidl::encoding::DefaultFuchsiaResourceDialect
18623                        );
18624                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18625                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18626                        Ok(SymlinkRequest::GetFlags {
18627                            responder: SymlinkGetFlagsResponder {
18628                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18629                                tx_id: header.tx_id,
18630                            },
18631                        })
18632                    }
18633                    0x55a8028685791ea8 => {
18634                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18635                        let mut req = fidl::new_empty!(
18636                            NodeSetFlagsRequest,
18637                            fidl::encoding::DefaultFuchsiaResourceDialect
18638                        );
18639                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetFlagsRequest>(&header, _body_bytes, handles, &mut req)?;
18640                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18641                        Ok(SymlinkRequest::SetFlags {
18642                            flags: req.flags,
18643
18644                            responder: SymlinkSetFlagsResponder {
18645                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18646                                tx_id: header.tx_id,
18647                            },
18648                        })
18649                    }
18650                    0x6f344a1c6b0a0610 => {
18651                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18652                        let mut req = fidl::new_empty!(
18653                            fidl::encoding::EmptyPayload,
18654                            fidl::encoding::DefaultFuchsiaResourceDialect
18655                        );
18656                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18657                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18658                        Ok(SymlinkRequest::QueryFilesystem {
18659                            responder: SymlinkQueryFilesystemResponder {
18660                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18661                                tx_id: header.tx_id,
18662                            },
18663                        })
18664                    }
18665                    0x584c377c7c0a6d0b => {
18666                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18667                        let mut req = fidl::new_empty!(
18668                            fidl::encoding::EmptyPayload,
18669                            fidl::encoding::DefaultFuchsiaResourceDialect
18670                        );
18671                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18672                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18673                        Ok(SymlinkRequest::GetConnectionInfo {
18674                            responder: SymlinkGetConnectionInfoResponder {
18675                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18676                                tx_id: header.tx_id,
18677                            },
18678                        })
18679                    }
18680                    0x3d4396a638ea053b => {
18681                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18682                        let mut req = fidl::new_empty!(
18683                            NodeGetAttributesRequest,
18684                            fidl::encoding::DefaultFuchsiaResourceDialect
18685                        );
18686                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
18687                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18688                        Ok(SymlinkRequest::GetAttributes {
18689                            query: req.query,
18690
18691                            responder: SymlinkGetAttributesResponder {
18692                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18693                                tx_id: header.tx_id,
18694                            },
18695                        })
18696                    }
18697                    0x3308c1da5a89bf08 => {
18698                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18699                        let mut req = fidl::new_empty!(
18700                            MutableNodeAttributes,
18701                            fidl::encoding::DefaultFuchsiaResourceDialect
18702                        );
18703                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<MutableNodeAttributes>(&header, _body_bytes, handles, &mut req)?;
18704                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18705                        Ok(SymlinkRequest::UpdateAttributes {
18706                            payload: req,
18707                            responder: SymlinkUpdateAttributesResponder {
18708                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18709                                tx_id: header.tx_id,
18710                            },
18711                        })
18712                    }
18713                    0x2c5c27ca0ab5dc49 => {
18714                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18715                        let mut req = fidl::new_empty!(
18716                            fidl::encoding::EmptyPayload,
18717                            fidl::encoding::DefaultFuchsiaResourceDialect
18718                        );
18719                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18720                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18721                        Ok(SymlinkRequest::Sync {
18722                            responder: SymlinkSyncResponder {
18723                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18724                                tx_id: header.tx_id,
18725                            },
18726                        })
18727                    }
18728                    0x4b61033de007fcd0 => {
18729                        header.validate_request_tx_id(fidl::MethodType::OneWay)?;
18730                        let mut req = fidl::new_empty!(
18731                            NodeListExtendedAttributesRequest,
18732                            fidl::encoding::DefaultFuchsiaResourceDialect
18733                        );
18734                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeListExtendedAttributesRequest>(&header, _body_bytes, handles, &mut req)?;
18735                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18736                        Ok(SymlinkRequest::ListExtendedAttributes {
18737                            iterator: req.iterator,
18738
18739                            control_handle,
18740                        })
18741                    }
18742                    0x45ffa3ccfdeb76db => {
18743                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18744                        let mut req = fidl::new_empty!(
18745                            NodeGetExtendedAttributeRequest,
18746                            fidl::encoding::DefaultFuchsiaResourceDialect
18747                        );
18748                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeGetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
18749                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18750                        Ok(SymlinkRequest::GetExtendedAttribute {
18751                            name: req.name,
18752
18753                            responder: SymlinkGetExtendedAttributeResponder {
18754                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18755                                tx_id: header.tx_id,
18756                            },
18757                        })
18758                    }
18759                    0x4a951362f681f23c => {
18760                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18761                        let mut req = fidl::new_empty!(
18762                            NodeSetExtendedAttributeRequest,
18763                            fidl::encoding::DefaultFuchsiaResourceDialect
18764                        );
18765                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeSetExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
18766                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18767                        Ok(SymlinkRequest::SetExtendedAttribute {
18768                            name: req.name,
18769                            value: req.value,
18770                            mode: req.mode,
18771
18772                            responder: SymlinkSetExtendedAttributeResponder {
18773                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18774                                tx_id: header.tx_id,
18775                            },
18776                        })
18777                    }
18778                    0x7a0b9f3a9bf9032d => {
18779                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18780                        let mut req = fidl::new_empty!(
18781                            NodeRemoveExtendedAttributeRequest,
18782                            fidl::encoding::DefaultFuchsiaResourceDialect
18783                        );
18784                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NodeRemoveExtendedAttributeRequest>(&header, _body_bytes, handles, &mut req)?;
18785                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18786                        Ok(SymlinkRequest::RemoveExtendedAttribute {
18787                            name: req.name,
18788
18789                            responder: SymlinkRemoveExtendedAttributeResponder {
18790                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18791                                tx_id: header.tx_id,
18792                            },
18793                        })
18794                    }
18795                    0x742c2ea5e89831f3 => {
18796                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
18797                        let mut req = fidl::new_empty!(
18798                            fidl::encoding::EmptyPayload,
18799                            fidl::encoding::DefaultFuchsiaResourceDialect
18800                        );
18801                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
18802                        let control_handle = SymlinkControlHandle { inner: this.inner.clone() };
18803                        Ok(SymlinkRequest::Describe {
18804                            responder: SymlinkDescribeResponder {
18805                                control_handle: std::mem::ManuallyDrop::new(control_handle),
18806                                tx_id: header.tx_id,
18807                            },
18808                        })
18809                    }
18810                    _ if header.tx_id == 0
18811                        && header
18812                            .dynamic_flags()
18813                            .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
18814                    {
18815                        Ok(SymlinkRequest::_UnknownMethod {
18816                            ordinal: header.ordinal,
18817                            control_handle: SymlinkControlHandle { inner: this.inner.clone() },
18818                            method_type: fidl::MethodType::OneWay,
18819                        })
18820                    }
18821                    _ if header
18822                        .dynamic_flags()
18823                        .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
18824                    {
18825                        this.inner.send_framework_err(
18826                            fidl::encoding::FrameworkErr::UnknownMethod,
18827                            header.tx_id,
18828                            header.ordinal,
18829                            header.dynamic_flags(),
18830                            (bytes, handles),
18831                        )?;
18832                        Ok(SymlinkRequest::_UnknownMethod {
18833                            ordinal: header.ordinal,
18834                            control_handle: SymlinkControlHandle { inner: this.inner.clone() },
18835                            method_type: fidl::MethodType::TwoWay,
18836                        })
18837                    }
18838                    _ => Err(fidl::Error::UnknownOrdinal {
18839                        ordinal: header.ordinal,
18840                        protocol_name:
18841                            <SymlinkMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
18842                    }),
18843                }))
18844            },
18845        )
18846    }
18847}
18848
18849/// A ['Node'] which contains a symbolic link.
18850#[derive(Debug)]
18851pub enum SymlinkRequest {
18852    /// Creates a link to this this object with name `dst` in the directory represented by
18853    /// `dst_parent_token`.
18854    ///
18855    /// `dst` must be a resolved object name. Including "/" in the string will return
18856    /// `ZX_ERR_INVALID_ARGS`.
18857    ///
18858    /// This method requires the maximal set of rights supported by the filesystem for this object.
18859    /// For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],
18860    /// [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also
18861    /// support the [`Rights.EXECUTE`] right. Insufficient rights will result in
18862    /// `ZX_ERR_ACCESS_DENIED`.
18863    ///
18864    /// If this object has no links and is *NOT* an unnamed temporary object (objects opened with
18865    /// `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.
18866    ///
18867    /// For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,
18868    /// the object will be permanently linked to the filesystem. Requires that the unnamed temporary
18869    /// object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.
18870    ///
18871    /// This method does not have the same atomicity properties has the `Directory::Link` method,
18872    /// which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`
18873    /// because `LinkInto` will not prevent the source from being renamed or unlinked.
18874    LinkInto {
18875        dst_parent_token: fidl::Event,
18876        dst: String,
18877        responder: SymlinkLinkIntoResponder,
18878    },
18879    Clone {
18880        request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
18881        control_handle: SymlinkControlHandle,
18882    },
18883    /// Terminates the connection.
18884    ///
18885    /// After calling `Close`, the client must not send any other requests.
18886    ///
18887    /// Servers, after sending the status response, should close the connection
18888    /// regardless of status and without sending an epitaph.
18889    ///
18890    /// Closing the client end of the channel should be semantically equivalent
18891    /// to calling `Close` without knowing when the close has completed or its
18892    /// status.
18893    Close {
18894        responder: SymlinkCloseResponder,
18895    },
18896    Query {
18897        responder: SymlinkQueryResponder,
18898    },
18899    /// DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.
18900    DeprecatedClone {
18901        flags: OpenFlags,
18902        object: fidl::endpoints::ServerEnd<NodeMarker>,
18903        control_handle: SymlinkControlHandle,
18904    },
18905    /// Acquires information about the node.
18906    ///
18907    /// This method does not require any rights.
18908    GetAttr {
18909        responder: SymlinkGetAttrResponder,
18910    },
18911    /// Updates information about the node.
18912    ///
18913    /// Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.
18914    ///
18915    /// This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns
18916    /// `ZX_ERR_BAD_HANDLE`.
18917    SetAttr {
18918        flags: NodeAttributeFlags,
18919        attributes: NodeAttributes,
18920        responder: SymlinkSetAttrResponder,
18921    },
18922    /// [DEPRECATED - Use new GetFlags method instead.]
18923    DeprecatedGetFlags {
18924        responder: SymlinkDeprecatedGetFlagsResponder,
18925    },
18926    /// [DEPRECATED - Use new SetFlags method instead.]
18927    DeprecatedSetFlags {
18928        flags: OpenFlags,
18929        responder: SymlinkDeprecatedSetFlagsResponder,
18930    },
18931    /// Queries the flags that apply to this node after it has been opened/created. This method does
18932    /// not require any rights.
18933    ///
18934    /// Note that the final set of flags that apply to the connection may differ from those
18935    /// specified with the `fuchsia.io/Directory.Open` request used to create it:
18936    ///  - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.
18937    ///  - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.
18938    ///  - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.
18939    GetFlags {
18940        responder: SymlinkGetFlagsResponder,
18941    },
18942    /// Sets the flags that apply to this node after it has been opened. This method does not
18943    /// require any rights.
18944    ///
18945    /// Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will
18946    /// clear append mode.
18947    ///
18948    /// Errors:
18949    ///  - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.
18950    ///  - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.
18951    SetFlags {
18952        flags: Flags,
18953        responder: SymlinkSetFlagsResponder,
18954    },
18955    /// Query the filesystem for filesystem-specific information.
18956    QueryFilesystem {
18957        responder: SymlinkQueryFilesystemResponder,
18958    },
18959    /// Acquires information about the connection.
18960    ///
18961    /// This method does not require any rights.
18962    GetConnectionInfo {
18963        responder: SymlinkGetConnectionInfoResponder,
18964    },
18965    /// Acquires information about the node.
18966    ///
18967    /// The attributes of a node should be stable, independent of the
18968    /// specific protocol used to access it.
18969    ///
18970    /// If a particular attribute is not applicable or not supported,
18971    /// filesystems should leave the corresponding field absent.
18972    ///
18973    /// + `query` a bit-mask specifying which attributes to fetch. The server
18974    ///   should not return more than necessary.
18975    /// - `attributes` the returned attributes.
18976    ///
18977    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
18978    GetAttributes {
18979        query: NodeAttributesQuery,
18980        responder: SymlinkGetAttributesResponder,
18981    },
18982    /// Updates information about the node.
18983    ///
18984    /// + `attributes` the presence of a table field in `attributes` indicates
18985    /// the intent to update the corresponding attribute.
18986    ///
18987    /// Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.
18988    ///
18989    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
18990    UpdateAttributes {
18991        payload: MutableNodeAttributes,
18992        responder: SymlinkUpdateAttributesResponder,
18993    },
18994    /// Synchronizes updates to the node to the underlying media, if it exists.
18995    ///
18996    /// This method will return when the filesystem server has flushed the
18997    /// relevant updates to the underlying media, but does not guarantee the
18998    /// underlying media has persisted the information, nor that any information
18999    /// is committed to hardware. Clients may use `Sync` to ensure ordering
19000    /// between operations.
19001    ///
19002    /// This method does not require any rights.
19003    Sync {
19004        responder: SymlinkSyncResponder,
19005    },
19006    /// Creates an iterator over all the extended attribute names associated
19007    /// with this node. If an error occurs it is returned as an epitaph on the
19008    /// iterator request channel, and then the channel is closed.
19009    ///
19010    /// GetExtendedAttributes can be used with any of these names to retrieve
19011    /// the associated value.
19012    ///
19013    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
19014    ListExtendedAttributes {
19015        iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
19016        control_handle: SymlinkControlHandle,
19017    },
19018    /// Get the value associated with the given attribute `name` for this node.
19019    ///
19020    /// Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No
19021    /// particular structure is imposed on them.
19022    ///
19023    /// This method requires the [`Rights.GET_ATTRIBUTES`] right.
19024    GetExtendedAttribute {
19025        name: Vec<u8>,
19026        responder: SymlinkGetExtendedAttributeResponder,
19027    },
19028    /// Set the value for the given attribute `name` to `value` for this node.
19029    ///
19030    /// The attribute name may exist, in which case the attribute is updated.
19031    /// If the attribute doesn't exist, it is created. The name should have no
19032    /// null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
19033    ///
19034    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
19035    SetExtendedAttribute {
19036        name: Vec<u8>,
19037        value: ExtendedAttributeValue,
19038        mode: SetExtendedAttributeMode,
19039        responder: SymlinkSetExtendedAttributeResponder,
19040    },
19041    /// Remove the specified extended attribute.
19042    ///
19043    /// If the attribute doesn't exist, ZX_ERR_NOT_FOUND is returned.
19044    ///
19045    /// This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.
19046    RemoveExtendedAttribute {
19047        name: Vec<u8>,
19048        responder: SymlinkRemoveExtendedAttributeResponder,
19049    },
19050    Describe {
19051        responder: SymlinkDescribeResponder,
19052    },
19053    /// An interaction was received which does not match any known method.
19054    #[non_exhaustive]
19055    _UnknownMethod {
19056        /// Ordinal of the method that was called.
19057        ordinal: u64,
19058        control_handle: SymlinkControlHandle,
19059        method_type: fidl::MethodType,
19060    },
19061}
19062
19063impl SymlinkRequest {
19064    #[allow(irrefutable_let_patterns)]
19065    pub fn into_link_into(self) -> Option<(fidl::Event, String, SymlinkLinkIntoResponder)> {
19066        if let SymlinkRequest::LinkInto { dst_parent_token, dst, responder } = self {
19067            Some((dst_parent_token, dst, responder))
19068        } else {
19069            None
19070        }
19071    }
19072
19073    #[allow(irrefutable_let_patterns)]
19074    pub fn into_clone(
19075        self,
19076    ) -> Option<(
19077        fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
19078        SymlinkControlHandle,
19079    )> {
19080        if let SymlinkRequest::Clone { request, control_handle } = self {
19081            Some((request, control_handle))
19082        } else {
19083            None
19084        }
19085    }
19086
19087    #[allow(irrefutable_let_patterns)]
19088    pub fn into_close(self) -> Option<(SymlinkCloseResponder)> {
19089        if let SymlinkRequest::Close { responder } = self {
19090            Some((responder))
19091        } else {
19092            None
19093        }
19094    }
19095
19096    #[allow(irrefutable_let_patterns)]
19097    pub fn into_query(self) -> Option<(SymlinkQueryResponder)> {
19098        if let SymlinkRequest::Query { responder } = self {
19099            Some((responder))
19100        } else {
19101            None
19102        }
19103    }
19104
19105    #[allow(irrefutable_let_patterns)]
19106    pub fn into_deprecated_clone(
19107        self,
19108    ) -> Option<(OpenFlags, fidl::endpoints::ServerEnd<NodeMarker>, SymlinkControlHandle)> {
19109        if let SymlinkRequest::DeprecatedClone { flags, object, control_handle } = self {
19110            Some((flags, object, control_handle))
19111        } else {
19112            None
19113        }
19114    }
19115
19116    #[allow(irrefutable_let_patterns)]
19117    pub fn into_get_attr(self) -> Option<(SymlinkGetAttrResponder)> {
19118        if let SymlinkRequest::GetAttr { responder } = self {
19119            Some((responder))
19120        } else {
19121            None
19122        }
19123    }
19124
19125    #[allow(irrefutable_let_patterns)]
19126    pub fn into_set_attr(
19127        self,
19128    ) -> Option<(NodeAttributeFlags, NodeAttributes, SymlinkSetAttrResponder)> {
19129        if let SymlinkRequest::SetAttr { flags, attributes, responder } = self {
19130            Some((flags, attributes, responder))
19131        } else {
19132            None
19133        }
19134    }
19135
19136    #[allow(irrefutable_let_patterns)]
19137    pub fn into_deprecated_get_flags(self) -> Option<(SymlinkDeprecatedGetFlagsResponder)> {
19138        if let SymlinkRequest::DeprecatedGetFlags { responder } = self {
19139            Some((responder))
19140        } else {
19141            None
19142        }
19143    }
19144
19145    #[allow(irrefutable_let_patterns)]
19146    pub fn into_deprecated_set_flags(
19147        self,
19148    ) -> Option<(OpenFlags, SymlinkDeprecatedSetFlagsResponder)> {
19149        if let SymlinkRequest::DeprecatedSetFlags { flags, responder } = self {
19150            Some((flags, responder))
19151        } else {
19152            None
19153        }
19154    }
19155
19156    #[allow(irrefutable_let_patterns)]
19157    pub fn into_get_flags(self) -> Option<(SymlinkGetFlagsResponder)> {
19158        if let SymlinkRequest::GetFlags { responder } = self {
19159            Some((responder))
19160        } else {
19161            None
19162        }
19163    }
19164
19165    #[allow(irrefutable_let_patterns)]
19166    pub fn into_set_flags(self) -> Option<(Flags, SymlinkSetFlagsResponder)> {
19167        if let SymlinkRequest::SetFlags { flags, responder } = self {
19168            Some((flags, responder))
19169        } else {
19170            None
19171        }
19172    }
19173
19174    #[allow(irrefutable_let_patterns)]
19175    pub fn into_query_filesystem(self) -> Option<(SymlinkQueryFilesystemResponder)> {
19176        if let SymlinkRequest::QueryFilesystem { responder } = self {
19177            Some((responder))
19178        } else {
19179            None
19180        }
19181    }
19182
19183    #[allow(irrefutable_let_patterns)]
19184    pub fn into_get_connection_info(self) -> Option<(SymlinkGetConnectionInfoResponder)> {
19185        if let SymlinkRequest::GetConnectionInfo { responder } = self {
19186            Some((responder))
19187        } else {
19188            None
19189        }
19190    }
19191
19192    #[allow(irrefutable_let_patterns)]
19193    pub fn into_get_attributes(
19194        self,
19195    ) -> Option<(NodeAttributesQuery, SymlinkGetAttributesResponder)> {
19196        if let SymlinkRequest::GetAttributes { query, responder } = self {
19197            Some((query, responder))
19198        } else {
19199            None
19200        }
19201    }
19202
19203    #[allow(irrefutable_let_patterns)]
19204    pub fn into_update_attributes(
19205        self,
19206    ) -> Option<(MutableNodeAttributes, SymlinkUpdateAttributesResponder)> {
19207        if let SymlinkRequest::UpdateAttributes { payload, responder } = self {
19208            Some((payload, responder))
19209        } else {
19210            None
19211        }
19212    }
19213
19214    #[allow(irrefutable_let_patterns)]
19215    pub fn into_sync(self) -> Option<(SymlinkSyncResponder)> {
19216        if let SymlinkRequest::Sync { responder } = self {
19217            Some((responder))
19218        } else {
19219            None
19220        }
19221    }
19222
19223    #[allow(irrefutable_let_patterns)]
19224    pub fn into_list_extended_attributes(
19225        self,
19226    ) -> Option<(fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>, SymlinkControlHandle)>
19227    {
19228        if let SymlinkRequest::ListExtendedAttributes { iterator, control_handle } = self {
19229            Some((iterator, control_handle))
19230        } else {
19231            None
19232        }
19233    }
19234
19235    #[allow(irrefutable_let_patterns)]
19236    pub fn into_get_extended_attribute(
19237        self,
19238    ) -> Option<(Vec<u8>, SymlinkGetExtendedAttributeResponder)> {
19239        if let SymlinkRequest::GetExtendedAttribute { name, responder } = self {
19240            Some((name, responder))
19241        } else {
19242            None
19243        }
19244    }
19245
19246    #[allow(irrefutable_let_patterns)]
19247    pub fn into_set_extended_attribute(
19248        self,
19249    ) -> Option<(
19250        Vec<u8>,
19251        ExtendedAttributeValue,
19252        SetExtendedAttributeMode,
19253        SymlinkSetExtendedAttributeResponder,
19254    )> {
19255        if let SymlinkRequest::SetExtendedAttribute { name, value, mode, responder } = self {
19256            Some((name, value, mode, responder))
19257        } else {
19258            None
19259        }
19260    }
19261
19262    #[allow(irrefutable_let_patterns)]
19263    pub fn into_remove_extended_attribute(
19264        self,
19265    ) -> Option<(Vec<u8>, SymlinkRemoveExtendedAttributeResponder)> {
19266        if let SymlinkRequest::RemoveExtendedAttribute { name, responder } = self {
19267            Some((name, responder))
19268        } else {
19269            None
19270        }
19271    }
19272
19273    #[allow(irrefutable_let_patterns)]
19274    pub fn into_describe(self) -> Option<(SymlinkDescribeResponder)> {
19275        if let SymlinkRequest::Describe { responder } = self {
19276            Some((responder))
19277        } else {
19278            None
19279        }
19280    }
19281
19282    /// Name of the method defined in FIDL
19283    pub fn method_name(&self) -> &'static str {
19284        match *self {
19285            SymlinkRequest::LinkInto { .. } => "link_into",
19286            SymlinkRequest::Clone { .. } => "clone",
19287            SymlinkRequest::Close { .. } => "close",
19288            SymlinkRequest::Query { .. } => "query",
19289            SymlinkRequest::DeprecatedClone { .. } => "deprecated_clone",
19290            SymlinkRequest::GetAttr { .. } => "get_attr",
19291            SymlinkRequest::SetAttr { .. } => "set_attr",
19292            SymlinkRequest::DeprecatedGetFlags { .. } => "deprecated_get_flags",
19293            SymlinkRequest::DeprecatedSetFlags { .. } => "deprecated_set_flags",
19294            SymlinkRequest::GetFlags { .. } => "get_flags",
19295            SymlinkRequest::SetFlags { .. } => "set_flags",
19296            SymlinkRequest::QueryFilesystem { .. } => "query_filesystem",
19297            SymlinkRequest::GetConnectionInfo { .. } => "get_connection_info",
19298            SymlinkRequest::GetAttributes { .. } => "get_attributes",
19299            SymlinkRequest::UpdateAttributes { .. } => "update_attributes",
19300            SymlinkRequest::Sync { .. } => "sync",
19301            SymlinkRequest::ListExtendedAttributes { .. } => "list_extended_attributes",
19302            SymlinkRequest::GetExtendedAttribute { .. } => "get_extended_attribute",
19303            SymlinkRequest::SetExtendedAttribute { .. } => "set_extended_attribute",
19304            SymlinkRequest::RemoveExtendedAttribute { .. } => "remove_extended_attribute",
19305            SymlinkRequest::Describe { .. } => "describe",
19306            SymlinkRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
19307                "unknown one-way method"
19308            }
19309            SymlinkRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
19310                "unknown two-way method"
19311            }
19312        }
19313    }
19314}
19315
19316#[derive(Debug, Clone)]
19317pub struct SymlinkControlHandle {
19318    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
19319}
19320
19321impl fidl::endpoints::ControlHandle for SymlinkControlHandle {
19322    fn shutdown(&self) {
19323        self.inner.shutdown()
19324    }
19325    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
19326        self.inner.shutdown_with_epitaph(status)
19327    }
19328
19329    fn is_closed(&self) -> bool {
19330        self.inner.channel().is_closed()
19331    }
19332    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
19333        self.inner.channel().on_closed()
19334    }
19335
19336    #[cfg(target_os = "fuchsia")]
19337    fn signal_peer(
19338        &self,
19339        clear_mask: zx::Signals,
19340        set_mask: zx::Signals,
19341    ) -> Result<(), zx_status::Status> {
19342        use fidl::Peered;
19343        self.inner.channel().signal_peer(clear_mask, set_mask)
19344    }
19345}
19346
19347impl SymlinkControlHandle {
19348    pub fn send_on_open_(
19349        &self,
19350        mut s: i32,
19351        mut info: Option<NodeInfoDeprecated>,
19352    ) -> Result<(), fidl::Error> {
19353        self.inner.send::<NodeOnOpenRequest>(
19354            (s, info.as_mut()),
19355            0,
19356            0x7fc7bbb1dbfd1972,
19357            fidl::encoding::DynamicFlags::empty(),
19358        )
19359    }
19360
19361    pub fn send_on_representation(&self, mut payload: Representation) -> Result<(), fidl::Error> {
19362        self.inner.send::<Representation>(
19363            &mut payload,
19364            0,
19365            0x5cb40567d80a510c,
19366            fidl::encoding::DynamicFlags::empty(),
19367        )
19368    }
19369}
19370
19371#[must_use = "FIDL methods require a response to be sent"]
19372#[derive(Debug)]
19373pub struct SymlinkLinkIntoResponder {
19374    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19375    tx_id: u32,
19376}
19377
19378/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19379/// if the responder is dropped without sending a response, so that the client
19380/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19381impl std::ops::Drop for SymlinkLinkIntoResponder {
19382    fn drop(&mut self) {
19383        self.control_handle.shutdown();
19384        // Safety: drops once, never accessed again
19385        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19386    }
19387}
19388
19389impl fidl::endpoints::Responder for SymlinkLinkIntoResponder {
19390    type ControlHandle = SymlinkControlHandle;
19391
19392    fn control_handle(&self) -> &SymlinkControlHandle {
19393        &self.control_handle
19394    }
19395
19396    fn drop_without_shutdown(mut self) {
19397        // Safety: drops once, never accessed again due to mem::forget
19398        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19399        // Prevent Drop from running (which would shut down the channel)
19400        std::mem::forget(self);
19401    }
19402}
19403
19404impl SymlinkLinkIntoResponder {
19405    /// Sends a response to the FIDL transaction.
19406    ///
19407    /// Sets the channel to shutdown if an error occurs.
19408    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19409        let _result = self.send_raw(result);
19410        if _result.is_err() {
19411            self.control_handle.shutdown();
19412        }
19413        self.drop_without_shutdown();
19414        _result
19415    }
19416
19417    /// Similar to "send" but does not shutdown the channel if an error occurs.
19418    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19419        let _result = self.send_raw(result);
19420        self.drop_without_shutdown();
19421        _result
19422    }
19423
19424    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19425        self.control_handle
19426            .inner
19427            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
19428                result,
19429                self.tx_id,
19430                0x54f3949246a03e74,
19431                fidl::encoding::DynamicFlags::empty(),
19432            )
19433    }
19434}
19435
19436#[must_use = "FIDL methods require a response to be sent"]
19437#[derive(Debug)]
19438pub struct SymlinkCloseResponder {
19439    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19440    tx_id: u32,
19441}
19442
19443/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19444/// if the responder is dropped without sending a response, so that the client
19445/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19446impl std::ops::Drop for SymlinkCloseResponder {
19447    fn drop(&mut self) {
19448        self.control_handle.shutdown();
19449        // Safety: drops once, never accessed again
19450        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19451    }
19452}
19453
19454impl fidl::endpoints::Responder for SymlinkCloseResponder {
19455    type ControlHandle = SymlinkControlHandle;
19456
19457    fn control_handle(&self) -> &SymlinkControlHandle {
19458        &self.control_handle
19459    }
19460
19461    fn drop_without_shutdown(mut self) {
19462        // Safety: drops once, never accessed again due to mem::forget
19463        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19464        // Prevent Drop from running (which would shut down the channel)
19465        std::mem::forget(self);
19466    }
19467}
19468
19469impl SymlinkCloseResponder {
19470    /// Sends a response to the FIDL transaction.
19471    ///
19472    /// Sets the channel to shutdown if an error occurs.
19473    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19474        let _result = self.send_raw(result);
19475        if _result.is_err() {
19476            self.control_handle.shutdown();
19477        }
19478        self.drop_without_shutdown();
19479        _result
19480    }
19481
19482    /// Similar to "send" but does not shutdown the channel if an error occurs.
19483    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19484        let _result = self.send_raw(result);
19485        self.drop_without_shutdown();
19486        _result
19487    }
19488
19489    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19490        self.control_handle
19491            .inner
19492            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
19493                result,
19494                self.tx_id,
19495                0x5ac5d459ad7f657e,
19496                fidl::encoding::DynamicFlags::empty(),
19497            )
19498    }
19499}
19500
19501#[must_use = "FIDL methods require a response to be sent"]
19502#[derive(Debug)]
19503pub struct SymlinkQueryResponder {
19504    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19505    tx_id: u32,
19506}
19507
19508/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19509/// if the responder is dropped without sending a response, so that the client
19510/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19511impl std::ops::Drop for SymlinkQueryResponder {
19512    fn drop(&mut self) {
19513        self.control_handle.shutdown();
19514        // Safety: drops once, never accessed again
19515        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19516    }
19517}
19518
19519impl fidl::endpoints::Responder for SymlinkQueryResponder {
19520    type ControlHandle = SymlinkControlHandle;
19521
19522    fn control_handle(&self) -> &SymlinkControlHandle {
19523        &self.control_handle
19524    }
19525
19526    fn drop_without_shutdown(mut self) {
19527        // Safety: drops once, never accessed again due to mem::forget
19528        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19529        // Prevent Drop from running (which would shut down the channel)
19530        std::mem::forget(self);
19531    }
19532}
19533
19534impl SymlinkQueryResponder {
19535    /// Sends a response to the FIDL transaction.
19536    ///
19537    /// Sets the channel to shutdown if an error occurs.
19538    pub fn send(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
19539        let _result = self.send_raw(protocol);
19540        if _result.is_err() {
19541            self.control_handle.shutdown();
19542        }
19543        self.drop_without_shutdown();
19544        _result
19545    }
19546
19547    /// Similar to "send" but does not shutdown the channel if an error occurs.
19548    pub fn send_no_shutdown_on_err(self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
19549        let _result = self.send_raw(protocol);
19550        self.drop_without_shutdown();
19551        _result
19552    }
19553
19554    fn send_raw(&self, mut protocol: &[u8]) -> Result<(), fidl::Error> {
19555        self.control_handle.inner.send::<fidl_fuchsia_unknown::QueryableQueryResponse>(
19556            (protocol,),
19557            self.tx_id,
19558            0x2658edee9decfc06,
19559            fidl::encoding::DynamicFlags::empty(),
19560        )
19561    }
19562}
19563
19564#[must_use = "FIDL methods require a response to be sent"]
19565#[derive(Debug)]
19566pub struct SymlinkGetAttrResponder {
19567    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19568    tx_id: u32,
19569}
19570
19571/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19572/// if the responder is dropped without sending a response, so that the client
19573/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19574impl std::ops::Drop for SymlinkGetAttrResponder {
19575    fn drop(&mut self) {
19576        self.control_handle.shutdown();
19577        // Safety: drops once, never accessed again
19578        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19579    }
19580}
19581
19582impl fidl::endpoints::Responder for SymlinkGetAttrResponder {
19583    type ControlHandle = SymlinkControlHandle;
19584
19585    fn control_handle(&self) -> &SymlinkControlHandle {
19586        &self.control_handle
19587    }
19588
19589    fn drop_without_shutdown(mut self) {
19590        // Safety: drops once, never accessed again due to mem::forget
19591        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19592        // Prevent Drop from running (which would shut down the channel)
19593        std::mem::forget(self);
19594    }
19595}
19596
19597impl SymlinkGetAttrResponder {
19598    /// Sends a response to the FIDL transaction.
19599    ///
19600    /// Sets the channel to shutdown if an error occurs.
19601    pub fn send(self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
19602        let _result = self.send_raw(s, attributes);
19603        if _result.is_err() {
19604            self.control_handle.shutdown();
19605        }
19606        self.drop_without_shutdown();
19607        _result
19608    }
19609
19610    /// Similar to "send" but does not shutdown the channel if an error occurs.
19611    pub fn send_no_shutdown_on_err(
19612        self,
19613        mut s: i32,
19614        mut attributes: &NodeAttributes,
19615    ) -> Result<(), fidl::Error> {
19616        let _result = self.send_raw(s, attributes);
19617        self.drop_without_shutdown();
19618        _result
19619    }
19620
19621    fn send_raw(&self, mut s: i32, mut attributes: &NodeAttributes) -> Result<(), fidl::Error> {
19622        self.control_handle.inner.send::<NodeGetAttrResponse>(
19623            (s, attributes),
19624            self.tx_id,
19625            0x78985e216314dafd,
19626            fidl::encoding::DynamicFlags::empty(),
19627        )
19628    }
19629}
19630
19631#[must_use = "FIDL methods require a response to be sent"]
19632#[derive(Debug)]
19633pub struct SymlinkSetAttrResponder {
19634    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19635    tx_id: u32,
19636}
19637
19638/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19639/// if the responder is dropped without sending a response, so that the client
19640/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19641impl std::ops::Drop for SymlinkSetAttrResponder {
19642    fn drop(&mut self) {
19643        self.control_handle.shutdown();
19644        // Safety: drops once, never accessed again
19645        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19646    }
19647}
19648
19649impl fidl::endpoints::Responder for SymlinkSetAttrResponder {
19650    type ControlHandle = SymlinkControlHandle;
19651
19652    fn control_handle(&self) -> &SymlinkControlHandle {
19653        &self.control_handle
19654    }
19655
19656    fn drop_without_shutdown(mut self) {
19657        // Safety: drops once, never accessed again due to mem::forget
19658        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19659        // Prevent Drop from running (which would shut down the channel)
19660        std::mem::forget(self);
19661    }
19662}
19663
19664impl SymlinkSetAttrResponder {
19665    /// Sends a response to the FIDL transaction.
19666    ///
19667    /// Sets the channel to shutdown if an error occurs.
19668    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
19669        let _result = self.send_raw(s);
19670        if _result.is_err() {
19671            self.control_handle.shutdown();
19672        }
19673        self.drop_without_shutdown();
19674        _result
19675    }
19676
19677    /// Similar to "send" but does not shutdown the channel if an error occurs.
19678    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
19679        let _result = self.send_raw(s);
19680        self.drop_without_shutdown();
19681        _result
19682    }
19683
19684    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
19685        self.control_handle.inner.send::<NodeSetAttrResponse>(
19686            (s,),
19687            self.tx_id,
19688            0x4186c0f40d938f46,
19689            fidl::encoding::DynamicFlags::empty(),
19690        )
19691    }
19692}
19693
19694#[must_use = "FIDL methods require a response to be sent"]
19695#[derive(Debug)]
19696pub struct SymlinkDeprecatedGetFlagsResponder {
19697    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19698    tx_id: u32,
19699}
19700
19701/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19702/// if the responder is dropped without sending a response, so that the client
19703/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19704impl std::ops::Drop for SymlinkDeprecatedGetFlagsResponder {
19705    fn drop(&mut self) {
19706        self.control_handle.shutdown();
19707        // Safety: drops once, never accessed again
19708        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19709    }
19710}
19711
19712impl fidl::endpoints::Responder for SymlinkDeprecatedGetFlagsResponder {
19713    type ControlHandle = SymlinkControlHandle;
19714
19715    fn control_handle(&self) -> &SymlinkControlHandle {
19716        &self.control_handle
19717    }
19718
19719    fn drop_without_shutdown(mut self) {
19720        // Safety: drops once, never accessed again due to mem::forget
19721        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19722        // Prevent Drop from running (which would shut down the channel)
19723        std::mem::forget(self);
19724    }
19725}
19726
19727impl SymlinkDeprecatedGetFlagsResponder {
19728    /// Sends a response to the FIDL transaction.
19729    ///
19730    /// Sets the channel to shutdown if an error occurs.
19731    pub fn send(self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
19732        let _result = self.send_raw(s, flags);
19733        if _result.is_err() {
19734            self.control_handle.shutdown();
19735        }
19736        self.drop_without_shutdown();
19737        _result
19738    }
19739
19740    /// Similar to "send" but does not shutdown the channel if an error occurs.
19741    pub fn send_no_shutdown_on_err(
19742        self,
19743        mut s: i32,
19744        mut flags: OpenFlags,
19745    ) -> Result<(), fidl::Error> {
19746        let _result = self.send_raw(s, flags);
19747        self.drop_without_shutdown();
19748        _result
19749    }
19750
19751    fn send_raw(&self, mut s: i32, mut flags: OpenFlags) -> Result<(), fidl::Error> {
19752        self.control_handle.inner.send::<NodeDeprecatedGetFlagsResponse>(
19753            (s, flags),
19754            self.tx_id,
19755            0x5b88fffb8eda3aa1,
19756            fidl::encoding::DynamicFlags::empty(),
19757        )
19758    }
19759}
19760
19761#[must_use = "FIDL methods require a response to be sent"]
19762#[derive(Debug)]
19763pub struct SymlinkDeprecatedSetFlagsResponder {
19764    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19765    tx_id: u32,
19766}
19767
19768/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19769/// if the responder is dropped without sending a response, so that the client
19770/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19771impl std::ops::Drop for SymlinkDeprecatedSetFlagsResponder {
19772    fn drop(&mut self) {
19773        self.control_handle.shutdown();
19774        // Safety: drops once, never accessed again
19775        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19776    }
19777}
19778
19779impl fidl::endpoints::Responder for SymlinkDeprecatedSetFlagsResponder {
19780    type ControlHandle = SymlinkControlHandle;
19781
19782    fn control_handle(&self) -> &SymlinkControlHandle {
19783        &self.control_handle
19784    }
19785
19786    fn drop_without_shutdown(mut self) {
19787        // Safety: drops once, never accessed again due to mem::forget
19788        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19789        // Prevent Drop from running (which would shut down the channel)
19790        std::mem::forget(self);
19791    }
19792}
19793
19794impl SymlinkDeprecatedSetFlagsResponder {
19795    /// Sends a response to the FIDL transaction.
19796    ///
19797    /// Sets the channel to shutdown if an error occurs.
19798    pub fn send(self, mut s: i32) -> Result<(), fidl::Error> {
19799        let _result = self.send_raw(s);
19800        if _result.is_err() {
19801            self.control_handle.shutdown();
19802        }
19803        self.drop_without_shutdown();
19804        _result
19805    }
19806
19807    /// Similar to "send" but does not shutdown the channel if an error occurs.
19808    pub fn send_no_shutdown_on_err(self, mut s: i32) -> Result<(), fidl::Error> {
19809        let _result = self.send_raw(s);
19810        self.drop_without_shutdown();
19811        _result
19812    }
19813
19814    fn send_raw(&self, mut s: i32) -> Result<(), fidl::Error> {
19815        self.control_handle.inner.send::<NodeDeprecatedSetFlagsResponse>(
19816            (s,),
19817            self.tx_id,
19818            0x5295b76c71fde733,
19819            fidl::encoding::DynamicFlags::empty(),
19820        )
19821    }
19822}
19823
19824#[must_use = "FIDL methods require a response to be sent"]
19825#[derive(Debug)]
19826pub struct SymlinkGetFlagsResponder {
19827    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19828    tx_id: u32,
19829}
19830
19831/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19832/// if the responder is dropped without sending a response, so that the client
19833/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19834impl std::ops::Drop for SymlinkGetFlagsResponder {
19835    fn drop(&mut self) {
19836        self.control_handle.shutdown();
19837        // Safety: drops once, never accessed again
19838        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19839    }
19840}
19841
19842impl fidl::endpoints::Responder for SymlinkGetFlagsResponder {
19843    type ControlHandle = SymlinkControlHandle;
19844
19845    fn control_handle(&self) -> &SymlinkControlHandle {
19846        &self.control_handle
19847    }
19848
19849    fn drop_without_shutdown(mut self) {
19850        // Safety: drops once, never accessed again due to mem::forget
19851        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19852        // Prevent Drop from running (which would shut down the channel)
19853        std::mem::forget(self);
19854    }
19855}
19856
19857impl SymlinkGetFlagsResponder {
19858    /// Sends a response to the FIDL transaction.
19859    ///
19860    /// Sets the channel to shutdown if an error occurs.
19861    pub fn send(self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
19862        let _result = self.send_raw(result);
19863        if _result.is_err() {
19864            self.control_handle.shutdown();
19865        }
19866        self.drop_without_shutdown();
19867        _result
19868    }
19869
19870    /// Similar to "send" but does not shutdown the channel if an error occurs.
19871    pub fn send_no_shutdown_on_err(
19872        self,
19873        mut result: Result<Flags, i32>,
19874    ) -> Result<(), fidl::Error> {
19875        let _result = self.send_raw(result);
19876        self.drop_without_shutdown();
19877        _result
19878    }
19879
19880    fn send_raw(&self, mut result: Result<Flags, i32>) -> Result<(), fidl::Error> {
19881        self.control_handle
19882            .inner
19883            .send::<fidl::encoding::FlexibleResultType<NodeGetFlagsResponse, i32>>(
19884                fidl::encoding::FlexibleResult::new(result.map(|flags| (flags,))),
19885                self.tx_id,
19886                0x176eb318f64ec23,
19887                fidl::encoding::DynamicFlags::FLEXIBLE,
19888            )
19889    }
19890}
19891
19892#[must_use = "FIDL methods require a response to be sent"]
19893#[derive(Debug)]
19894pub struct SymlinkSetFlagsResponder {
19895    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19896    tx_id: u32,
19897}
19898
19899/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19900/// if the responder is dropped without sending a response, so that the client
19901/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19902impl std::ops::Drop for SymlinkSetFlagsResponder {
19903    fn drop(&mut self) {
19904        self.control_handle.shutdown();
19905        // Safety: drops once, never accessed again
19906        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19907    }
19908}
19909
19910impl fidl::endpoints::Responder for SymlinkSetFlagsResponder {
19911    type ControlHandle = SymlinkControlHandle;
19912
19913    fn control_handle(&self) -> &SymlinkControlHandle {
19914        &self.control_handle
19915    }
19916
19917    fn drop_without_shutdown(mut self) {
19918        // Safety: drops once, never accessed again due to mem::forget
19919        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19920        // Prevent Drop from running (which would shut down the channel)
19921        std::mem::forget(self);
19922    }
19923}
19924
19925impl SymlinkSetFlagsResponder {
19926    /// Sends a response to the FIDL transaction.
19927    ///
19928    /// Sets the channel to shutdown if an error occurs.
19929    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19930        let _result = self.send_raw(result);
19931        if _result.is_err() {
19932            self.control_handle.shutdown();
19933        }
19934        self.drop_without_shutdown();
19935        _result
19936    }
19937
19938    /// Similar to "send" but does not shutdown the channel if an error occurs.
19939    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19940        let _result = self.send_raw(result);
19941        self.drop_without_shutdown();
19942        _result
19943    }
19944
19945    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
19946        self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
19947            fidl::encoding::EmptyStruct,
19948            i32,
19949        >>(
19950            fidl::encoding::FlexibleResult::new(result),
19951            self.tx_id,
19952            0x55a8028685791ea8,
19953            fidl::encoding::DynamicFlags::FLEXIBLE,
19954        )
19955    }
19956}
19957
19958#[must_use = "FIDL methods require a response to be sent"]
19959#[derive(Debug)]
19960pub struct SymlinkQueryFilesystemResponder {
19961    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
19962    tx_id: u32,
19963}
19964
19965/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
19966/// if the responder is dropped without sending a response, so that the client
19967/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
19968impl std::ops::Drop for SymlinkQueryFilesystemResponder {
19969    fn drop(&mut self) {
19970        self.control_handle.shutdown();
19971        // Safety: drops once, never accessed again
19972        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19973    }
19974}
19975
19976impl fidl::endpoints::Responder for SymlinkQueryFilesystemResponder {
19977    type ControlHandle = SymlinkControlHandle;
19978
19979    fn control_handle(&self) -> &SymlinkControlHandle {
19980        &self.control_handle
19981    }
19982
19983    fn drop_without_shutdown(mut self) {
19984        // Safety: drops once, never accessed again due to mem::forget
19985        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19986        // Prevent Drop from running (which would shut down the channel)
19987        std::mem::forget(self);
19988    }
19989}
19990
19991impl SymlinkQueryFilesystemResponder {
19992    /// Sends a response to the FIDL transaction.
19993    ///
19994    /// Sets the channel to shutdown if an error occurs.
19995    pub fn send(self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
19996        let _result = self.send_raw(s, info);
19997        if _result.is_err() {
19998            self.control_handle.shutdown();
19999        }
20000        self.drop_without_shutdown();
20001        _result
20002    }
20003
20004    /// Similar to "send" but does not shutdown the channel if an error occurs.
20005    pub fn send_no_shutdown_on_err(
20006        self,
20007        mut s: i32,
20008        mut info: Option<&FilesystemInfo>,
20009    ) -> Result<(), fidl::Error> {
20010        let _result = self.send_raw(s, info);
20011        self.drop_without_shutdown();
20012        _result
20013    }
20014
20015    fn send_raw(&self, mut s: i32, mut info: Option<&FilesystemInfo>) -> Result<(), fidl::Error> {
20016        self.control_handle.inner.send::<NodeQueryFilesystemResponse>(
20017            (s, info),
20018            self.tx_id,
20019            0x6f344a1c6b0a0610,
20020            fidl::encoding::DynamicFlags::empty(),
20021        )
20022    }
20023}
20024
20025#[must_use = "FIDL methods require a response to be sent"]
20026#[derive(Debug)]
20027pub struct SymlinkGetConnectionInfoResponder {
20028    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20029    tx_id: u32,
20030}
20031
20032/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20033/// if the responder is dropped without sending a response, so that the client
20034/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20035impl std::ops::Drop for SymlinkGetConnectionInfoResponder {
20036    fn drop(&mut self) {
20037        self.control_handle.shutdown();
20038        // Safety: drops once, never accessed again
20039        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20040    }
20041}
20042
20043impl fidl::endpoints::Responder for SymlinkGetConnectionInfoResponder {
20044    type ControlHandle = SymlinkControlHandle;
20045
20046    fn control_handle(&self) -> &SymlinkControlHandle {
20047        &self.control_handle
20048    }
20049
20050    fn drop_without_shutdown(mut self) {
20051        // Safety: drops once, never accessed again due to mem::forget
20052        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20053        // Prevent Drop from running (which would shut down the channel)
20054        std::mem::forget(self);
20055    }
20056}
20057
20058impl SymlinkGetConnectionInfoResponder {
20059    /// Sends a response to the FIDL transaction.
20060    ///
20061    /// Sets the channel to shutdown if an error occurs.
20062    pub fn send(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
20063        let _result = self.send_raw(payload);
20064        if _result.is_err() {
20065            self.control_handle.shutdown();
20066        }
20067        self.drop_without_shutdown();
20068        _result
20069    }
20070
20071    /// Similar to "send" but does not shutdown the channel if an error occurs.
20072    pub fn send_no_shutdown_on_err(self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
20073        let _result = self.send_raw(payload);
20074        self.drop_without_shutdown();
20075        _result
20076    }
20077
20078    fn send_raw(&self, mut payload: ConnectionInfo) -> Result<(), fidl::Error> {
20079        self.control_handle.inner.send::<ConnectionInfo>(
20080            &mut payload,
20081            self.tx_id,
20082            0x584c377c7c0a6d0b,
20083            fidl::encoding::DynamicFlags::empty(),
20084        )
20085    }
20086}
20087
20088#[must_use = "FIDL methods require a response to be sent"]
20089#[derive(Debug)]
20090pub struct SymlinkGetAttributesResponder {
20091    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20092    tx_id: u32,
20093}
20094
20095/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20096/// if the responder is dropped without sending a response, so that the client
20097/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20098impl std::ops::Drop for SymlinkGetAttributesResponder {
20099    fn drop(&mut self) {
20100        self.control_handle.shutdown();
20101        // Safety: drops once, never accessed again
20102        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20103    }
20104}
20105
20106impl fidl::endpoints::Responder for SymlinkGetAttributesResponder {
20107    type ControlHandle = SymlinkControlHandle;
20108
20109    fn control_handle(&self) -> &SymlinkControlHandle {
20110        &self.control_handle
20111    }
20112
20113    fn drop_without_shutdown(mut self) {
20114        // Safety: drops once, never accessed again due to mem::forget
20115        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20116        // Prevent Drop from running (which would shut down the channel)
20117        std::mem::forget(self);
20118    }
20119}
20120
20121impl SymlinkGetAttributesResponder {
20122    /// Sends a response to the FIDL transaction.
20123    ///
20124    /// Sets the channel to shutdown if an error occurs.
20125    pub fn send(
20126        self,
20127        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
20128    ) -> Result<(), fidl::Error> {
20129        let _result = self.send_raw(result);
20130        if _result.is_err() {
20131            self.control_handle.shutdown();
20132        }
20133        self.drop_without_shutdown();
20134        _result
20135    }
20136
20137    /// Similar to "send" but does not shutdown the channel if an error occurs.
20138    pub fn send_no_shutdown_on_err(
20139        self,
20140        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
20141    ) -> Result<(), fidl::Error> {
20142        let _result = self.send_raw(result);
20143        self.drop_without_shutdown();
20144        _result
20145    }
20146
20147    fn send_raw(
20148        &self,
20149        mut result: Result<(&MutableNodeAttributes, &ImmutableNodeAttributes), i32>,
20150    ) -> Result<(), fidl::Error> {
20151        self.control_handle.inner.send::<fidl::encoding::ResultType<NodeAttributes2, i32>>(
20152            result,
20153            self.tx_id,
20154            0x3d4396a638ea053b,
20155            fidl::encoding::DynamicFlags::empty(),
20156        )
20157    }
20158}
20159
20160#[must_use = "FIDL methods require a response to be sent"]
20161#[derive(Debug)]
20162pub struct SymlinkUpdateAttributesResponder {
20163    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20164    tx_id: u32,
20165}
20166
20167/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20168/// if the responder is dropped without sending a response, so that the client
20169/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20170impl std::ops::Drop for SymlinkUpdateAttributesResponder {
20171    fn drop(&mut self) {
20172        self.control_handle.shutdown();
20173        // Safety: drops once, never accessed again
20174        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20175    }
20176}
20177
20178impl fidl::endpoints::Responder for SymlinkUpdateAttributesResponder {
20179    type ControlHandle = SymlinkControlHandle;
20180
20181    fn control_handle(&self) -> &SymlinkControlHandle {
20182        &self.control_handle
20183    }
20184
20185    fn drop_without_shutdown(mut self) {
20186        // Safety: drops once, never accessed again due to mem::forget
20187        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20188        // Prevent Drop from running (which would shut down the channel)
20189        std::mem::forget(self);
20190    }
20191}
20192
20193impl SymlinkUpdateAttributesResponder {
20194    /// Sends a response to the FIDL transaction.
20195    ///
20196    /// Sets the channel to shutdown if an error occurs.
20197    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20198        let _result = self.send_raw(result);
20199        if _result.is_err() {
20200            self.control_handle.shutdown();
20201        }
20202        self.drop_without_shutdown();
20203        _result
20204    }
20205
20206    /// Similar to "send" but does not shutdown the channel if an error occurs.
20207    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20208        let _result = self.send_raw(result);
20209        self.drop_without_shutdown();
20210        _result
20211    }
20212
20213    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20214        self.control_handle
20215            .inner
20216            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
20217                result,
20218                self.tx_id,
20219                0x3308c1da5a89bf08,
20220                fidl::encoding::DynamicFlags::empty(),
20221            )
20222    }
20223}
20224
20225#[must_use = "FIDL methods require a response to be sent"]
20226#[derive(Debug)]
20227pub struct SymlinkSyncResponder {
20228    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20229    tx_id: u32,
20230}
20231
20232/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20233/// if the responder is dropped without sending a response, so that the client
20234/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20235impl std::ops::Drop for SymlinkSyncResponder {
20236    fn drop(&mut self) {
20237        self.control_handle.shutdown();
20238        // Safety: drops once, never accessed again
20239        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20240    }
20241}
20242
20243impl fidl::endpoints::Responder for SymlinkSyncResponder {
20244    type ControlHandle = SymlinkControlHandle;
20245
20246    fn control_handle(&self) -> &SymlinkControlHandle {
20247        &self.control_handle
20248    }
20249
20250    fn drop_without_shutdown(mut self) {
20251        // Safety: drops once, never accessed again due to mem::forget
20252        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20253        // Prevent Drop from running (which would shut down the channel)
20254        std::mem::forget(self);
20255    }
20256}
20257
20258impl SymlinkSyncResponder {
20259    /// Sends a response to the FIDL transaction.
20260    ///
20261    /// Sets the channel to shutdown if an error occurs.
20262    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20263        let _result = self.send_raw(result);
20264        if _result.is_err() {
20265            self.control_handle.shutdown();
20266        }
20267        self.drop_without_shutdown();
20268        _result
20269    }
20270
20271    /// Similar to "send" but does not shutdown the channel if an error occurs.
20272    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20273        let _result = self.send_raw(result);
20274        self.drop_without_shutdown();
20275        _result
20276    }
20277
20278    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20279        self.control_handle
20280            .inner
20281            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
20282                result,
20283                self.tx_id,
20284                0x2c5c27ca0ab5dc49,
20285                fidl::encoding::DynamicFlags::empty(),
20286            )
20287    }
20288}
20289
20290#[must_use = "FIDL methods require a response to be sent"]
20291#[derive(Debug)]
20292pub struct SymlinkGetExtendedAttributeResponder {
20293    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20294    tx_id: u32,
20295}
20296
20297/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20298/// if the responder is dropped without sending a response, so that the client
20299/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20300impl std::ops::Drop for SymlinkGetExtendedAttributeResponder {
20301    fn drop(&mut self) {
20302        self.control_handle.shutdown();
20303        // Safety: drops once, never accessed again
20304        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20305    }
20306}
20307
20308impl fidl::endpoints::Responder for SymlinkGetExtendedAttributeResponder {
20309    type ControlHandle = SymlinkControlHandle;
20310
20311    fn control_handle(&self) -> &SymlinkControlHandle {
20312        &self.control_handle
20313    }
20314
20315    fn drop_without_shutdown(mut self) {
20316        // Safety: drops once, never accessed again due to mem::forget
20317        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20318        // Prevent Drop from running (which would shut down the channel)
20319        std::mem::forget(self);
20320    }
20321}
20322
20323impl SymlinkGetExtendedAttributeResponder {
20324    /// Sends a response to the FIDL transaction.
20325    ///
20326    /// Sets the channel to shutdown if an error occurs.
20327    pub fn send(self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
20328        let _result = self.send_raw(result);
20329        if _result.is_err() {
20330            self.control_handle.shutdown();
20331        }
20332        self.drop_without_shutdown();
20333        _result
20334    }
20335
20336    /// Similar to "send" but does not shutdown the channel if an error occurs.
20337    pub fn send_no_shutdown_on_err(
20338        self,
20339        mut result: Result<ExtendedAttributeValue, i32>,
20340    ) -> Result<(), fidl::Error> {
20341        let _result = self.send_raw(result);
20342        self.drop_without_shutdown();
20343        _result
20344    }
20345
20346    fn send_raw(&self, mut result: Result<ExtendedAttributeValue, i32>) -> Result<(), fidl::Error> {
20347        self.control_handle.inner.send::<fidl::encoding::ResultType<ExtendedAttributeValue, i32>>(
20348            result.as_mut().map_err(|e| *e),
20349            self.tx_id,
20350            0x45ffa3ccfdeb76db,
20351            fidl::encoding::DynamicFlags::empty(),
20352        )
20353    }
20354}
20355
20356#[must_use = "FIDL methods require a response to be sent"]
20357#[derive(Debug)]
20358pub struct SymlinkSetExtendedAttributeResponder {
20359    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20360    tx_id: u32,
20361}
20362
20363/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20364/// if the responder is dropped without sending a response, so that the client
20365/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20366impl std::ops::Drop for SymlinkSetExtendedAttributeResponder {
20367    fn drop(&mut self) {
20368        self.control_handle.shutdown();
20369        // Safety: drops once, never accessed again
20370        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20371    }
20372}
20373
20374impl fidl::endpoints::Responder for SymlinkSetExtendedAttributeResponder {
20375    type ControlHandle = SymlinkControlHandle;
20376
20377    fn control_handle(&self) -> &SymlinkControlHandle {
20378        &self.control_handle
20379    }
20380
20381    fn drop_without_shutdown(mut self) {
20382        // Safety: drops once, never accessed again due to mem::forget
20383        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20384        // Prevent Drop from running (which would shut down the channel)
20385        std::mem::forget(self);
20386    }
20387}
20388
20389impl SymlinkSetExtendedAttributeResponder {
20390    /// Sends a response to the FIDL transaction.
20391    ///
20392    /// Sets the channel to shutdown if an error occurs.
20393    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20394        let _result = self.send_raw(result);
20395        if _result.is_err() {
20396            self.control_handle.shutdown();
20397        }
20398        self.drop_without_shutdown();
20399        _result
20400    }
20401
20402    /// Similar to "send" but does not shutdown the channel if an error occurs.
20403    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20404        let _result = self.send_raw(result);
20405        self.drop_without_shutdown();
20406        _result
20407    }
20408
20409    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20410        self.control_handle
20411            .inner
20412            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
20413                result,
20414                self.tx_id,
20415                0x4a951362f681f23c,
20416                fidl::encoding::DynamicFlags::empty(),
20417            )
20418    }
20419}
20420
20421#[must_use = "FIDL methods require a response to be sent"]
20422#[derive(Debug)]
20423pub struct SymlinkRemoveExtendedAttributeResponder {
20424    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20425    tx_id: u32,
20426}
20427
20428/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20429/// if the responder is dropped without sending a response, so that the client
20430/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20431impl std::ops::Drop for SymlinkRemoveExtendedAttributeResponder {
20432    fn drop(&mut self) {
20433        self.control_handle.shutdown();
20434        // Safety: drops once, never accessed again
20435        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20436    }
20437}
20438
20439impl fidl::endpoints::Responder for SymlinkRemoveExtendedAttributeResponder {
20440    type ControlHandle = SymlinkControlHandle;
20441
20442    fn control_handle(&self) -> &SymlinkControlHandle {
20443        &self.control_handle
20444    }
20445
20446    fn drop_without_shutdown(mut self) {
20447        // Safety: drops once, never accessed again due to mem::forget
20448        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20449        // Prevent Drop from running (which would shut down the channel)
20450        std::mem::forget(self);
20451    }
20452}
20453
20454impl SymlinkRemoveExtendedAttributeResponder {
20455    /// Sends a response to the FIDL transaction.
20456    ///
20457    /// Sets the channel to shutdown if an error occurs.
20458    pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20459        let _result = self.send_raw(result);
20460        if _result.is_err() {
20461            self.control_handle.shutdown();
20462        }
20463        self.drop_without_shutdown();
20464        _result
20465    }
20466
20467    /// Similar to "send" but does not shutdown the channel if an error occurs.
20468    pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20469        let _result = self.send_raw(result);
20470        self.drop_without_shutdown();
20471        _result
20472    }
20473
20474    fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
20475        self.control_handle
20476            .inner
20477            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
20478                result,
20479                self.tx_id,
20480                0x7a0b9f3a9bf9032d,
20481                fidl::encoding::DynamicFlags::empty(),
20482            )
20483    }
20484}
20485
20486#[must_use = "FIDL methods require a response to be sent"]
20487#[derive(Debug)]
20488pub struct SymlinkDescribeResponder {
20489    control_handle: std::mem::ManuallyDrop<SymlinkControlHandle>,
20490    tx_id: u32,
20491}
20492
20493/// Set the the channel to be shutdown (see [`SymlinkControlHandle::shutdown`])
20494/// if the responder is dropped without sending a response, so that the client
20495/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
20496impl std::ops::Drop for SymlinkDescribeResponder {
20497    fn drop(&mut self) {
20498        self.control_handle.shutdown();
20499        // Safety: drops once, never accessed again
20500        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20501    }
20502}
20503
20504impl fidl::endpoints::Responder for SymlinkDescribeResponder {
20505    type ControlHandle = SymlinkControlHandle;
20506
20507    fn control_handle(&self) -> &SymlinkControlHandle {
20508        &self.control_handle
20509    }
20510
20511    fn drop_without_shutdown(mut self) {
20512        // Safety: drops once, never accessed again due to mem::forget
20513        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20514        // Prevent Drop from running (which would shut down the channel)
20515        std::mem::forget(self);
20516    }
20517}
20518
20519impl SymlinkDescribeResponder {
20520    /// Sends a response to the FIDL transaction.
20521    ///
20522    /// Sets the channel to shutdown if an error occurs.
20523    pub fn send(self, mut payload: &SymlinkInfo) -> Result<(), fidl::Error> {
20524        let _result = self.send_raw(payload);
20525        if _result.is_err() {
20526            self.control_handle.shutdown();
20527        }
20528        self.drop_without_shutdown();
20529        _result
20530    }
20531
20532    /// Similar to "send" but does not shutdown the channel if an error occurs.
20533    pub fn send_no_shutdown_on_err(self, mut payload: &SymlinkInfo) -> Result<(), fidl::Error> {
20534        let _result = self.send_raw(payload);
20535        self.drop_without_shutdown();
20536        _result
20537    }
20538
20539    fn send_raw(&self, mut payload: &SymlinkInfo) -> Result<(), fidl::Error> {
20540        self.control_handle.inner.send::<fidl::encoding::FlexibleType<SymlinkInfo>>(
20541            fidl::encoding::Flexible::new(payload),
20542            self.tx_id,
20543            0x742c2ea5e89831f3,
20544            fidl::encoding::DynamicFlags::FLEXIBLE,
20545        )
20546    }
20547}
20548
20549#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
20550pub struct WritableMarker;
20551
20552impl fidl::endpoints::ProtocolMarker for WritableMarker {
20553    type Proxy = WritableProxy;
20554    type RequestStream = WritableRequestStream;
20555    #[cfg(target_os = "fuchsia")]
20556    type SynchronousProxy = WritableSynchronousProxy;
20557
20558    const DEBUG_NAME: &'static str = "(anonymous) Writable";
20559}
20560pub type WritableWriteResult = Result<u64, i32>;
20561
20562pub trait WritableProxyInterface: Send + Sync {
20563    type WriteResponseFut: std::future::Future<Output = Result<WritableWriteResult, fidl::Error>>
20564        + Send;
20565    fn r#write(&self, data: &[u8]) -> Self::WriteResponseFut;
20566}
20567#[derive(Debug)]
20568#[cfg(target_os = "fuchsia")]
20569pub struct WritableSynchronousProxy {
20570    client: fidl::client::sync::Client,
20571}
20572
20573#[cfg(target_os = "fuchsia")]
20574impl fidl::endpoints::SynchronousProxy for WritableSynchronousProxy {
20575    type Proxy = WritableProxy;
20576    type Protocol = WritableMarker;
20577
20578    fn from_channel(inner: fidl::Channel) -> Self {
20579        Self::new(inner)
20580    }
20581
20582    fn into_channel(self) -> fidl::Channel {
20583        self.client.into_channel()
20584    }
20585
20586    fn as_channel(&self) -> &fidl::Channel {
20587        self.client.as_channel()
20588    }
20589}
20590
20591#[cfg(target_os = "fuchsia")]
20592impl WritableSynchronousProxy {
20593    pub fn new(channel: fidl::Channel) -> Self {
20594        let protocol_name = <WritableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
20595        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
20596    }
20597
20598    pub fn into_channel(self) -> fidl::Channel {
20599        self.client.into_channel()
20600    }
20601
20602    /// Waits until an event arrives and returns it. It is safe for other
20603    /// threads to make concurrent requests while waiting for an event.
20604    pub fn wait_for_event(
20605        &self,
20606        deadline: zx::MonotonicInstant,
20607    ) -> Result<WritableEvent, fidl::Error> {
20608        WritableEvent::decode(self.client.wait_for_event(deadline)?)
20609    }
20610
20611    /// Writes data at the seek offset.
20612    /// The seek offset is moved forward by the number of bytes written.
20613    /// If the file is in append mode, the seek offset is first set to the end
20614    /// of the file, followed by the write, in one atomic step.
20615    ///
20616    /// The file size may grow if the seek offset plus `data.length` is beyond
20617    /// the current end of file.
20618    ///
20619    /// + request `data` the byte buffer to write to the file.
20620    /// - response `actual_count` the number of bytes written.
20621    ///
20622    /// ## Invariants
20623    ///
20624    /// * The returned `actual_count` will never be greater than `data.length`.
20625    /// * If the server is unable to write all the data due to e.g. not enough
20626    ///   space, `actual_count` may be less than `data.length`.  If no bytes
20627    ///   could be written, an error is returned.
20628    /// * If `data.length` is zero, the server should perform all the checks
20629    ///   ensuring write access without mutating the file and return a
20630    ///   successful write of zero bytes.  The seek offset is still updated if
20631    ///   in append mode.
20632    ///
20633    /// This method requires the [`Rights.WRITE_BYTES`] right.
20634    pub fn r#write(
20635        &self,
20636        mut data: &[u8],
20637        ___deadline: zx::MonotonicInstant,
20638    ) -> Result<WritableWriteResult, fidl::Error> {
20639        let _response = self.client.send_query::<
20640            WritableWriteRequest,
20641            fidl::encoding::ResultType<WritableWriteResponse, i32>,
20642        >(
20643            (data,),
20644            0x6a31437832469f82,
20645            fidl::encoding::DynamicFlags::empty(),
20646            ___deadline,
20647        )?;
20648        Ok(_response.map(|x| x.actual_count))
20649    }
20650}
20651
20652#[cfg(target_os = "fuchsia")]
20653impl From<WritableSynchronousProxy> for zx::Handle {
20654    fn from(value: WritableSynchronousProxy) -> Self {
20655        value.into_channel().into()
20656    }
20657}
20658
20659#[cfg(target_os = "fuchsia")]
20660impl From<fidl::Channel> for WritableSynchronousProxy {
20661    fn from(value: fidl::Channel) -> Self {
20662        Self::new(value)
20663    }
20664}
20665
20666#[derive(Debug, Clone)]
20667pub struct WritableProxy {
20668    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
20669}
20670
20671impl fidl::endpoints::Proxy for WritableProxy {
20672    type Protocol = WritableMarker;
20673
20674    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
20675        Self::new(inner)
20676    }
20677
20678    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
20679        self.client.into_channel().map_err(|client| Self { client })
20680    }
20681
20682    fn as_channel(&self) -> &::fidl::AsyncChannel {
20683        self.client.as_channel()
20684    }
20685}
20686
20687impl WritableProxy {
20688    /// Create a new Proxy for fuchsia.io/Writable.
20689    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
20690        let protocol_name = <WritableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
20691        Self { client: fidl::client::Client::new(channel, protocol_name) }
20692    }
20693
20694    /// Get a Stream of events from the remote end of the protocol.
20695    ///
20696    /// # Panics
20697    ///
20698    /// Panics if the event stream was already taken.
20699    pub fn take_event_stream(&self) -> WritableEventStream {
20700        WritableEventStream { event_receiver: self.client.take_event_receiver() }
20701    }
20702
20703    /// Writes data at the seek offset.
20704    /// The seek offset is moved forward by the number of bytes written.
20705    /// If the file is in append mode, the seek offset is first set to the end
20706    /// of the file, followed by the write, in one atomic step.
20707    ///
20708    /// The file size may grow if the seek offset plus `data.length` is beyond
20709    /// the current end of file.
20710    ///
20711    /// + request `data` the byte buffer to write to the file.
20712    /// - response `actual_count` the number of bytes written.
20713    ///
20714    /// ## Invariants
20715    ///
20716    /// * The returned `actual_count` will never be greater than `data.length`.
20717    /// * If the server is unable to write all the data due to e.g. not enough
20718    ///   space, `actual_count` may be less than `data.length`.  If no bytes
20719    ///   could be written, an error is returned.
20720    /// * If `data.length` is zero, the server should perform all the checks
20721    ///   ensuring write access without mutating the file and return a
20722    ///   successful write of zero bytes.  The seek offset is still updated if
20723    ///   in append mode.
20724    ///
20725    /// This method requires the [`Rights.WRITE_BYTES`] right.
20726    pub fn r#write(
20727        &self,
20728        mut data: &[u8],
20729    ) -> fidl::client::QueryResponseFut<
20730        WritableWriteResult,
20731        fidl::encoding::DefaultFuchsiaResourceDialect,
20732    > {
20733        WritableProxyInterface::r#write(self, data)
20734    }
20735}
20736
20737impl WritableProxyInterface for WritableProxy {
20738    type WriteResponseFut = fidl::client::QueryResponseFut<
20739        WritableWriteResult,
20740        fidl::encoding::DefaultFuchsiaResourceDialect,
20741    >;
20742    fn r#write(&self, mut data: &[u8]) -> Self::WriteResponseFut {
20743        fn _decode(
20744            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
20745        ) -> Result<WritableWriteResult, fidl::Error> {
20746            let _response = fidl::client::decode_transaction_body::<
20747                fidl::encoding::ResultType<WritableWriteResponse, i32>,
20748                fidl::encoding::DefaultFuchsiaResourceDialect,
20749                0x6a31437832469f82,
20750            >(_buf?)?;
20751            Ok(_response.map(|x| x.actual_count))
20752        }
20753        self.client.send_query_and_decode::<WritableWriteRequest, WritableWriteResult>(
20754            (data,),
20755            0x6a31437832469f82,
20756            fidl::encoding::DynamicFlags::empty(),
20757            _decode,
20758        )
20759    }
20760}
20761
20762pub struct WritableEventStream {
20763    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
20764}
20765
20766impl std::marker::Unpin for WritableEventStream {}
20767
20768impl futures::stream::FusedStream for WritableEventStream {
20769    fn is_terminated(&self) -> bool {
20770        self.event_receiver.is_terminated()
20771    }
20772}
20773
20774impl futures::Stream for WritableEventStream {
20775    type Item = Result<WritableEvent, fidl::Error>;
20776
20777    fn poll_next(
20778        mut self: std::pin::Pin<&mut Self>,
20779        cx: &mut std::task::Context<'_>,
20780    ) -> std::task::Poll<Option<Self::Item>> {
20781        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
20782            &mut self.event_receiver,
20783            cx
20784        )?) {
20785            Some(buf) => std::task::Poll::Ready(Some(WritableEvent::decode(buf))),
20786            None => std::task::Poll::Ready(None),
20787        }
20788    }
20789}
20790
20791#[derive(Debug)]
20792pub enum WritableEvent {}
20793
20794impl WritableEvent {
20795    /// Decodes a message buffer as a [`WritableEvent`].
20796    fn decode(
20797        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
20798    ) -> Result<WritableEvent, fidl::Error> {
20799        let (bytes, _handles) = buf.split_mut();
20800        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
20801        debug_assert_eq!(tx_header.tx_id, 0);
20802        match tx_header.ordinal {
20803            _ => Err(fidl::Error::UnknownOrdinal {
20804                ordinal: tx_header.ordinal,
20805                protocol_name: <WritableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
20806            }),
20807        }
20808    }
20809}
20810
20811/// A Stream of incoming requests for fuchsia.io/Writable.
20812pub struct WritableRequestStream {
20813    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
20814    is_terminated: bool,
20815}
20816
20817impl std::marker::Unpin for WritableRequestStream {}
20818
20819impl futures::stream::FusedStream for WritableRequestStream {
20820    fn is_terminated(&self) -> bool {
20821        self.is_terminated
20822    }
20823}
20824
20825impl fidl::endpoints::RequestStream for WritableRequestStream {
20826    type Protocol = WritableMarker;
20827    type ControlHandle = WritableControlHandle;
20828
20829    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
20830        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
20831    }
20832
20833    fn control_handle(&self) -> Self::ControlHandle {
20834        WritableControlHandle { inner: self.inner.clone() }
20835    }
20836
20837    fn into_inner(
20838        self,
20839    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
20840    {
20841        (self.inner, self.is_terminated)
20842    }
20843
20844    fn from_inner(
20845        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
20846        is_terminated: bool,
20847    ) -> Self {
20848        Self { inner, is_terminated }
20849    }
20850}
20851
20852impl futures::Stream for WritableRequestStream {
20853    type Item = Result<WritableRequest, fidl::Error>;
20854
20855    fn poll_next(
20856        mut self: std::pin::Pin<&mut Self>,
20857        cx: &mut std::task::Context<'_>,
20858    ) -> std::task::Poll<Option<Self::Item>> {
20859        let this = &mut *self;
20860        if this.inner.check_shutdown(cx) {
20861            this.is_terminated = true;
20862            return std::task::Poll::Ready(None);
20863        }
20864        if this.is_terminated {
20865            panic!("polled WritableRequestStream after completion");
20866        }
20867        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
20868            |bytes, handles| {
20869                match this.inner.channel().read_etc(cx, bytes, handles) {
20870                    std::task::Poll::Ready(Ok(())) => {}
20871                    std::task::Poll::Pending => return std::task::Poll::Pending,
20872                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
20873                        this.is_terminated = true;
20874                        return std::task::Poll::Ready(None);
20875                    }
20876                    std::task::Poll::Ready(Err(e)) => {
20877                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
20878                            e.into(),
20879                        ))))
20880                    }
20881                }
20882
20883                // A message has been received from the channel
20884                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
20885
20886                std::task::Poll::Ready(Some(match header.ordinal {
20887                    0x6a31437832469f82 => {
20888                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
20889                        let mut req = fidl::new_empty!(
20890                            WritableWriteRequest,
20891                            fidl::encoding::DefaultFuchsiaResourceDialect
20892                        );
20893                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<WritableWriteRequest>(&header, _body_bytes, handles, &mut req)?;
20894                        let control_handle = WritableControlHandle { inner: this.inner.clone() };
20895                        Ok(WritableRequest::Write {
20896                            data: req.data,
20897
20898                            responder: WritableWriteResponder {
20899                                control_handle: std::mem::ManuallyDrop::new(control_handle),
20900                                tx_id: header.tx_id,
20901                            },
20902                        })
20903                    }
20904                    _ => Err(fidl::Error::UnknownOrdinal {
20905                        ordinal: header.ordinal,
20906                        protocol_name:
20907                            <WritableMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
20908                    }),
20909                }))
20910            },
20911        )
20912    }
20913}
20914
20915#[derive(Debug)]
20916pub enum WritableRequest {
20917    /// Writes data at the seek offset.
20918    /// The seek offset is moved forward by the number of bytes written.
20919    /// If the file is in append mode, the seek offset is first set to the end
20920    /// of the file, followed by the write, in one atomic step.
20921    ///
20922    /// The file size may grow if the seek offset plus `data.length` is beyond
20923    /// the current end of file.
20924    ///
20925    /// + request `data` the byte buffer to write to the file.
20926    /// - response `actual_count` the number of bytes written.
20927    ///
20928    /// ## Invariants
20929    ///
20930    /// * The returned `actual_count` will never be greater than `data.length`.
20931    /// * If the server is unable to write all the data due to e.g. not enough
20932    ///   space, `actual_count` may be less than `data.length`.  If no bytes
20933    ///   could be written, an error is returned.
20934    /// * If `data.length` is zero, the server should perform all the checks
20935    ///   ensuring write access without mutating the file and return a
20936    ///   successful write of zero bytes.  The seek offset is still updated if
20937    ///   in append mode.
20938    ///
20939    /// This method requires the [`Rights.WRITE_BYTES`] right.
20940    Write { data: Vec<u8>, responder: WritableWriteResponder },
20941}
20942
20943impl WritableRequest {
20944    #[allow(irrefutable_let_patterns)]
20945    pub fn into_write(self) -> Option<(Vec<u8>, WritableWriteResponder)> {
20946        if let WritableRequest::Write { data, responder } = self {
20947            Some((data, responder))
20948        } else {
20949            None
20950        }
20951    }
20952
20953    /// Name of the method defined in FIDL
20954    pub fn method_name(&self) -> &'static str {
20955        match *self {
20956            WritableRequest::Write { .. } => "write",
20957        }
20958    }
20959}
20960
20961#[derive(Debug, Clone)]
20962pub struct WritableControlHandle {
20963    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
20964}
20965
20966impl fidl::endpoints::ControlHandle for WritableControlHandle {
20967    fn shutdown(&self) {
20968        self.inner.shutdown()
20969    }
20970    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
20971        self.inner.shutdown_with_epitaph(status)
20972    }
20973
20974    fn is_closed(&self) -> bool {
20975        self.inner.channel().is_closed()
20976    }
20977    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
20978        self.inner.channel().on_closed()
20979    }
20980
20981    #[cfg(target_os = "fuchsia")]
20982    fn signal_peer(
20983        &self,
20984        clear_mask: zx::Signals,
20985        set_mask: zx::Signals,
20986    ) -> Result<(), zx_status::Status> {
20987        use fidl::Peered;
20988        self.inner.channel().signal_peer(clear_mask, set_mask)
20989    }
20990}
20991
20992impl WritableControlHandle {}
20993
20994#[must_use = "FIDL methods require a response to be sent"]
20995#[derive(Debug)]
20996pub struct WritableWriteResponder {
20997    control_handle: std::mem::ManuallyDrop<WritableControlHandle>,
20998    tx_id: u32,
20999}
21000
21001/// Set the the channel to be shutdown (see [`WritableControlHandle::shutdown`])
21002/// if the responder is dropped without sending a response, so that the client
21003/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
21004impl std::ops::Drop for WritableWriteResponder {
21005    fn drop(&mut self) {
21006        self.control_handle.shutdown();
21007        // Safety: drops once, never accessed again
21008        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
21009    }
21010}
21011
21012impl fidl::endpoints::Responder for WritableWriteResponder {
21013    type ControlHandle = WritableControlHandle;
21014
21015    fn control_handle(&self) -> &WritableControlHandle {
21016        &self.control_handle
21017    }
21018
21019    fn drop_without_shutdown(mut self) {
21020        // Safety: drops once, never accessed again due to mem::forget
21021        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
21022        // Prevent Drop from running (which would shut down the channel)
21023        std::mem::forget(self);
21024    }
21025}
21026
21027impl WritableWriteResponder {
21028    /// Sends a response to the FIDL transaction.
21029    ///
21030    /// Sets the channel to shutdown if an error occurs.
21031    pub fn send(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
21032        let _result = self.send_raw(result);
21033        if _result.is_err() {
21034            self.control_handle.shutdown();
21035        }
21036        self.drop_without_shutdown();
21037        _result
21038    }
21039
21040    /// Similar to "send" but does not shutdown the channel if an error occurs.
21041    pub fn send_no_shutdown_on_err(self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
21042        let _result = self.send_raw(result);
21043        self.drop_without_shutdown();
21044        _result
21045    }
21046
21047    fn send_raw(&self, mut result: Result<u64, i32>) -> Result<(), fidl::Error> {
21048        self.control_handle.inner.send::<fidl::encoding::ResultType<WritableWriteResponse, i32>>(
21049            result.map(|actual_count| (actual_count,)),
21050            self.tx_id,
21051            0x6a31437832469f82,
21052            fidl::encoding::DynamicFlags::empty(),
21053        )
21054    }
21055}
21056
21057mod internal {
21058    use super::*;
21059
21060    impl fidl::encoding::ResourceTypeMarker for DirectoryCreateSymlinkRequest {
21061        type Borrowed<'a> = &'a mut Self;
21062        fn take_or_borrow<'a>(
21063            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
21064        ) -> Self::Borrowed<'a> {
21065            value
21066        }
21067    }
21068
21069    unsafe impl fidl::encoding::TypeMarker for DirectoryCreateSymlinkRequest {
21070        type Owned = Self;
21071
21072        #[inline(always)]
21073        fn inline_align(_context: fidl::encoding::Context) -> usize {
21074            8
21075        }
21076
21077        #[inline(always)]
21078        fn inline_size(_context: fidl::encoding::Context) -> usize {
21079            40
21080        }
21081    }
21082
21083    unsafe impl
21084        fidl::encoding::Encode<
21085            DirectoryCreateSymlinkRequest,
21086            fidl::encoding::DefaultFuchsiaResourceDialect,
21087        > for &mut DirectoryCreateSymlinkRequest
21088    {
21089        #[inline]
21090        unsafe fn encode(
21091            self,
21092            encoder: &mut fidl::encoding::Encoder<
21093                '_,
21094                fidl::encoding::DefaultFuchsiaResourceDialect,
21095            >,
21096            offset: usize,
21097            _depth: fidl::encoding::Depth,
21098        ) -> fidl::Result<()> {
21099            encoder.debug_check_bounds::<DirectoryCreateSymlinkRequest>(offset);
21100            // Delegate to tuple encoding.
21101            fidl::encoding::Encode::<
21102                DirectoryCreateSymlinkRequest,
21103                fidl::encoding::DefaultFuchsiaResourceDialect,
21104            >::encode(
21105                (
21106                    <fidl::encoding::BoundedString<255> as fidl::encoding::ValueTypeMarker>::borrow(
21107                        &self.name,
21108                    ),
21109                    <fidl::encoding::Vector<u8, 4095> as fidl::encoding::ValueTypeMarker>::borrow(
21110                        &self.target,
21111                    ),
21112                    <fidl::encoding::Optional<
21113                        fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<SymlinkMarker>>,
21114                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
21115                        &mut self.connection
21116                    ),
21117                ),
21118                encoder,
21119                offset,
21120                _depth,
21121            )
21122        }
21123    }
21124    unsafe impl<
21125            T0: fidl::encoding::Encode<
21126                fidl::encoding::BoundedString<255>,
21127                fidl::encoding::DefaultFuchsiaResourceDialect,
21128            >,
21129            T1: fidl::encoding::Encode<
21130                fidl::encoding::Vector<u8, 4095>,
21131                fidl::encoding::DefaultFuchsiaResourceDialect,
21132            >,
21133            T2: fidl::encoding::Encode<
21134                fidl::encoding::Optional<
21135                    fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<SymlinkMarker>>,
21136                >,
21137                fidl::encoding::DefaultFuchsiaResourceDialect,
21138            >,
21139        >
21140        fidl::encoding::Encode<
21141            DirectoryCreateSymlinkRequest,
21142            fidl::encoding::DefaultFuchsiaResourceDialect,
21143        > for (T0, T1, T2)
21144    {
21145        #[inline]
21146        unsafe fn encode(
21147            self,
21148            encoder: &mut fidl::encoding::Encoder<
21149                '_,
21150                fidl::encoding::DefaultFuchsiaResourceDialect,
21151            >,
21152            offset: usize,
21153            depth: fidl::encoding::Depth,
21154        ) -> fidl::Result<()> {
21155            encoder.debug_check_bounds::<DirectoryCreateSymlinkRequest>(offset);
21156            // Zero out padding regions. There's no need to apply masks
21157            // because the unmasked parts will be overwritten by fields.
21158            unsafe {
21159                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(32);
21160                (ptr as *mut u64).write_unaligned(0);
21161            }
21162            // Write the fields.
21163            self.0.encode(encoder, offset + 0, depth)?;
21164            self.1.encode(encoder, offset + 16, depth)?;
21165            self.2.encode(encoder, offset + 32, depth)?;
21166            Ok(())
21167        }
21168    }
21169
21170    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
21171        for DirectoryCreateSymlinkRequest
21172    {
21173        #[inline(always)]
21174        fn new_empty() -> Self {
21175            Self {
21176                name: fidl::new_empty!(
21177                    fidl::encoding::BoundedString<255>,
21178                    fidl::encoding::DefaultFuchsiaResourceDialect
21179                ),
21180                target: fidl::new_empty!(fidl::encoding::Vector<u8, 4095>, fidl::encoding::DefaultFuchsiaResourceDialect),
21181                connection: fidl::new_empty!(
21182                    fidl::encoding::Optional<
21183                        fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<SymlinkMarker>>,
21184                    >,
21185                    fidl::encoding::DefaultFuchsiaResourceDialect
21186                ),
21187            }
21188        }
21189
21190        #[inline]
21191        unsafe fn decode(
21192            &mut self,
21193            decoder: &mut fidl::encoding::Decoder<
21194                '_,
21195                fidl::encoding::DefaultFuchsiaResourceDialect,
21196            >,
21197            offset: usize,
21198            _depth: fidl::encoding::Depth,
21199        ) -> fidl::Result<()> {
21200            decoder.debug_check_bounds::<Self>(offset);
21201            // Verify that padding bytes are zero.
21202            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(32) };
21203            let padval = unsafe { (ptr as *const u64).read_unaligned() };
21204            let mask = 0xffffffff00000000u64;
21205            let maskedval = padval & mask;
21206            if maskedval != 0 {
21207                return Err(fidl::Error::NonZeroPadding {
21208                    padding_start: offset + 32 + ((mask as u64).trailing_zeros() / 8) as usize,
21209                });
21210            }
21211            fidl::decode!(
21212                fidl::encoding::BoundedString<255>,
21213                fidl::encoding::DefaultFuchsiaResourceDialect,
21214                &mut self.name,
21215                decoder,
21216                offset + 0,
21217                _depth
21218            )?;
21219            fidl::decode!(fidl::encoding::Vector<u8, 4095>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.target, decoder, offset + 16, _depth)?;
21220            fidl::decode!(
21221                fidl::encoding::Optional<
21222                    fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<SymlinkMarker>>,
21223                >,
21224                fidl::encoding::DefaultFuchsiaResourceDialect,
21225                &mut self.connection,
21226                decoder,
21227                offset + 32,
21228                _depth
21229            )?;
21230            Ok(())
21231        }
21232    }
21233
21234    impl fidl::encoding::ResourceTypeMarker for DirectoryDeprecatedOpenRequest {
21235        type Borrowed<'a> = &'a mut Self;
21236        fn take_or_borrow<'a>(
21237            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
21238        ) -> Self::Borrowed<'a> {
21239            value
21240        }
21241    }
21242
21243    unsafe impl fidl::encoding::TypeMarker for DirectoryDeprecatedOpenRequest {
21244        type Owned = Self;
21245
21246        #[inline(always)]
21247        fn inline_align(_context: fidl::encoding::Context) -> usize {
21248            8
21249        }
21250
21251        #[inline(always)]
21252        fn inline_size(_context: fidl::encoding::Context) -> usize {
21253            32
21254        }
21255    }
21256
21257    unsafe impl
21258        fidl::encoding::Encode<
21259            DirectoryDeprecatedOpenRequest,
21260            fidl::encoding::DefaultFuchsiaResourceDialect,
21261        > for &mut DirectoryDeprecatedOpenRequest
21262    {
21263        #[inline]
21264        unsafe fn encode(
21265            self,
21266            encoder: &mut fidl::encoding::Encoder<
21267                '_,
21268                fidl::encoding::DefaultFuchsiaResourceDialect,
21269            >,
21270            offset: usize,
21271            _depth: fidl::encoding::Depth,
21272        ) -> fidl::Result<()> {
21273            encoder.debug_check_bounds::<DirectoryDeprecatedOpenRequest>(offset);
21274            // Delegate to tuple encoding.
21275            fidl::encoding::Encode::<DirectoryDeprecatedOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
21276                (
21277                    <OpenFlags as fidl::encoding::ValueTypeMarker>::borrow(&self.flags),
21278                    <ModeType as fidl::encoding::ValueTypeMarker>::borrow(&self.mode),
21279                    <fidl::encoding::BoundedString<4095> as fidl::encoding::ValueTypeMarker>::borrow(&self.path),
21280                    <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.object),
21281                ),
21282                encoder, offset, _depth
21283            )
21284        }
21285    }
21286    unsafe impl<
21287            T0: fidl::encoding::Encode<OpenFlags, fidl::encoding::DefaultFuchsiaResourceDialect>,
21288            T1: fidl::encoding::Encode<ModeType, fidl::encoding::DefaultFuchsiaResourceDialect>,
21289            T2: fidl::encoding::Encode<
21290                fidl::encoding::BoundedString<4095>,
21291                fidl::encoding::DefaultFuchsiaResourceDialect,
21292            >,
21293            T3: fidl::encoding::Encode<
21294                fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>>,
21295                fidl::encoding::DefaultFuchsiaResourceDialect,
21296            >,
21297        >
21298        fidl::encoding::Encode<
21299            DirectoryDeprecatedOpenRequest,
21300            fidl::encoding::DefaultFuchsiaResourceDialect,
21301        > for (T0, T1, T2, T3)
21302    {
21303        #[inline]
21304        unsafe fn encode(
21305            self,
21306            encoder: &mut fidl::encoding::Encoder<
21307                '_,
21308                fidl::encoding::DefaultFuchsiaResourceDialect,
21309            >,
21310            offset: usize,
21311            depth: fidl::encoding::Depth,
21312        ) -> fidl::Result<()> {
21313            encoder.debug_check_bounds::<DirectoryDeprecatedOpenRequest>(offset);
21314            // Zero out padding regions. There's no need to apply masks
21315            // because the unmasked parts will be overwritten by fields.
21316            unsafe {
21317                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(24);
21318                (ptr as *mut u64).write_unaligned(0);
21319            }
21320            // Write the fields.
21321            self.0.encode(encoder, offset + 0, depth)?;
21322            self.1.encode(encoder, offset + 4, depth)?;
21323            self.2.encode(encoder, offset + 8, depth)?;
21324            self.3.encode(encoder, offset + 24, depth)?;
21325            Ok(())
21326        }
21327    }
21328
21329    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
21330        for DirectoryDeprecatedOpenRequest
21331    {
21332        #[inline(always)]
21333        fn new_empty() -> Self {
21334            Self {
21335                flags: fidl::new_empty!(OpenFlags, fidl::encoding::DefaultFuchsiaResourceDialect),
21336                mode: fidl::new_empty!(ModeType, fidl::encoding::DefaultFuchsiaResourceDialect),
21337                path: fidl::new_empty!(
21338                    fidl::encoding::BoundedString<4095>,
21339                    fidl::encoding::DefaultFuchsiaResourceDialect
21340                ),
21341                object: fidl::new_empty!(
21342                    fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>>,
21343                    fidl::encoding::DefaultFuchsiaResourceDialect
21344                ),
21345            }
21346        }
21347
21348        #[inline]
21349        unsafe fn decode(
21350            &mut self,
21351            decoder: &mut fidl::encoding::Decoder<
21352                '_,
21353                fidl::encoding::DefaultFuchsiaResourceDialect,
21354            >,
21355            offset: usize,
21356            _depth: fidl::encoding::Depth,
21357        ) -> fidl::Result<()> {
21358            decoder.debug_check_bounds::<Self>(offset);
21359            // Verify that padding bytes are zero.
21360            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(24) };
21361            let padval = unsafe { (ptr as *const u64).read_unaligned() };
21362            let mask = 0xffffffff00000000u64;
21363            let maskedval = padval & mask;
21364            if maskedval != 0 {
21365                return Err(fidl::Error::NonZeroPadding {
21366                    padding_start: offset + 24 + ((mask as u64).trailing_zeros() / 8) as usize,
21367                });
21368            }
21369            fidl::decode!(
21370                OpenFlags,
21371                fidl::encoding::DefaultFuchsiaResourceDialect,
21372                &mut self.flags,
21373                decoder,
21374                offset + 0,
21375                _depth
21376            )?;
21377            fidl::decode!(
21378                ModeType,
21379                fidl::encoding::DefaultFuchsiaResourceDialect,
21380                &mut self.mode,
21381                decoder,
21382                offset + 4,
21383                _depth
21384            )?;
21385            fidl::decode!(
21386                fidl::encoding::BoundedString<4095>,
21387                fidl::encoding::DefaultFuchsiaResourceDialect,
21388                &mut self.path,
21389                decoder,
21390                offset + 8,
21391                _depth
21392            )?;
21393            fidl::decode!(
21394                fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>>,
21395                fidl::encoding::DefaultFuchsiaResourceDialect,
21396                &mut self.object,
21397                decoder,
21398                offset + 24,
21399                _depth
21400            )?;
21401            Ok(())
21402        }
21403    }
21404
21405    impl fidl::encoding::ResourceTypeMarker for DirectoryGetTokenResponse {
21406        type Borrowed<'a> = &'a mut Self;
21407        fn take_or_borrow<'a>(
21408            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
21409        ) -> Self::Borrowed<'a> {
21410            value
21411        }
21412    }
21413
21414    unsafe impl fidl::encoding::TypeMarker for DirectoryGetTokenResponse {
21415        type Owned = Self;
21416
21417        #[inline(always)]
21418        fn inline_align(_context: fidl::encoding::Context) -> usize {
21419            4
21420        }
21421
21422        #[inline(always)]
21423        fn inline_size(_context: fidl::encoding::Context) -> usize {
21424            8
21425        }
21426    }
21427
21428    unsafe impl
21429        fidl::encoding::Encode<
21430            DirectoryGetTokenResponse,
21431            fidl::encoding::DefaultFuchsiaResourceDialect,
21432        > for &mut DirectoryGetTokenResponse
21433    {
21434        #[inline]
21435        unsafe fn encode(
21436            self,
21437            encoder: &mut fidl::encoding::Encoder<
21438                '_,
21439                fidl::encoding::DefaultFuchsiaResourceDialect,
21440            >,
21441            offset: usize,
21442            _depth: fidl::encoding::Depth,
21443        ) -> fidl::Result<()> {
21444            encoder.debug_check_bounds::<DirectoryGetTokenResponse>(offset);
21445            // Delegate to tuple encoding.
21446            fidl::encoding::Encode::<
21447                DirectoryGetTokenResponse,
21448                fidl::encoding::DefaultFuchsiaResourceDialect,
21449            >::encode(
21450                (
21451                    <i32 as fidl::encoding::ValueTypeMarker>::borrow(&self.s),
21452                    <fidl::encoding::Optional<
21453                        fidl::encoding::HandleType<
21454                            fidl::Handle,
21455                            { fidl::ObjectType::NONE.into_raw() },
21456                            2147483648,
21457                        >,
21458                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
21459                        &mut self.token
21460                    ),
21461                ),
21462                encoder,
21463                offset,
21464                _depth,
21465            )
21466        }
21467    }
21468    unsafe impl<
21469            T0: fidl::encoding::Encode<i32, fidl::encoding::DefaultFuchsiaResourceDialect>,
21470            T1: fidl::encoding::Encode<
21471                fidl::encoding::Optional<
21472                    fidl::encoding::HandleType<
21473                        fidl::Handle,
21474                        { fidl::ObjectType::NONE.into_raw() },
21475                        2147483648,
21476                    >,
21477                >,
21478                fidl::encoding::DefaultFuchsiaResourceDialect,
21479            >,
21480        >
21481        fidl::encoding::Encode<
21482            DirectoryGetTokenResponse,
21483            fidl::encoding::DefaultFuchsiaResourceDialect,
21484        > for (T0, T1)
21485    {
21486        #[inline]
21487        unsafe fn encode(
21488            self,
21489            encoder: &mut fidl::encoding::Encoder<
21490                '_,
21491                fidl::encoding::DefaultFuchsiaResourceDialect,
21492            >,
21493            offset: usize,
21494            depth: fidl::encoding::Depth,
21495        ) -> fidl::Result<()> {
21496            encoder.debug_check_bounds::<DirectoryGetTokenResponse>(offset);
21497            // Zero out padding regions. There's no need to apply masks
21498            // because the unmasked parts will be overwritten by fields.
21499            // Write the fields.
21500            self.0.encode(encoder, offset + 0, depth)?;
21501            self.1.encode(encoder, offset + 4, depth)?;
21502            Ok(())
21503        }
21504    }
21505
21506    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
21507        for DirectoryGetTokenResponse
21508    {
21509        #[inline(always)]
21510        fn new_empty() -> Self {
21511            Self {
21512                s: fidl::new_empty!(i32, fidl::encoding::DefaultFuchsiaResourceDialect),
21513                token: fidl::new_empty!(
21514                    fidl::encoding::Optional<
21515                        fidl::encoding::HandleType<
21516                            fidl::Handle,
21517                            { fidl::ObjectType::NONE.into_raw() },
21518                            2147483648,
21519                        >,
21520                    >,
21521                    fidl::encoding::DefaultFuchsiaResourceDialect
21522                ),
21523            }
21524        }
21525
21526        #[inline]
21527        unsafe fn decode(
21528            &mut self,
21529            decoder: &mut fidl::encoding::Decoder<
21530                '_,
21531                fidl::encoding::DefaultFuchsiaResourceDialect,
21532            >,
21533            offset: usize,
21534            _depth: fidl::encoding::Depth,
21535        ) -> fidl::Result<()> {
21536            decoder.debug_check_bounds::<Self>(offset);
21537            // Verify that padding bytes are zero.
21538            fidl::decode!(
21539                i32,
21540                fidl::encoding::DefaultFuchsiaResourceDialect,
21541                &mut self.s,
21542                decoder,
21543                offset + 0,
21544                _depth
21545            )?;
21546            fidl::decode!(
21547                fidl::encoding::Optional<
21548                    fidl::encoding::HandleType<
21549                        fidl::Handle,
21550                        { fidl::ObjectType::NONE.into_raw() },
21551                        2147483648,
21552                    >,
21553                >,
21554                fidl::encoding::DefaultFuchsiaResourceDialect,
21555                &mut self.token,
21556                decoder,
21557                offset + 4,
21558                _depth
21559            )?;
21560            Ok(())
21561        }
21562    }
21563
21564    impl fidl::encoding::ResourceTypeMarker for DirectoryLinkRequest {
21565        type Borrowed<'a> = &'a mut Self;
21566        fn take_or_borrow<'a>(
21567            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
21568        ) -> Self::Borrowed<'a> {
21569            value
21570        }
21571    }
21572
21573    unsafe impl fidl::encoding::TypeMarker for DirectoryLinkRequest {
21574        type Owned = Self;
21575
21576        #[inline(always)]
21577        fn inline_align(_context: fidl::encoding::Context) -> usize {
21578            8
21579        }
21580
21581        #[inline(always)]
21582        fn inline_size(_context: fidl::encoding::Context) -> usize {
21583            40
21584        }
21585    }
21586
21587    unsafe impl
21588        fidl::encoding::Encode<DirectoryLinkRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
21589        for &mut DirectoryLinkRequest
21590    {
21591        #[inline]
21592        unsafe fn encode(
21593            self,
21594            encoder: &mut fidl::encoding::Encoder<
21595                '_,
21596                fidl::encoding::DefaultFuchsiaResourceDialect,
21597            >,
21598            offset: usize,
21599            _depth: fidl::encoding::Depth,
21600        ) -> fidl::Result<()> {
21601            encoder.debug_check_bounds::<DirectoryLinkRequest>(offset);
21602            // Delegate to tuple encoding.
21603            fidl::encoding::Encode::<
21604                DirectoryLinkRequest,
21605                fidl::encoding::DefaultFuchsiaResourceDialect,
21606            >::encode(
21607                (
21608                    <fidl::encoding::BoundedString<255> as fidl::encoding::ValueTypeMarker>::borrow(
21609                        &self.src,
21610                    ),
21611                    <fidl::encoding::HandleType<
21612                        fidl::Handle,
21613                        { fidl::ObjectType::NONE.into_raw() },
21614                        2147483648,
21615                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
21616                        &mut self.dst_parent_token,
21617                    ),
21618                    <fidl::encoding::BoundedString<255> as fidl::encoding::ValueTypeMarker>::borrow(
21619                        &self.dst,
21620                    ),
21621                ),
21622                encoder,
21623                offset,
21624                _depth,
21625            )
21626        }
21627    }
21628    unsafe impl<
21629            T0: fidl::encoding::Encode<
21630                fidl::encoding::BoundedString<255>,
21631                fidl::encoding::DefaultFuchsiaResourceDialect,
21632            >,
21633            T1: fidl::encoding::Encode<
21634                fidl::encoding::HandleType<
21635                    fidl::Handle,
21636                    { fidl::ObjectType::NONE.into_raw() },
21637                    2147483648,
21638                >,
21639                fidl::encoding::DefaultFuchsiaResourceDialect,
21640            >,
21641            T2: fidl::encoding::Encode<
21642                fidl::encoding::BoundedString<255>,
21643                fidl::encoding::DefaultFuchsiaResourceDialect,
21644            >,
21645        >
21646        fidl::encoding::Encode<DirectoryLinkRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
21647        for (T0, T1, T2)
21648    {
21649        #[inline]
21650        unsafe fn encode(
21651            self,
21652            encoder: &mut fidl::encoding::Encoder<
21653                '_,
21654                fidl::encoding::DefaultFuchsiaResourceDialect,
21655            >,
21656            offset: usize,
21657            depth: fidl::encoding::Depth,
21658        ) -> fidl::Result<()> {
21659            encoder.debug_check_bounds::<DirectoryLinkRequest>(offset);
21660            // Zero out padding regions. There's no need to apply masks
21661            // because the unmasked parts will be overwritten by fields.
21662            unsafe {
21663                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
21664                (ptr as *mut u64).write_unaligned(0);
21665            }
21666            // Write the fields.
21667            self.0.encode(encoder, offset + 0, depth)?;
21668            self.1.encode(encoder, offset + 16, depth)?;
21669            self.2.encode(encoder, offset + 24, depth)?;
21670            Ok(())
21671        }
21672    }
21673
21674    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
21675        for DirectoryLinkRequest
21676    {
21677        #[inline(always)]
21678        fn new_empty() -> Self {
21679            Self {
21680                src: fidl::new_empty!(
21681                    fidl::encoding::BoundedString<255>,
21682                    fidl::encoding::DefaultFuchsiaResourceDialect
21683                ),
21684                dst_parent_token: fidl::new_empty!(fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
21685                dst: fidl::new_empty!(
21686                    fidl::encoding::BoundedString<255>,
21687                    fidl::encoding::DefaultFuchsiaResourceDialect
21688                ),
21689            }
21690        }
21691
21692        #[inline]
21693        unsafe fn decode(
21694            &mut self,
21695            decoder: &mut fidl::encoding::Decoder<
21696                '_,
21697                fidl::encoding::DefaultFuchsiaResourceDialect,
21698            >,
21699            offset: usize,
21700            _depth: fidl::encoding::Depth,
21701        ) -> fidl::Result<()> {
21702            decoder.debug_check_bounds::<Self>(offset);
21703            // Verify that padding bytes are zero.
21704            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
21705            let padval = unsafe { (ptr as *const u64).read_unaligned() };
21706            let mask = 0xffffffff00000000u64;
21707            let maskedval = padval & mask;
21708            if maskedval != 0 {
21709                return Err(fidl::Error::NonZeroPadding {
21710                    padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
21711                });
21712            }
21713            fidl::decode!(
21714                fidl::encoding::BoundedString<255>,
21715                fidl::encoding::DefaultFuchsiaResourceDialect,
21716                &mut self.src,
21717                decoder,
21718                offset + 0,
21719                _depth
21720            )?;
21721            fidl::decode!(fidl::encoding::HandleType<fidl::Handle, { fidl::ObjectType::NONE.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.dst_parent_token, decoder, offset + 16, _depth)?;
21722            fidl::decode!(
21723                fidl::encoding::BoundedString<255>,
21724                fidl::encoding::DefaultFuchsiaResourceDialect,
21725                &mut self.dst,
21726                decoder,
21727                offset + 24,
21728                _depth
21729            )?;
21730            Ok(())
21731        }
21732    }
21733
21734    impl fidl::encoding::ResourceTypeMarker for DirectoryOpenRequest {
21735        type Borrowed<'a> = &'a mut Self;
21736        fn take_or_borrow<'a>(
21737            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
21738        ) -> Self::Borrowed<'a> {
21739            value
21740        }
21741    }
21742
21743    unsafe impl fidl::encoding::TypeMarker for DirectoryOpenRequest {
21744        type Owned = Self;
21745
21746        #[inline(always)]
21747        fn inline_align(_context: fidl::encoding::Context) -> usize {
21748            8
21749        }
21750
21751        #[inline(always)]
21752        fn inline_size(_context: fidl::encoding::Context) -> usize {
21753            48
21754        }
21755    }
21756
21757    unsafe impl
21758        fidl::encoding::Encode<DirectoryOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
21759        for &mut DirectoryOpenRequest
21760    {
21761        #[inline]
21762        unsafe fn encode(
21763            self,
21764            encoder: &mut fidl::encoding::Encoder<
21765                '_,
21766                fidl::encoding::DefaultFuchsiaResourceDialect,
21767            >,
21768            offset: usize,
21769            _depth: fidl::encoding::Depth,
21770        ) -> fidl::Result<()> {
21771            encoder.debug_check_bounds::<DirectoryOpenRequest>(offset);
21772            // Delegate to tuple encoding.
21773            fidl::encoding::Encode::<DirectoryOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
21774                (
21775                    <fidl::encoding::BoundedString<4095> as fidl::encoding::ValueTypeMarker>::borrow(&self.path),
21776                    <Flags as fidl::encoding::ValueTypeMarker>::borrow(&self.flags),
21777                    <Options as fidl::encoding::ValueTypeMarker>::borrow(&self.options),
21778                    <fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.object),
21779                ),
21780                encoder, offset, _depth
21781            )
21782        }
21783    }
21784    unsafe impl<
21785            T0: fidl::encoding::Encode<
21786                fidl::encoding::BoundedString<4095>,
21787                fidl::encoding::DefaultFuchsiaResourceDialect,
21788            >,
21789            T1: fidl::encoding::Encode<Flags, fidl::encoding::DefaultFuchsiaResourceDialect>,
21790            T2: fidl::encoding::Encode<Options, fidl::encoding::DefaultFuchsiaResourceDialect>,
21791            T3: fidl::encoding::Encode<
21792                fidl::encoding::HandleType<
21793                    fidl::Channel,
21794                    { fidl::ObjectType::CHANNEL.into_raw() },
21795                    2147483648,
21796                >,
21797                fidl::encoding::DefaultFuchsiaResourceDialect,
21798            >,
21799        >
21800        fidl::encoding::Encode<DirectoryOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
21801        for (T0, T1, T2, T3)
21802    {
21803        #[inline]
21804        unsafe fn encode(
21805            self,
21806            encoder: &mut fidl::encoding::Encoder<
21807                '_,
21808                fidl::encoding::DefaultFuchsiaResourceDialect,
21809            >,
21810            offset: usize,
21811            depth: fidl::encoding::Depth,
21812        ) -> fidl::Result<()> {
21813            encoder.debug_check_bounds::<DirectoryOpenRequest>(offset);
21814            // Zero out padding regions. There's no need to apply masks
21815            // because the unmasked parts will be overwritten by fields.
21816            unsafe {
21817                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(40);
21818                (ptr as *mut u64).write_unaligned(0);
21819            }
21820            // Write the fields.
21821            self.0.encode(encoder, offset + 0, depth)?;
21822            self.1.encode(encoder, offset + 16, depth)?;
21823            self.2.encode(encoder, offset + 24, depth)?;
21824            self.3.encode(encoder, offset + 40, depth)?;
21825            Ok(())
21826        }
21827    }
21828
21829    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
21830        for DirectoryOpenRequest
21831    {
21832        #[inline(always)]
21833        fn new_empty() -> Self {
21834            Self {
21835                path: fidl::new_empty!(
21836                    fidl::encoding::BoundedString<4095>,
21837                    fidl::encoding::DefaultFuchsiaResourceDialect
21838                ),
21839                flags: fidl::new_empty!(Flags, fidl::encoding::DefaultFuchsiaResourceDialect),
21840                options: fidl::new_empty!(Options, fidl::encoding::DefaultFuchsiaResourceDialect),
21841                object: fidl::new_empty!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
21842            }
21843        }
21844
21845        #[inline]
21846        unsafe fn decode(
21847            &mut self,
21848            decoder: &mut fidl::encoding::Decoder<
21849                '_,
21850                fidl::encoding::DefaultFuchsiaResourceDialect,
21851            >,
21852            offset: usize,
21853            _depth: fidl::encoding::Depth,
21854        ) -> fidl::Result<()> {
21855            decoder.debug_check_bounds::<Self>(offset);
21856            // Verify that padding bytes are zero.
21857            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(40) };
21858            let padval = unsafe { (ptr as *const u64).read_unaligned() };
21859            let mask = 0xffffffff00000000u64;
21860            let maskedval = padval & mask;
21861            if maskedval != 0 {
21862                return Err(fidl::Error::NonZeroPadding {
21863                    padding_start: offset + 40 + ((mask as u64).trailing_zeros() / 8) as usize,
21864                });
21865            }
21866            fidl::decode!(
21867                fidl::encoding::BoundedString<4095>,
21868                fidl::encoding::DefaultFuchsiaResourceDialect,
21869                &mut self.path,
21870                decoder,
21871                offset + 0,
21872                _depth
21873            )?;
21874            fidl::decode!(
21875                Flags,
21876                fidl::encoding::DefaultFuchsiaResourceDialect,
21877                &mut self.flags,
21878                decoder,
21879                offset + 16,
21880                _depth
21881            )?;
21882            fidl::decode!(
21883                Options,
21884                fidl::encoding::DefaultFuchsiaResourceDialect,
21885                &mut self.options,
21886                decoder,
21887                offset + 24,
21888                _depth
21889            )?;
21890            fidl::decode!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.object, decoder, offset + 40, _depth)?;
21891            Ok(())
21892        }
21893    }
21894
21895    impl fidl::encoding::ResourceTypeMarker for DirectoryRenameRequest {
21896        type Borrowed<'a> = &'a mut Self;
21897        fn take_or_borrow<'a>(
21898            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
21899        ) -> Self::Borrowed<'a> {
21900            value
21901        }
21902    }
21903
21904    unsafe impl fidl::encoding::TypeMarker for DirectoryRenameRequest {
21905        type Owned = Self;
21906
21907        #[inline(always)]
21908        fn inline_align(_context: fidl::encoding::Context) -> usize {
21909            8
21910        }
21911
21912        #[inline(always)]
21913        fn inline_size(_context: fidl::encoding::Context) -> usize {
21914            40
21915        }
21916    }
21917
21918    unsafe impl
21919        fidl::encoding::Encode<
21920            DirectoryRenameRequest,
21921            fidl::encoding::DefaultFuchsiaResourceDialect,
21922        > for &mut DirectoryRenameRequest
21923    {
21924        #[inline]
21925        unsafe fn encode(
21926            self,
21927            encoder: &mut fidl::encoding::Encoder<
21928                '_,
21929                fidl::encoding::DefaultFuchsiaResourceDialect,
21930            >,
21931            offset: usize,
21932            _depth: fidl::encoding::Depth,
21933        ) -> fidl::Result<()> {
21934            encoder.debug_check_bounds::<DirectoryRenameRequest>(offset);
21935            // Delegate to tuple encoding.
21936            fidl::encoding::Encode::<
21937                DirectoryRenameRequest,
21938                fidl::encoding::DefaultFuchsiaResourceDialect,
21939            >::encode(
21940                (
21941                    <fidl::encoding::BoundedString<255> as fidl::encoding::ValueTypeMarker>::borrow(
21942                        &self.src,
21943                    ),
21944                    <fidl::encoding::HandleType<
21945                        fidl::Event,
21946                        { fidl::ObjectType::EVENT.into_raw() },
21947                        2147483648,
21948                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
21949                        &mut self.dst_parent_token,
21950                    ),
21951                    <fidl::encoding::BoundedString<255> as fidl::encoding::ValueTypeMarker>::borrow(
21952                        &self.dst,
21953                    ),
21954                ),
21955                encoder,
21956                offset,
21957                _depth,
21958            )
21959        }
21960    }
21961    unsafe impl<
21962            T0: fidl::encoding::Encode<
21963                fidl::encoding::BoundedString<255>,
21964                fidl::encoding::DefaultFuchsiaResourceDialect,
21965            >,
21966            T1: fidl::encoding::Encode<
21967                fidl::encoding::HandleType<
21968                    fidl::Event,
21969                    { fidl::ObjectType::EVENT.into_raw() },
21970                    2147483648,
21971                >,
21972                fidl::encoding::DefaultFuchsiaResourceDialect,
21973            >,
21974            T2: fidl::encoding::Encode<
21975                fidl::encoding::BoundedString<255>,
21976                fidl::encoding::DefaultFuchsiaResourceDialect,
21977            >,
21978        >
21979        fidl::encoding::Encode<
21980            DirectoryRenameRequest,
21981            fidl::encoding::DefaultFuchsiaResourceDialect,
21982        > for (T0, T1, T2)
21983    {
21984        #[inline]
21985        unsafe fn encode(
21986            self,
21987            encoder: &mut fidl::encoding::Encoder<
21988                '_,
21989                fidl::encoding::DefaultFuchsiaResourceDialect,
21990            >,
21991            offset: usize,
21992            depth: fidl::encoding::Depth,
21993        ) -> fidl::Result<()> {
21994            encoder.debug_check_bounds::<DirectoryRenameRequest>(offset);
21995            // Zero out padding regions. There's no need to apply masks
21996            // because the unmasked parts will be overwritten by fields.
21997            unsafe {
21998                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
21999                (ptr as *mut u64).write_unaligned(0);
22000            }
22001            // Write the fields.
22002            self.0.encode(encoder, offset + 0, depth)?;
22003            self.1.encode(encoder, offset + 16, depth)?;
22004            self.2.encode(encoder, offset + 24, depth)?;
22005            Ok(())
22006        }
22007    }
22008
22009    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22010        for DirectoryRenameRequest
22011    {
22012        #[inline(always)]
22013        fn new_empty() -> Self {
22014            Self {
22015                src: fidl::new_empty!(
22016                    fidl::encoding::BoundedString<255>,
22017                    fidl::encoding::DefaultFuchsiaResourceDialect
22018                ),
22019                dst_parent_token: fidl::new_empty!(fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
22020                dst: fidl::new_empty!(
22021                    fidl::encoding::BoundedString<255>,
22022                    fidl::encoding::DefaultFuchsiaResourceDialect
22023                ),
22024            }
22025        }
22026
22027        #[inline]
22028        unsafe fn decode(
22029            &mut self,
22030            decoder: &mut fidl::encoding::Decoder<
22031                '_,
22032                fidl::encoding::DefaultFuchsiaResourceDialect,
22033            >,
22034            offset: usize,
22035            _depth: fidl::encoding::Depth,
22036        ) -> fidl::Result<()> {
22037            decoder.debug_check_bounds::<Self>(offset);
22038            // Verify that padding bytes are zero.
22039            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
22040            let padval = unsafe { (ptr as *const u64).read_unaligned() };
22041            let mask = 0xffffffff00000000u64;
22042            let maskedval = padval & mask;
22043            if maskedval != 0 {
22044                return Err(fidl::Error::NonZeroPadding {
22045                    padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
22046                });
22047            }
22048            fidl::decode!(
22049                fidl::encoding::BoundedString<255>,
22050                fidl::encoding::DefaultFuchsiaResourceDialect,
22051                &mut self.src,
22052                decoder,
22053                offset + 0,
22054                _depth
22055            )?;
22056            fidl::decode!(fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.dst_parent_token, decoder, offset + 16, _depth)?;
22057            fidl::decode!(
22058                fidl::encoding::BoundedString<255>,
22059                fidl::encoding::DefaultFuchsiaResourceDialect,
22060                &mut self.dst,
22061                decoder,
22062                offset + 24,
22063                _depth
22064            )?;
22065            Ok(())
22066        }
22067    }
22068
22069    impl fidl::encoding::ResourceTypeMarker for DirectoryWatchRequest {
22070        type Borrowed<'a> = &'a mut Self;
22071        fn take_or_borrow<'a>(
22072            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22073        ) -> Self::Borrowed<'a> {
22074            value
22075        }
22076    }
22077
22078    unsafe impl fidl::encoding::TypeMarker for DirectoryWatchRequest {
22079        type Owned = Self;
22080
22081        #[inline(always)]
22082        fn inline_align(_context: fidl::encoding::Context) -> usize {
22083            4
22084        }
22085
22086        #[inline(always)]
22087        fn inline_size(_context: fidl::encoding::Context) -> usize {
22088            12
22089        }
22090    }
22091
22092    unsafe impl
22093        fidl::encoding::Encode<DirectoryWatchRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
22094        for &mut DirectoryWatchRequest
22095    {
22096        #[inline]
22097        unsafe fn encode(
22098            self,
22099            encoder: &mut fidl::encoding::Encoder<
22100                '_,
22101                fidl::encoding::DefaultFuchsiaResourceDialect,
22102            >,
22103            offset: usize,
22104            _depth: fidl::encoding::Depth,
22105        ) -> fidl::Result<()> {
22106            encoder.debug_check_bounds::<DirectoryWatchRequest>(offset);
22107            // Delegate to tuple encoding.
22108            fidl::encoding::Encode::<DirectoryWatchRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
22109                (
22110                    <WatchMask as fidl::encoding::ValueTypeMarker>::borrow(&self.mask),
22111                    <u32 as fidl::encoding::ValueTypeMarker>::borrow(&self.options),
22112                    <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<DirectoryWatcherMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.watcher),
22113                ),
22114                encoder, offset, _depth
22115            )
22116        }
22117    }
22118    unsafe impl<
22119            T0: fidl::encoding::Encode<WatchMask, fidl::encoding::DefaultFuchsiaResourceDialect>,
22120            T1: fidl::encoding::Encode<u32, fidl::encoding::DefaultFuchsiaResourceDialect>,
22121            T2: fidl::encoding::Encode<
22122                fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<DirectoryWatcherMarker>>,
22123                fidl::encoding::DefaultFuchsiaResourceDialect,
22124            >,
22125        >
22126        fidl::encoding::Encode<DirectoryWatchRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
22127        for (T0, T1, T2)
22128    {
22129        #[inline]
22130        unsafe fn encode(
22131            self,
22132            encoder: &mut fidl::encoding::Encoder<
22133                '_,
22134                fidl::encoding::DefaultFuchsiaResourceDialect,
22135            >,
22136            offset: usize,
22137            depth: fidl::encoding::Depth,
22138        ) -> fidl::Result<()> {
22139            encoder.debug_check_bounds::<DirectoryWatchRequest>(offset);
22140            // Zero out padding regions. There's no need to apply masks
22141            // because the unmasked parts will be overwritten by fields.
22142            // Write the fields.
22143            self.0.encode(encoder, offset + 0, depth)?;
22144            self.1.encode(encoder, offset + 4, depth)?;
22145            self.2.encode(encoder, offset + 8, depth)?;
22146            Ok(())
22147        }
22148    }
22149
22150    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22151        for DirectoryWatchRequest
22152    {
22153        #[inline(always)]
22154        fn new_empty() -> Self {
22155            Self {
22156                mask: fidl::new_empty!(WatchMask, fidl::encoding::DefaultFuchsiaResourceDialect),
22157                options: fidl::new_empty!(u32, fidl::encoding::DefaultFuchsiaResourceDialect),
22158                watcher: fidl::new_empty!(
22159                    fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<DirectoryWatcherMarker>>,
22160                    fidl::encoding::DefaultFuchsiaResourceDialect
22161                ),
22162            }
22163        }
22164
22165        #[inline]
22166        unsafe fn decode(
22167            &mut self,
22168            decoder: &mut fidl::encoding::Decoder<
22169                '_,
22170                fidl::encoding::DefaultFuchsiaResourceDialect,
22171            >,
22172            offset: usize,
22173            _depth: fidl::encoding::Depth,
22174        ) -> fidl::Result<()> {
22175            decoder.debug_check_bounds::<Self>(offset);
22176            // Verify that padding bytes are zero.
22177            fidl::decode!(
22178                WatchMask,
22179                fidl::encoding::DefaultFuchsiaResourceDialect,
22180                &mut self.mask,
22181                decoder,
22182                offset + 0,
22183                _depth
22184            )?;
22185            fidl::decode!(
22186                u32,
22187                fidl::encoding::DefaultFuchsiaResourceDialect,
22188                &mut self.options,
22189                decoder,
22190                offset + 4,
22191                _depth
22192            )?;
22193            fidl::decode!(
22194                fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<DirectoryWatcherMarker>>,
22195                fidl::encoding::DefaultFuchsiaResourceDialect,
22196                &mut self.watcher,
22197                decoder,
22198                offset + 8,
22199                _depth
22200            )?;
22201            Ok(())
22202        }
22203    }
22204
22205    impl fidl::encoding::ResourceTypeMarker for FileAllocateRequest {
22206        type Borrowed<'a> = &'a mut Self;
22207        fn take_or_borrow<'a>(
22208            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22209        ) -> Self::Borrowed<'a> {
22210            value
22211        }
22212    }
22213
22214    unsafe impl fidl::encoding::TypeMarker for FileAllocateRequest {
22215        type Owned = Self;
22216
22217        #[inline(always)]
22218        fn inline_align(_context: fidl::encoding::Context) -> usize {
22219            8
22220        }
22221
22222        #[inline(always)]
22223        fn inline_size(_context: fidl::encoding::Context) -> usize {
22224            24
22225        }
22226    }
22227
22228    unsafe impl
22229        fidl::encoding::Encode<FileAllocateRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
22230        for &mut FileAllocateRequest
22231    {
22232        #[inline]
22233        unsafe fn encode(
22234            self,
22235            encoder: &mut fidl::encoding::Encoder<
22236                '_,
22237                fidl::encoding::DefaultFuchsiaResourceDialect,
22238            >,
22239            offset: usize,
22240            _depth: fidl::encoding::Depth,
22241        ) -> fidl::Result<()> {
22242            encoder.debug_check_bounds::<FileAllocateRequest>(offset);
22243            // Delegate to tuple encoding.
22244            fidl::encoding::Encode::<
22245                FileAllocateRequest,
22246                fidl::encoding::DefaultFuchsiaResourceDialect,
22247            >::encode(
22248                (
22249                    <u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.offset),
22250                    <u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.length),
22251                    <AllocateMode as fidl::encoding::ValueTypeMarker>::borrow(&self.mode),
22252                ),
22253                encoder,
22254                offset,
22255                _depth,
22256            )
22257        }
22258    }
22259    unsafe impl<
22260            T0: fidl::encoding::Encode<u64, fidl::encoding::DefaultFuchsiaResourceDialect>,
22261            T1: fidl::encoding::Encode<u64, fidl::encoding::DefaultFuchsiaResourceDialect>,
22262            T2: fidl::encoding::Encode<AllocateMode, fidl::encoding::DefaultFuchsiaResourceDialect>,
22263        >
22264        fidl::encoding::Encode<FileAllocateRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
22265        for (T0, T1, T2)
22266    {
22267        #[inline]
22268        unsafe fn encode(
22269            self,
22270            encoder: &mut fidl::encoding::Encoder<
22271                '_,
22272                fidl::encoding::DefaultFuchsiaResourceDialect,
22273            >,
22274            offset: usize,
22275            depth: fidl::encoding::Depth,
22276        ) -> fidl::Result<()> {
22277            encoder.debug_check_bounds::<FileAllocateRequest>(offset);
22278            // Zero out padding regions. There's no need to apply masks
22279            // because the unmasked parts will be overwritten by fields.
22280            unsafe {
22281                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
22282                (ptr as *mut u64).write_unaligned(0);
22283            }
22284            // Write the fields.
22285            self.0.encode(encoder, offset + 0, depth)?;
22286            self.1.encode(encoder, offset + 8, depth)?;
22287            self.2.encode(encoder, offset + 16, depth)?;
22288            Ok(())
22289        }
22290    }
22291
22292    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22293        for FileAllocateRequest
22294    {
22295        #[inline(always)]
22296        fn new_empty() -> Self {
22297            Self {
22298                offset: fidl::new_empty!(u64, fidl::encoding::DefaultFuchsiaResourceDialect),
22299                length: fidl::new_empty!(u64, fidl::encoding::DefaultFuchsiaResourceDialect),
22300                mode: fidl::new_empty!(AllocateMode, fidl::encoding::DefaultFuchsiaResourceDialect),
22301            }
22302        }
22303
22304        #[inline]
22305        unsafe fn decode(
22306            &mut self,
22307            decoder: &mut fidl::encoding::Decoder<
22308                '_,
22309                fidl::encoding::DefaultFuchsiaResourceDialect,
22310            >,
22311            offset: usize,
22312            _depth: fidl::encoding::Depth,
22313        ) -> fidl::Result<()> {
22314            decoder.debug_check_bounds::<Self>(offset);
22315            // Verify that padding bytes are zero.
22316            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
22317            let padval = unsafe { (ptr as *const u64).read_unaligned() };
22318            let mask = 0xffffffff00000000u64;
22319            let maskedval = padval & mask;
22320            if maskedval != 0 {
22321                return Err(fidl::Error::NonZeroPadding {
22322                    padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
22323                });
22324            }
22325            fidl::decode!(
22326                u64,
22327                fidl::encoding::DefaultFuchsiaResourceDialect,
22328                &mut self.offset,
22329                decoder,
22330                offset + 0,
22331                _depth
22332            )?;
22333            fidl::decode!(
22334                u64,
22335                fidl::encoding::DefaultFuchsiaResourceDialect,
22336                &mut self.length,
22337                decoder,
22338                offset + 8,
22339                _depth
22340            )?;
22341            fidl::decode!(
22342                AllocateMode,
22343                fidl::encoding::DefaultFuchsiaResourceDialect,
22344                &mut self.mode,
22345                decoder,
22346                offset + 16,
22347                _depth
22348            )?;
22349            Ok(())
22350        }
22351    }
22352
22353    impl fidl::encoding::ResourceTypeMarker for FileEnableVerityRequest {
22354        type Borrowed<'a> = &'a mut Self;
22355        fn take_or_borrow<'a>(
22356            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22357        ) -> Self::Borrowed<'a> {
22358            value
22359        }
22360    }
22361
22362    unsafe impl fidl::encoding::TypeMarker for FileEnableVerityRequest {
22363        type Owned = Self;
22364
22365        #[inline(always)]
22366        fn inline_align(_context: fidl::encoding::Context) -> usize {
22367            8
22368        }
22369
22370        #[inline(always)]
22371        fn inline_size(_context: fidl::encoding::Context) -> usize {
22372            16
22373        }
22374    }
22375
22376    unsafe impl
22377        fidl::encoding::Encode<
22378            FileEnableVerityRequest,
22379            fidl::encoding::DefaultFuchsiaResourceDialect,
22380        > for &mut FileEnableVerityRequest
22381    {
22382        #[inline]
22383        unsafe fn encode(
22384            self,
22385            encoder: &mut fidl::encoding::Encoder<
22386                '_,
22387                fidl::encoding::DefaultFuchsiaResourceDialect,
22388            >,
22389            offset: usize,
22390            _depth: fidl::encoding::Depth,
22391        ) -> fidl::Result<()> {
22392            encoder.debug_check_bounds::<FileEnableVerityRequest>(offset);
22393            // Delegate to tuple encoding.
22394            fidl::encoding::Encode::<
22395                FileEnableVerityRequest,
22396                fidl::encoding::DefaultFuchsiaResourceDialect,
22397            >::encode(
22398                (<VerificationOptions as fidl::encoding::ValueTypeMarker>::borrow(&self.options),),
22399                encoder,
22400                offset,
22401                _depth,
22402            )
22403        }
22404    }
22405    unsafe impl<
22406            T0: fidl::encoding::Encode<
22407                VerificationOptions,
22408                fidl::encoding::DefaultFuchsiaResourceDialect,
22409            >,
22410        >
22411        fidl::encoding::Encode<
22412            FileEnableVerityRequest,
22413            fidl::encoding::DefaultFuchsiaResourceDialect,
22414        > for (T0,)
22415    {
22416        #[inline]
22417        unsafe fn encode(
22418            self,
22419            encoder: &mut fidl::encoding::Encoder<
22420                '_,
22421                fidl::encoding::DefaultFuchsiaResourceDialect,
22422            >,
22423            offset: usize,
22424            depth: fidl::encoding::Depth,
22425        ) -> fidl::Result<()> {
22426            encoder.debug_check_bounds::<FileEnableVerityRequest>(offset);
22427            // Zero out padding regions. There's no need to apply masks
22428            // because the unmasked parts will be overwritten by fields.
22429            // Write the fields.
22430            self.0.encode(encoder, offset + 0, depth)?;
22431            Ok(())
22432        }
22433    }
22434
22435    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22436        for FileEnableVerityRequest
22437    {
22438        #[inline(always)]
22439        fn new_empty() -> Self {
22440            Self {
22441                options: fidl::new_empty!(
22442                    VerificationOptions,
22443                    fidl::encoding::DefaultFuchsiaResourceDialect
22444                ),
22445            }
22446        }
22447
22448        #[inline]
22449        unsafe fn decode(
22450            &mut self,
22451            decoder: &mut fidl::encoding::Decoder<
22452                '_,
22453                fidl::encoding::DefaultFuchsiaResourceDialect,
22454            >,
22455            offset: usize,
22456            _depth: fidl::encoding::Depth,
22457        ) -> fidl::Result<()> {
22458            decoder.debug_check_bounds::<Self>(offset);
22459            // Verify that padding bytes are zero.
22460            fidl::decode!(
22461                VerificationOptions,
22462                fidl::encoding::DefaultFuchsiaResourceDialect,
22463                &mut self.options,
22464                decoder,
22465                offset + 0,
22466                _depth
22467            )?;
22468            Ok(())
22469        }
22470    }
22471
22472    impl fidl::encoding::ResourceTypeMarker for FileObject {
22473        type Borrowed<'a> = &'a mut Self;
22474        fn take_or_borrow<'a>(
22475            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22476        ) -> Self::Borrowed<'a> {
22477            value
22478        }
22479    }
22480
22481    unsafe impl fidl::encoding::TypeMarker for FileObject {
22482        type Owned = Self;
22483
22484        #[inline(always)]
22485        fn inline_align(_context: fidl::encoding::Context) -> usize {
22486            4
22487        }
22488
22489        #[inline(always)]
22490        fn inline_size(_context: fidl::encoding::Context) -> usize {
22491            8
22492        }
22493    }
22494
22495    unsafe impl fidl::encoding::Encode<FileObject, fidl::encoding::DefaultFuchsiaResourceDialect>
22496        for &mut FileObject
22497    {
22498        #[inline]
22499        unsafe fn encode(
22500            self,
22501            encoder: &mut fidl::encoding::Encoder<
22502                '_,
22503                fidl::encoding::DefaultFuchsiaResourceDialect,
22504            >,
22505            offset: usize,
22506            _depth: fidl::encoding::Depth,
22507        ) -> fidl::Result<()> {
22508            encoder.debug_check_bounds::<FileObject>(offset);
22509            // Delegate to tuple encoding.
22510            fidl::encoding::Encode::<FileObject, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
22511                (
22512                    <fidl::encoding::Optional<fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.event),
22513                    <fidl::encoding::Optional<fidl::encoding::HandleType<fidl::Stream, { fidl::ObjectType::STREAM.into_raw() }, 2147483648>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.stream),
22514                ),
22515                encoder, offset, _depth
22516            )
22517        }
22518    }
22519    unsafe impl<
22520            T0: fidl::encoding::Encode<
22521                fidl::encoding::Optional<
22522                    fidl::encoding::HandleType<
22523                        fidl::Event,
22524                        { fidl::ObjectType::EVENT.into_raw() },
22525                        2147483648,
22526                    >,
22527                >,
22528                fidl::encoding::DefaultFuchsiaResourceDialect,
22529            >,
22530            T1: fidl::encoding::Encode<
22531                fidl::encoding::Optional<
22532                    fidl::encoding::HandleType<
22533                        fidl::Stream,
22534                        { fidl::ObjectType::STREAM.into_raw() },
22535                        2147483648,
22536                    >,
22537                >,
22538                fidl::encoding::DefaultFuchsiaResourceDialect,
22539            >,
22540        > fidl::encoding::Encode<FileObject, fidl::encoding::DefaultFuchsiaResourceDialect>
22541        for (T0, T1)
22542    {
22543        #[inline]
22544        unsafe fn encode(
22545            self,
22546            encoder: &mut fidl::encoding::Encoder<
22547                '_,
22548                fidl::encoding::DefaultFuchsiaResourceDialect,
22549            >,
22550            offset: usize,
22551            depth: fidl::encoding::Depth,
22552        ) -> fidl::Result<()> {
22553            encoder.debug_check_bounds::<FileObject>(offset);
22554            // Zero out padding regions. There's no need to apply masks
22555            // because the unmasked parts will be overwritten by fields.
22556            // Write the fields.
22557            self.0.encode(encoder, offset + 0, depth)?;
22558            self.1.encode(encoder, offset + 4, depth)?;
22559            Ok(())
22560        }
22561    }
22562
22563    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect> for FileObject {
22564        #[inline(always)]
22565        fn new_empty() -> Self {
22566            Self {
22567                event: fidl::new_empty!(
22568                    fidl::encoding::Optional<
22569                        fidl::encoding::HandleType<
22570                            fidl::Event,
22571                            { fidl::ObjectType::EVENT.into_raw() },
22572                            2147483648,
22573                        >,
22574                    >,
22575                    fidl::encoding::DefaultFuchsiaResourceDialect
22576                ),
22577                stream: fidl::new_empty!(
22578                    fidl::encoding::Optional<
22579                        fidl::encoding::HandleType<
22580                            fidl::Stream,
22581                            { fidl::ObjectType::STREAM.into_raw() },
22582                            2147483648,
22583                        >,
22584                    >,
22585                    fidl::encoding::DefaultFuchsiaResourceDialect
22586                ),
22587            }
22588        }
22589
22590        #[inline]
22591        unsafe fn decode(
22592            &mut self,
22593            decoder: &mut fidl::encoding::Decoder<
22594                '_,
22595                fidl::encoding::DefaultFuchsiaResourceDialect,
22596            >,
22597            offset: usize,
22598            _depth: fidl::encoding::Depth,
22599        ) -> fidl::Result<()> {
22600            decoder.debug_check_bounds::<Self>(offset);
22601            // Verify that padding bytes are zero.
22602            fidl::decode!(
22603                fidl::encoding::Optional<
22604                    fidl::encoding::HandleType<
22605                        fidl::Event,
22606                        { fidl::ObjectType::EVENT.into_raw() },
22607                        2147483648,
22608                    >,
22609                >,
22610                fidl::encoding::DefaultFuchsiaResourceDialect,
22611                &mut self.event,
22612                decoder,
22613                offset + 0,
22614                _depth
22615            )?;
22616            fidl::decode!(
22617                fidl::encoding::Optional<
22618                    fidl::encoding::HandleType<
22619                        fidl::Stream,
22620                        { fidl::ObjectType::STREAM.into_raw() },
22621                        2147483648,
22622                    >,
22623                >,
22624                fidl::encoding::DefaultFuchsiaResourceDialect,
22625                &mut self.stream,
22626                decoder,
22627                offset + 4,
22628                _depth
22629            )?;
22630            Ok(())
22631        }
22632    }
22633
22634    impl fidl::encoding::ResourceTypeMarker for FileGetBackingMemoryResponse {
22635        type Borrowed<'a> = &'a mut Self;
22636        fn take_or_borrow<'a>(
22637            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22638        ) -> Self::Borrowed<'a> {
22639            value
22640        }
22641    }
22642
22643    unsafe impl fidl::encoding::TypeMarker for FileGetBackingMemoryResponse {
22644        type Owned = Self;
22645
22646        #[inline(always)]
22647        fn inline_align(_context: fidl::encoding::Context) -> usize {
22648            4
22649        }
22650
22651        #[inline(always)]
22652        fn inline_size(_context: fidl::encoding::Context) -> usize {
22653            4
22654        }
22655    }
22656
22657    unsafe impl
22658        fidl::encoding::Encode<
22659            FileGetBackingMemoryResponse,
22660            fidl::encoding::DefaultFuchsiaResourceDialect,
22661        > for &mut FileGetBackingMemoryResponse
22662    {
22663        #[inline]
22664        unsafe fn encode(
22665            self,
22666            encoder: &mut fidl::encoding::Encoder<
22667                '_,
22668                fidl::encoding::DefaultFuchsiaResourceDialect,
22669            >,
22670            offset: usize,
22671            _depth: fidl::encoding::Depth,
22672        ) -> fidl::Result<()> {
22673            encoder.debug_check_bounds::<FileGetBackingMemoryResponse>(offset);
22674            // Delegate to tuple encoding.
22675            fidl::encoding::Encode::<
22676                FileGetBackingMemoryResponse,
22677                fidl::encoding::DefaultFuchsiaResourceDialect,
22678            >::encode(
22679                (<fidl::encoding::HandleType<
22680                    fidl::Vmo,
22681                    { fidl::ObjectType::VMO.into_raw() },
22682                    2147483648,
22683                > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
22684                    &mut self.vmo
22685                ),),
22686                encoder,
22687                offset,
22688                _depth,
22689            )
22690        }
22691    }
22692    unsafe impl<
22693            T0: fidl::encoding::Encode<
22694                fidl::encoding::HandleType<
22695                    fidl::Vmo,
22696                    { fidl::ObjectType::VMO.into_raw() },
22697                    2147483648,
22698                >,
22699                fidl::encoding::DefaultFuchsiaResourceDialect,
22700            >,
22701        >
22702        fidl::encoding::Encode<
22703            FileGetBackingMemoryResponse,
22704            fidl::encoding::DefaultFuchsiaResourceDialect,
22705        > for (T0,)
22706    {
22707        #[inline]
22708        unsafe fn encode(
22709            self,
22710            encoder: &mut fidl::encoding::Encoder<
22711                '_,
22712                fidl::encoding::DefaultFuchsiaResourceDialect,
22713            >,
22714            offset: usize,
22715            depth: fidl::encoding::Depth,
22716        ) -> fidl::Result<()> {
22717            encoder.debug_check_bounds::<FileGetBackingMemoryResponse>(offset);
22718            // Zero out padding regions. There's no need to apply masks
22719            // because the unmasked parts will be overwritten by fields.
22720            // Write the fields.
22721            self.0.encode(encoder, offset + 0, depth)?;
22722            Ok(())
22723        }
22724    }
22725
22726    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22727        for FileGetBackingMemoryResponse
22728    {
22729        #[inline(always)]
22730        fn new_empty() -> Self {
22731            Self {
22732                vmo: fidl::new_empty!(fidl::encoding::HandleType<fidl::Vmo, { fidl::ObjectType::VMO.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
22733            }
22734        }
22735
22736        #[inline]
22737        unsafe fn decode(
22738            &mut self,
22739            decoder: &mut fidl::encoding::Decoder<
22740                '_,
22741                fidl::encoding::DefaultFuchsiaResourceDialect,
22742            >,
22743            offset: usize,
22744            _depth: fidl::encoding::Depth,
22745        ) -> fidl::Result<()> {
22746            decoder.debug_check_bounds::<Self>(offset);
22747            // Verify that padding bytes are zero.
22748            fidl::decode!(fidl::encoding::HandleType<fidl::Vmo, { fidl::ObjectType::VMO.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.vmo, decoder, offset + 0, _depth)?;
22749            Ok(())
22750        }
22751    }
22752
22753    impl fidl::encoding::ResourceTypeMarker for LinkableLinkIntoRequest {
22754        type Borrowed<'a> = &'a mut Self;
22755        fn take_or_borrow<'a>(
22756            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22757        ) -> Self::Borrowed<'a> {
22758            value
22759        }
22760    }
22761
22762    unsafe impl fidl::encoding::TypeMarker for LinkableLinkIntoRequest {
22763        type Owned = Self;
22764
22765        #[inline(always)]
22766        fn inline_align(_context: fidl::encoding::Context) -> usize {
22767            8
22768        }
22769
22770        #[inline(always)]
22771        fn inline_size(_context: fidl::encoding::Context) -> usize {
22772            24
22773        }
22774    }
22775
22776    unsafe impl
22777        fidl::encoding::Encode<
22778            LinkableLinkIntoRequest,
22779            fidl::encoding::DefaultFuchsiaResourceDialect,
22780        > for &mut LinkableLinkIntoRequest
22781    {
22782        #[inline]
22783        unsafe fn encode(
22784            self,
22785            encoder: &mut fidl::encoding::Encoder<
22786                '_,
22787                fidl::encoding::DefaultFuchsiaResourceDialect,
22788            >,
22789            offset: usize,
22790            _depth: fidl::encoding::Depth,
22791        ) -> fidl::Result<()> {
22792            encoder.debug_check_bounds::<LinkableLinkIntoRequest>(offset);
22793            // Delegate to tuple encoding.
22794            fidl::encoding::Encode::<
22795                LinkableLinkIntoRequest,
22796                fidl::encoding::DefaultFuchsiaResourceDialect,
22797            >::encode(
22798                (
22799                    <fidl::encoding::HandleType<
22800                        fidl::Event,
22801                        { fidl::ObjectType::EVENT.into_raw() },
22802                        2147483648,
22803                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
22804                        &mut self.dst_parent_token,
22805                    ),
22806                    <fidl::encoding::BoundedString<255> as fidl::encoding::ValueTypeMarker>::borrow(
22807                        &self.dst,
22808                    ),
22809                ),
22810                encoder,
22811                offset,
22812                _depth,
22813            )
22814        }
22815    }
22816    unsafe impl<
22817            T0: fidl::encoding::Encode<
22818                fidl::encoding::HandleType<
22819                    fidl::Event,
22820                    { fidl::ObjectType::EVENT.into_raw() },
22821                    2147483648,
22822                >,
22823                fidl::encoding::DefaultFuchsiaResourceDialect,
22824            >,
22825            T1: fidl::encoding::Encode<
22826                fidl::encoding::BoundedString<255>,
22827                fidl::encoding::DefaultFuchsiaResourceDialect,
22828            >,
22829        >
22830        fidl::encoding::Encode<
22831            LinkableLinkIntoRequest,
22832            fidl::encoding::DefaultFuchsiaResourceDialect,
22833        > for (T0, T1)
22834    {
22835        #[inline]
22836        unsafe fn encode(
22837            self,
22838            encoder: &mut fidl::encoding::Encoder<
22839                '_,
22840                fidl::encoding::DefaultFuchsiaResourceDialect,
22841            >,
22842            offset: usize,
22843            depth: fidl::encoding::Depth,
22844        ) -> fidl::Result<()> {
22845            encoder.debug_check_bounds::<LinkableLinkIntoRequest>(offset);
22846            // Zero out padding regions. There's no need to apply masks
22847            // because the unmasked parts will be overwritten by fields.
22848            unsafe {
22849                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
22850                (ptr as *mut u64).write_unaligned(0);
22851            }
22852            // Write the fields.
22853            self.0.encode(encoder, offset + 0, depth)?;
22854            self.1.encode(encoder, offset + 8, depth)?;
22855            Ok(())
22856        }
22857    }
22858
22859    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22860        for LinkableLinkIntoRequest
22861    {
22862        #[inline(always)]
22863        fn new_empty() -> Self {
22864            Self {
22865                dst_parent_token: fidl::new_empty!(fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
22866                dst: fidl::new_empty!(
22867                    fidl::encoding::BoundedString<255>,
22868                    fidl::encoding::DefaultFuchsiaResourceDialect
22869                ),
22870            }
22871        }
22872
22873        #[inline]
22874        unsafe fn decode(
22875            &mut self,
22876            decoder: &mut fidl::encoding::Decoder<
22877                '_,
22878                fidl::encoding::DefaultFuchsiaResourceDialect,
22879            >,
22880            offset: usize,
22881            _depth: fidl::encoding::Depth,
22882        ) -> fidl::Result<()> {
22883            decoder.debug_check_bounds::<Self>(offset);
22884            // Verify that padding bytes are zero.
22885            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
22886            let padval = unsafe { (ptr as *const u64).read_unaligned() };
22887            let mask = 0xffffffff00000000u64;
22888            let maskedval = padval & mask;
22889            if maskedval != 0 {
22890                return Err(fidl::Error::NonZeroPadding {
22891                    padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
22892                });
22893            }
22894            fidl::decode!(fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.dst_parent_token, decoder, offset + 0, _depth)?;
22895            fidl::decode!(
22896                fidl::encoding::BoundedString<255>,
22897                fidl::encoding::DefaultFuchsiaResourceDialect,
22898                &mut self.dst,
22899                decoder,
22900                offset + 8,
22901                _depth
22902            )?;
22903            Ok(())
22904        }
22905    }
22906
22907    impl fidl::encoding::ResourceTypeMarker for NodeDeprecatedCloneRequest {
22908        type Borrowed<'a> = &'a mut Self;
22909        fn take_or_borrow<'a>(
22910            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
22911        ) -> Self::Borrowed<'a> {
22912            value
22913        }
22914    }
22915
22916    unsafe impl fidl::encoding::TypeMarker for NodeDeprecatedCloneRequest {
22917        type Owned = Self;
22918
22919        #[inline(always)]
22920        fn inline_align(_context: fidl::encoding::Context) -> usize {
22921            4
22922        }
22923
22924        #[inline(always)]
22925        fn inline_size(_context: fidl::encoding::Context) -> usize {
22926            8
22927        }
22928    }
22929
22930    unsafe impl
22931        fidl::encoding::Encode<
22932            NodeDeprecatedCloneRequest,
22933            fidl::encoding::DefaultFuchsiaResourceDialect,
22934        > for &mut NodeDeprecatedCloneRequest
22935    {
22936        #[inline]
22937        unsafe fn encode(
22938            self,
22939            encoder: &mut fidl::encoding::Encoder<
22940                '_,
22941                fidl::encoding::DefaultFuchsiaResourceDialect,
22942            >,
22943            offset: usize,
22944            _depth: fidl::encoding::Depth,
22945        ) -> fidl::Result<()> {
22946            encoder.debug_check_bounds::<NodeDeprecatedCloneRequest>(offset);
22947            // Delegate to tuple encoding.
22948            fidl::encoding::Encode::<NodeDeprecatedCloneRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
22949                (
22950                    <OpenFlags as fidl::encoding::ValueTypeMarker>::borrow(&self.flags),
22951                    <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.object),
22952                ),
22953                encoder, offset, _depth
22954            )
22955        }
22956    }
22957    unsafe impl<
22958            T0: fidl::encoding::Encode<OpenFlags, fidl::encoding::DefaultFuchsiaResourceDialect>,
22959            T1: fidl::encoding::Encode<
22960                fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>>,
22961                fidl::encoding::DefaultFuchsiaResourceDialect,
22962            >,
22963        >
22964        fidl::encoding::Encode<
22965            NodeDeprecatedCloneRequest,
22966            fidl::encoding::DefaultFuchsiaResourceDialect,
22967        > for (T0, T1)
22968    {
22969        #[inline]
22970        unsafe fn encode(
22971            self,
22972            encoder: &mut fidl::encoding::Encoder<
22973                '_,
22974                fidl::encoding::DefaultFuchsiaResourceDialect,
22975            >,
22976            offset: usize,
22977            depth: fidl::encoding::Depth,
22978        ) -> fidl::Result<()> {
22979            encoder.debug_check_bounds::<NodeDeprecatedCloneRequest>(offset);
22980            // Zero out padding regions. There's no need to apply masks
22981            // because the unmasked parts will be overwritten by fields.
22982            // Write the fields.
22983            self.0.encode(encoder, offset + 0, depth)?;
22984            self.1.encode(encoder, offset + 4, depth)?;
22985            Ok(())
22986        }
22987    }
22988
22989    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
22990        for NodeDeprecatedCloneRequest
22991    {
22992        #[inline(always)]
22993        fn new_empty() -> Self {
22994            Self {
22995                flags: fidl::new_empty!(OpenFlags, fidl::encoding::DefaultFuchsiaResourceDialect),
22996                object: fidl::new_empty!(
22997                    fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>>,
22998                    fidl::encoding::DefaultFuchsiaResourceDialect
22999                ),
23000            }
23001        }
23002
23003        #[inline]
23004        unsafe fn decode(
23005            &mut self,
23006            decoder: &mut fidl::encoding::Decoder<
23007                '_,
23008                fidl::encoding::DefaultFuchsiaResourceDialect,
23009            >,
23010            offset: usize,
23011            _depth: fidl::encoding::Depth,
23012        ) -> fidl::Result<()> {
23013            decoder.debug_check_bounds::<Self>(offset);
23014            // Verify that padding bytes are zero.
23015            fidl::decode!(
23016                OpenFlags,
23017                fidl::encoding::DefaultFuchsiaResourceDialect,
23018                &mut self.flags,
23019                decoder,
23020                offset + 0,
23021                _depth
23022            )?;
23023            fidl::decode!(
23024                fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<NodeMarker>>,
23025                fidl::encoding::DefaultFuchsiaResourceDialect,
23026                &mut self.object,
23027                decoder,
23028                offset + 4,
23029                _depth
23030            )?;
23031            Ok(())
23032        }
23033    }
23034
23035    impl fidl::encoding::ResourceTypeMarker for NodeListExtendedAttributesRequest {
23036        type Borrowed<'a> = &'a mut Self;
23037        fn take_or_borrow<'a>(
23038            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
23039        ) -> Self::Borrowed<'a> {
23040            value
23041        }
23042    }
23043
23044    unsafe impl fidl::encoding::TypeMarker for NodeListExtendedAttributesRequest {
23045        type Owned = Self;
23046
23047        #[inline(always)]
23048        fn inline_align(_context: fidl::encoding::Context) -> usize {
23049            4
23050        }
23051
23052        #[inline(always)]
23053        fn inline_size(_context: fidl::encoding::Context) -> usize {
23054            4
23055        }
23056    }
23057
23058    unsafe impl
23059        fidl::encoding::Encode<
23060            NodeListExtendedAttributesRequest,
23061            fidl::encoding::DefaultFuchsiaResourceDialect,
23062        > for &mut NodeListExtendedAttributesRequest
23063    {
23064        #[inline]
23065        unsafe fn encode(
23066            self,
23067            encoder: &mut fidl::encoding::Encoder<
23068                '_,
23069                fidl::encoding::DefaultFuchsiaResourceDialect,
23070            >,
23071            offset: usize,
23072            _depth: fidl::encoding::Depth,
23073        ) -> fidl::Result<()> {
23074            encoder.debug_check_bounds::<NodeListExtendedAttributesRequest>(offset);
23075            // Delegate to tuple encoding.
23076            fidl::encoding::Encode::<
23077                NodeListExtendedAttributesRequest,
23078                fidl::encoding::DefaultFuchsiaResourceDialect,
23079            >::encode(
23080                (<fidl::encoding::Endpoint<
23081                    fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
23082                > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
23083                    &mut self.iterator
23084                ),),
23085                encoder,
23086                offset,
23087                _depth,
23088            )
23089        }
23090    }
23091    unsafe impl<
23092            T0: fidl::encoding::Encode<
23093                fidl::encoding::Endpoint<
23094                    fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
23095                >,
23096                fidl::encoding::DefaultFuchsiaResourceDialect,
23097            >,
23098        >
23099        fidl::encoding::Encode<
23100            NodeListExtendedAttributesRequest,
23101            fidl::encoding::DefaultFuchsiaResourceDialect,
23102        > for (T0,)
23103    {
23104        #[inline]
23105        unsafe fn encode(
23106            self,
23107            encoder: &mut fidl::encoding::Encoder<
23108                '_,
23109                fidl::encoding::DefaultFuchsiaResourceDialect,
23110            >,
23111            offset: usize,
23112            depth: fidl::encoding::Depth,
23113        ) -> fidl::Result<()> {
23114            encoder.debug_check_bounds::<NodeListExtendedAttributesRequest>(offset);
23115            // Zero out padding regions. There's no need to apply masks
23116            // because the unmasked parts will be overwritten by fields.
23117            // Write the fields.
23118            self.0.encode(encoder, offset + 0, depth)?;
23119            Ok(())
23120        }
23121    }
23122
23123    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
23124        for NodeListExtendedAttributesRequest
23125    {
23126        #[inline(always)]
23127        fn new_empty() -> Self {
23128            Self {
23129                iterator: fidl::new_empty!(
23130                    fidl::encoding::Endpoint<
23131                        fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
23132                    >,
23133                    fidl::encoding::DefaultFuchsiaResourceDialect
23134                ),
23135            }
23136        }
23137
23138        #[inline]
23139        unsafe fn decode(
23140            &mut self,
23141            decoder: &mut fidl::encoding::Decoder<
23142                '_,
23143                fidl::encoding::DefaultFuchsiaResourceDialect,
23144            >,
23145            offset: usize,
23146            _depth: fidl::encoding::Depth,
23147        ) -> fidl::Result<()> {
23148            decoder.debug_check_bounds::<Self>(offset);
23149            // Verify that padding bytes are zero.
23150            fidl::decode!(
23151                fidl::encoding::Endpoint<
23152                    fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
23153                >,
23154                fidl::encoding::DefaultFuchsiaResourceDialect,
23155                &mut self.iterator,
23156                decoder,
23157                offset + 0,
23158                _depth
23159            )?;
23160            Ok(())
23161        }
23162    }
23163
23164    impl fidl::encoding::ResourceTypeMarker for NodeOnOpenRequest {
23165        type Borrowed<'a> = &'a mut Self;
23166        fn take_or_borrow<'a>(
23167            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
23168        ) -> Self::Borrowed<'a> {
23169            value
23170        }
23171    }
23172
23173    unsafe impl fidl::encoding::TypeMarker for NodeOnOpenRequest {
23174        type Owned = Self;
23175
23176        #[inline(always)]
23177        fn inline_align(_context: fidl::encoding::Context) -> usize {
23178            8
23179        }
23180
23181        #[inline(always)]
23182        fn inline_size(_context: fidl::encoding::Context) -> usize {
23183            24
23184        }
23185    }
23186
23187    unsafe impl
23188        fidl::encoding::Encode<NodeOnOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
23189        for &mut NodeOnOpenRequest
23190    {
23191        #[inline]
23192        unsafe fn encode(
23193            self,
23194            encoder: &mut fidl::encoding::Encoder<
23195                '_,
23196                fidl::encoding::DefaultFuchsiaResourceDialect,
23197            >,
23198            offset: usize,
23199            _depth: fidl::encoding::Depth,
23200        ) -> fidl::Result<()> {
23201            encoder.debug_check_bounds::<NodeOnOpenRequest>(offset);
23202            // Delegate to tuple encoding.
23203            fidl::encoding::Encode::<NodeOnOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
23204                (
23205                    <i32 as fidl::encoding::ValueTypeMarker>::borrow(&self.s),
23206                    <fidl::encoding::OptionalUnion<NodeInfoDeprecated> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.info),
23207                ),
23208                encoder, offset, _depth
23209            )
23210        }
23211    }
23212    unsafe impl<
23213            T0: fidl::encoding::Encode<i32, fidl::encoding::DefaultFuchsiaResourceDialect>,
23214            T1: fidl::encoding::Encode<
23215                fidl::encoding::OptionalUnion<NodeInfoDeprecated>,
23216                fidl::encoding::DefaultFuchsiaResourceDialect,
23217            >,
23218        >
23219        fidl::encoding::Encode<NodeOnOpenRequest, fidl::encoding::DefaultFuchsiaResourceDialect>
23220        for (T0, T1)
23221    {
23222        #[inline]
23223        unsafe fn encode(
23224            self,
23225            encoder: &mut fidl::encoding::Encoder<
23226                '_,
23227                fidl::encoding::DefaultFuchsiaResourceDialect,
23228            >,
23229            offset: usize,
23230            depth: fidl::encoding::Depth,
23231        ) -> fidl::Result<()> {
23232            encoder.debug_check_bounds::<NodeOnOpenRequest>(offset);
23233            // Zero out padding regions. There's no need to apply masks
23234            // because the unmasked parts will be overwritten by fields.
23235            unsafe {
23236                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
23237                (ptr as *mut u64).write_unaligned(0);
23238            }
23239            // Write the fields.
23240            self.0.encode(encoder, offset + 0, depth)?;
23241            self.1.encode(encoder, offset + 8, depth)?;
23242            Ok(())
23243        }
23244    }
23245
23246    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
23247        for NodeOnOpenRequest
23248    {
23249        #[inline(always)]
23250        fn new_empty() -> Self {
23251            Self {
23252                s: fidl::new_empty!(i32, fidl::encoding::DefaultFuchsiaResourceDialect),
23253                info: fidl::new_empty!(
23254                    fidl::encoding::OptionalUnion<NodeInfoDeprecated>,
23255                    fidl::encoding::DefaultFuchsiaResourceDialect
23256                ),
23257            }
23258        }
23259
23260        #[inline]
23261        unsafe fn decode(
23262            &mut self,
23263            decoder: &mut fidl::encoding::Decoder<
23264                '_,
23265                fidl::encoding::DefaultFuchsiaResourceDialect,
23266            >,
23267            offset: usize,
23268            _depth: fidl::encoding::Depth,
23269        ) -> fidl::Result<()> {
23270            decoder.debug_check_bounds::<Self>(offset);
23271            // Verify that padding bytes are zero.
23272            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
23273            let padval = unsafe { (ptr as *const u64).read_unaligned() };
23274            let mask = 0xffffffff00000000u64;
23275            let maskedval = padval & mask;
23276            if maskedval != 0 {
23277                return Err(fidl::Error::NonZeroPadding {
23278                    padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
23279                });
23280            }
23281            fidl::decode!(
23282                i32,
23283                fidl::encoding::DefaultFuchsiaResourceDialect,
23284                &mut self.s,
23285                decoder,
23286                offset + 0,
23287                _depth
23288            )?;
23289            fidl::decode!(
23290                fidl::encoding::OptionalUnion<NodeInfoDeprecated>,
23291                fidl::encoding::DefaultFuchsiaResourceDialect,
23292                &mut self.info,
23293                decoder,
23294                offset + 8,
23295                _depth
23296            )?;
23297            Ok(())
23298        }
23299    }
23300
23301    impl fidl::encoding::ResourceTypeMarker for NodeSetExtendedAttributeRequest {
23302        type Borrowed<'a> = &'a mut Self;
23303        fn take_or_borrow<'a>(
23304            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
23305        ) -> Self::Borrowed<'a> {
23306            value
23307        }
23308    }
23309
23310    unsafe impl fidl::encoding::TypeMarker for NodeSetExtendedAttributeRequest {
23311        type Owned = Self;
23312
23313        #[inline(always)]
23314        fn inline_align(_context: fidl::encoding::Context) -> usize {
23315            8
23316        }
23317
23318        #[inline(always)]
23319        fn inline_size(_context: fidl::encoding::Context) -> usize {
23320            40
23321        }
23322    }
23323
23324    unsafe impl
23325        fidl::encoding::Encode<
23326            NodeSetExtendedAttributeRequest,
23327            fidl::encoding::DefaultFuchsiaResourceDialect,
23328        > for &mut NodeSetExtendedAttributeRequest
23329    {
23330        #[inline]
23331        unsafe fn encode(
23332            self,
23333            encoder: &mut fidl::encoding::Encoder<
23334                '_,
23335                fidl::encoding::DefaultFuchsiaResourceDialect,
23336            >,
23337            offset: usize,
23338            _depth: fidl::encoding::Depth,
23339        ) -> fidl::Result<()> {
23340            encoder.debug_check_bounds::<NodeSetExtendedAttributeRequest>(offset);
23341            // Delegate to tuple encoding.
23342            fidl::encoding::Encode::<
23343                NodeSetExtendedAttributeRequest,
23344                fidl::encoding::DefaultFuchsiaResourceDialect,
23345            >::encode(
23346                (
23347                    <fidl::encoding::Vector<u8, 255> as fidl::encoding::ValueTypeMarker>::borrow(
23348                        &self.name,
23349                    ),
23350                    <ExtendedAttributeValue as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
23351                        &mut self.value,
23352                    ),
23353                    <SetExtendedAttributeMode as fidl::encoding::ValueTypeMarker>::borrow(
23354                        &self.mode,
23355                    ),
23356                ),
23357                encoder,
23358                offset,
23359                _depth,
23360            )
23361        }
23362    }
23363    unsafe impl<
23364            T0: fidl::encoding::Encode<
23365                fidl::encoding::Vector<u8, 255>,
23366                fidl::encoding::DefaultFuchsiaResourceDialect,
23367            >,
23368            T1: fidl::encoding::Encode<
23369                ExtendedAttributeValue,
23370                fidl::encoding::DefaultFuchsiaResourceDialect,
23371            >,
23372            T2: fidl::encoding::Encode<
23373                SetExtendedAttributeMode,
23374                fidl::encoding::DefaultFuchsiaResourceDialect,
23375            >,
23376        >
23377        fidl::encoding::Encode<
23378            NodeSetExtendedAttributeRequest,
23379            fidl::encoding::DefaultFuchsiaResourceDialect,
23380        > for (T0, T1, T2)
23381    {
23382        #[inline]
23383        unsafe fn encode(
23384            self,
23385            encoder: &mut fidl::encoding::Encoder<
23386                '_,
23387                fidl::encoding::DefaultFuchsiaResourceDialect,
23388            >,
23389            offset: usize,
23390            depth: fidl::encoding::Depth,
23391        ) -> fidl::Result<()> {
23392            encoder.debug_check_bounds::<NodeSetExtendedAttributeRequest>(offset);
23393            // Zero out padding regions. There's no need to apply masks
23394            // because the unmasked parts will be overwritten by fields.
23395            unsafe {
23396                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(32);
23397                (ptr as *mut u64).write_unaligned(0);
23398            }
23399            // Write the fields.
23400            self.0.encode(encoder, offset + 0, depth)?;
23401            self.1.encode(encoder, offset + 16, depth)?;
23402            self.2.encode(encoder, offset + 32, depth)?;
23403            Ok(())
23404        }
23405    }
23406
23407    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
23408        for NodeSetExtendedAttributeRequest
23409    {
23410        #[inline(always)]
23411        fn new_empty() -> Self {
23412            Self {
23413                name: fidl::new_empty!(fidl::encoding::Vector<u8, 255>, fidl::encoding::DefaultFuchsiaResourceDialect),
23414                value: fidl::new_empty!(
23415                    ExtendedAttributeValue,
23416                    fidl::encoding::DefaultFuchsiaResourceDialect
23417                ),
23418                mode: fidl::new_empty!(
23419                    SetExtendedAttributeMode,
23420                    fidl::encoding::DefaultFuchsiaResourceDialect
23421                ),
23422            }
23423        }
23424
23425        #[inline]
23426        unsafe fn decode(
23427            &mut self,
23428            decoder: &mut fidl::encoding::Decoder<
23429                '_,
23430                fidl::encoding::DefaultFuchsiaResourceDialect,
23431            >,
23432            offset: usize,
23433            _depth: fidl::encoding::Depth,
23434        ) -> fidl::Result<()> {
23435            decoder.debug_check_bounds::<Self>(offset);
23436            // Verify that padding bytes are zero.
23437            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(32) };
23438            let padval = unsafe { (ptr as *const u64).read_unaligned() };
23439            let mask = 0xffffffff00000000u64;
23440            let maskedval = padval & mask;
23441            if maskedval != 0 {
23442                return Err(fidl::Error::NonZeroPadding {
23443                    padding_start: offset + 32 + ((mask as u64).trailing_zeros() / 8) as usize,
23444                });
23445            }
23446            fidl::decode!(fidl::encoding::Vector<u8, 255>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.name, decoder, offset + 0, _depth)?;
23447            fidl::decode!(
23448                ExtendedAttributeValue,
23449                fidl::encoding::DefaultFuchsiaResourceDialect,
23450                &mut self.value,
23451                decoder,
23452                offset + 16,
23453                _depth
23454            )?;
23455            fidl::decode!(
23456                SetExtendedAttributeMode,
23457                fidl::encoding::DefaultFuchsiaResourceDialect,
23458                &mut self.mode,
23459                decoder,
23460                offset + 32,
23461                _depth
23462            )?;
23463            Ok(())
23464        }
23465    }
23466
23467    impl ConnectionInfo {
23468        #[inline(always)]
23469        fn max_ordinal_present(&self) -> u64 {
23470            if let Some(_) = self.rights {
23471                return 1;
23472            }
23473            0
23474        }
23475    }
23476
23477    impl fidl::encoding::ResourceTypeMarker for ConnectionInfo {
23478        type Borrowed<'a> = &'a mut Self;
23479        fn take_or_borrow<'a>(
23480            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
23481        ) -> Self::Borrowed<'a> {
23482            value
23483        }
23484    }
23485
23486    unsafe impl fidl::encoding::TypeMarker for ConnectionInfo {
23487        type Owned = Self;
23488
23489        #[inline(always)]
23490        fn inline_align(_context: fidl::encoding::Context) -> usize {
23491            8
23492        }
23493
23494        #[inline(always)]
23495        fn inline_size(_context: fidl::encoding::Context) -> usize {
23496            16
23497        }
23498    }
23499
23500    unsafe impl
23501        fidl::encoding::Encode<ConnectionInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
23502        for &mut ConnectionInfo
23503    {
23504        unsafe fn encode(
23505            self,
23506            encoder: &mut fidl::encoding::Encoder<
23507                '_,
23508                fidl::encoding::DefaultFuchsiaResourceDialect,
23509            >,
23510            offset: usize,
23511            mut depth: fidl::encoding::Depth,
23512        ) -> fidl::Result<()> {
23513            encoder.debug_check_bounds::<ConnectionInfo>(offset);
23514            // Vector header
23515            let max_ordinal: u64 = self.max_ordinal_present();
23516            encoder.write_num(max_ordinal, offset);
23517            encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
23518            // Calling encoder.out_of_line_offset(0) is not allowed.
23519            if max_ordinal == 0 {
23520                return Ok(());
23521            }
23522            depth.increment()?;
23523            let envelope_size = 8;
23524            let bytes_len = max_ordinal as usize * envelope_size;
23525            #[allow(unused_variables)]
23526            let offset = encoder.out_of_line_offset(bytes_len);
23527            let mut _prev_end_offset: usize = 0;
23528            if 1 > max_ordinal {
23529                return Ok(());
23530            }
23531
23532            // Write at offset+(ordinal-1)*envelope_size, since ordinals are one-based and envelopes
23533            // are envelope_size bytes.
23534            let cur_offset: usize = (1 - 1) * envelope_size;
23535
23536            // Zero reserved fields.
23537            encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23538
23539            // Safety:
23540            // - bytes_len is calculated to fit envelope_size*max(member.ordinal).
23541            // - Since cur_offset is envelope_size*(member.ordinal - 1) and the envelope takes
23542            //   envelope_size bytes, there is always sufficient room.
23543            fidl::encoding::encode_in_envelope_optional::<
23544                Operations,
23545                fidl::encoding::DefaultFuchsiaResourceDialect,
23546            >(
23547                self.rights.as_ref().map(<Operations as fidl::encoding::ValueTypeMarker>::borrow),
23548                encoder,
23549                offset + cur_offset,
23550                depth,
23551            )?;
23552
23553            _prev_end_offset = cur_offset + envelope_size;
23554
23555            Ok(())
23556        }
23557    }
23558
23559    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
23560        for ConnectionInfo
23561    {
23562        #[inline(always)]
23563        fn new_empty() -> Self {
23564            Self::default()
23565        }
23566
23567        unsafe fn decode(
23568            &mut self,
23569            decoder: &mut fidl::encoding::Decoder<
23570                '_,
23571                fidl::encoding::DefaultFuchsiaResourceDialect,
23572            >,
23573            offset: usize,
23574            mut depth: fidl::encoding::Depth,
23575        ) -> fidl::Result<()> {
23576            decoder.debug_check_bounds::<Self>(offset);
23577            let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
23578                None => return Err(fidl::Error::NotNullable),
23579                Some(len) => len,
23580            };
23581            // Calling decoder.out_of_line_offset(0) is not allowed.
23582            if len == 0 {
23583                return Ok(());
23584            };
23585            depth.increment()?;
23586            let envelope_size = 8;
23587            let bytes_len = len * envelope_size;
23588            let offset = decoder.out_of_line_offset(bytes_len)?;
23589            // Decode the envelope for each type.
23590            let mut _next_ordinal_to_read = 0;
23591            let mut next_offset = offset;
23592            let end_offset = offset + bytes_len;
23593            _next_ordinal_to_read += 1;
23594            if next_offset >= end_offset {
23595                return Ok(());
23596            }
23597
23598            // Decode unknown envelopes for gaps in ordinals.
23599            while _next_ordinal_to_read < 1 {
23600                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
23601                _next_ordinal_to_read += 1;
23602                next_offset += envelope_size;
23603            }
23604
23605            let next_out_of_line = decoder.next_out_of_line();
23606            let handles_before = decoder.remaining_handles();
23607            if let Some((inlined, num_bytes, num_handles)) =
23608                fidl::encoding::decode_envelope_header(decoder, next_offset)?
23609            {
23610                let member_inline_size =
23611                    <Operations as fidl::encoding::TypeMarker>::inline_size(decoder.context);
23612                if inlined != (member_inline_size <= 4) {
23613                    return Err(fidl::Error::InvalidInlineBitInEnvelope);
23614                }
23615                let inner_offset;
23616                let mut inner_depth = depth.clone();
23617                if inlined {
23618                    decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
23619                    inner_offset = next_offset;
23620                } else {
23621                    inner_offset = decoder.out_of_line_offset(member_inline_size)?;
23622                    inner_depth.increment()?;
23623                }
23624                let val_ref = self.rights.get_or_insert_with(|| {
23625                    fidl::new_empty!(Operations, fidl::encoding::DefaultFuchsiaResourceDialect)
23626                });
23627                fidl::decode!(
23628                    Operations,
23629                    fidl::encoding::DefaultFuchsiaResourceDialect,
23630                    val_ref,
23631                    decoder,
23632                    inner_offset,
23633                    inner_depth
23634                )?;
23635                if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
23636                {
23637                    return Err(fidl::Error::InvalidNumBytesInEnvelope);
23638                }
23639                if handles_before != decoder.remaining_handles() + (num_handles as usize) {
23640                    return Err(fidl::Error::InvalidNumHandlesInEnvelope);
23641                }
23642            }
23643
23644            next_offset += envelope_size;
23645
23646            // Decode the remaining unknown envelopes.
23647            while next_offset < end_offset {
23648                _next_ordinal_to_read += 1;
23649                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
23650                next_offset += envelope_size;
23651            }
23652
23653            Ok(())
23654        }
23655    }
23656
23657    impl FileInfo {
23658        #[inline(always)]
23659        fn max_ordinal_present(&self) -> u64 {
23660            if let Some(_) = self.attributes {
23661                return 4;
23662            }
23663            if let Some(_) = self.stream {
23664                return 3;
23665            }
23666            if let Some(_) = self.observer {
23667                return 2;
23668            }
23669            if let Some(_) = self.is_append {
23670                return 1;
23671            }
23672            0
23673        }
23674    }
23675
23676    impl fidl::encoding::ResourceTypeMarker for FileInfo {
23677        type Borrowed<'a> = &'a mut Self;
23678        fn take_or_borrow<'a>(
23679            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
23680        ) -> Self::Borrowed<'a> {
23681            value
23682        }
23683    }
23684
23685    unsafe impl fidl::encoding::TypeMarker for FileInfo {
23686        type Owned = Self;
23687
23688        #[inline(always)]
23689        fn inline_align(_context: fidl::encoding::Context) -> usize {
23690            8
23691        }
23692
23693        #[inline(always)]
23694        fn inline_size(_context: fidl::encoding::Context) -> usize {
23695            16
23696        }
23697    }
23698
23699    unsafe impl fidl::encoding::Encode<FileInfo, fidl::encoding::DefaultFuchsiaResourceDialect>
23700        for &mut FileInfo
23701    {
23702        unsafe fn encode(
23703            self,
23704            encoder: &mut fidl::encoding::Encoder<
23705                '_,
23706                fidl::encoding::DefaultFuchsiaResourceDialect,
23707            >,
23708            offset: usize,
23709            mut depth: fidl::encoding::Depth,
23710        ) -> fidl::Result<()> {
23711            encoder.debug_check_bounds::<FileInfo>(offset);
23712            // Vector header
23713            let max_ordinal: u64 = self.max_ordinal_present();
23714            encoder.write_num(max_ordinal, offset);
23715            encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
23716            // Calling encoder.out_of_line_offset(0) is not allowed.
23717            if max_ordinal == 0 {
23718                return Ok(());
23719            }
23720            depth.increment()?;
23721            let envelope_size = 8;
23722            let bytes_len = max_ordinal as usize * envelope_size;
23723            #[allow(unused_variables)]
23724            let offset = encoder.out_of_line_offset(bytes_len);
23725            let mut _prev_end_offset: usize = 0;
23726            if 1 > max_ordinal {
23727                return Ok(());
23728            }
23729
23730            // Write at offset+(ordinal-1)*envelope_size, since ordinals are one-based and envelopes
23731            // are envelope_size bytes.
23732            let cur_offset: usize = (1 - 1) * envelope_size;
23733
23734            // Zero reserved fields.
23735            encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23736
23737            // Safety:
23738            // - bytes_len is calculated to fit envelope_size*max(member.ordinal).
23739            // - Since cur_offset is envelope_size*(member.ordinal - 1) and the envelope takes
23740            //   envelope_size bytes, there is always sufficient room.
23741            fidl::encoding::encode_in_envelope_optional::<
23742                bool,
23743                fidl::encoding::DefaultFuchsiaResourceDialect,
23744            >(
23745                self.is_append.as_ref().map(<bool as fidl::encoding::ValueTypeMarker>::borrow),
23746                encoder,
23747                offset + cur_offset,
23748                depth,
23749            )?;
23750
23751            _prev_end_offset = cur_offset + envelope_size;
23752            if 2 > max_ordinal {
23753                return Ok(());
23754            }
23755
23756            // Write at offset+(ordinal-1)*envelope_size, since ordinals are one-based and envelopes
23757            // are envelope_size bytes.
23758            let cur_offset: usize = (2 - 1) * envelope_size;
23759
23760            // Zero reserved fields.
23761            encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23762
23763            // Safety:
23764            // - bytes_len is calculated to fit envelope_size*max(member.ordinal).
23765            // - Since cur_offset is envelope_size*(member.ordinal - 1) and the envelope takes
23766            //   envelope_size bytes, there is always sufficient room.
23767            fidl::encoding::encode_in_envelope_optional::<
23768                fidl::encoding::HandleType<
23769                    fidl::Event,
23770                    { fidl::ObjectType::EVENT.into_raw() },
23771                    2147483648,
23772                >,
23773                fidl::encoding::DefaultFuchsiaResourceDialect,
23774            >(
23775                self.observer.as_mut().map(
23776                    <fidl::encoding::HandleType<
23777                        fidl::Event,
23778                        { fidl::ObjectType::EVENT.into_raw() },
23779                        2147483648,
23780                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
23781                ),
23782                encoder,
23783                offset + cur_offset,
23784                depth,
23785            )?;
23786
23787            _prev_end_offset = cur_offset + envelope_size;
23788            if 3 > max_ordinal {
23789                return Ok(());
23790            }
23791
23792            // Write at offset+(ordinal-1)*envelope_size, since ordinals are one-based and envelopes
23793            // are envelope_size bytes.
23794            let cur_offset: usize = (3 - 1) * envelope_size;
23795
23796            // Zero reserved fields.
23797            encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23798
23799            // Safety:
23800            // - bytes_len is calculated to fit envelope_size*max(member.ordinal).
23801            // - Since cur_offset is envelope_size*(member.ordinal - 1) and the envelope takes
23802            //   envelope_size bytes, there is always sufficient room.
23803            fidl::encoding::encode_in_envelope_optional::<
23804                fidl::encoding::HandleType<
23805                    fidl::Stream,
23806                    { fidl::ObjectType::STREAM.into_raw() },
23807                    2147483648,
23808                >,
23809                fidl::encoding::DefaultFuchsiaResourceDialect,
23810            >(
23811                self.stream.as_mut().map(
23812                    <fidl::encoding::HandleType<
23813                        fidl::Stream,
23814                        { fidl::ObjectType::STREAM.into_raw() },
23815                        2147483648,
23816                    > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
23817                ),
23818                encoder,
23819                offset + cur_offset,
23820                depth,
23821            )?;
23822
23823            _prev_end_offset = cur_offset + envelope_size;
23824            if 4 > max_ordinal {
23825                return Ok(());
23826            }
23827
23828            // Write at offset+(ordinal-1)*envelope_size, since ordinals are one-based and envelopes
23829            // are envelope_size bytes.
23830            let cur_offset: usize = (4 - 1) * envelope_size;
23831
23832            // Zero reserved fields.
23833            encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23834
23835            // Safety:
23836            // - bytes_len is calculated to fit envelope_size*max(member.ordinal).
23837            // - Since cur_offset is envelope_size*(member.ordinal - 1) and the envelope takes
23838            //   envelope_size bytes, there is always sufficient room.
23839            fidl::encoding::encode_in_envelope_optional::<
23840                NodeAttributes2,
23841                fidl::encoding::DefaultFuchsiaResourceDialect,
23842            >(
23843                self.attributes
23844                    .as_ref()
23845                    .map(<NodeAttributes2 as fidl::encoding::ValueTypeMarker>::borrow),
23846                encoder,
23847                offset + cur_offset,
23848                depth,
23849            )?;
23850
23851            _prev_end_offset = cur_offset + envelope_size;
23852
23853            Ok(())
23854        }
23855    }
23856
23857    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect> for FileInfo {
23858        #[inline(always)]
23859        fn new_empty() -> Self {
23860            Self::default()
23861        }
23862
23863        unsafe fn decode(
23864            &mut self,
23865            decoder: &mut fidl::encoding::Decoder<
23866                '_,
23867                fidl::encoding::DefaultFuchsiaResourceDialect,
23868            >,
23869            offset: usize,
23870            mut depth: fidl::encoding::Depth,
23871        ) -> fidl::Result<()> {
23872            decoder.debug_check_bounds::<Self>(offset);
23873            let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
23874                None => return Err(fidl::Error::NotNullable),
23875                Some(len) => len,
23876            };
23877            // Calling decoder.out_of_line_offset(0) is not allowed.
23878            if len == 0 {
23879                return Ok(());
23880            };
23881            depth.increment()?;
23882            let envelope_size = 8;
23883            let bytes_len = len * envelope_size;
23884            let offset = decoder.out_of_line_offset(bytes_len)?;
23885            // Decode the envelope for each type.
23886            let mut _next_ordinal_to_read = 0;
23887            let mut next_offset = offset;
23888            let end_offset = offset + bytes_len;
23889            _next_ordinal_to_read += 1;
23890            if next_offset >= end_offset {
23891                return Ok(());
23892            }
23893
23894            // Decode unknown envelopes for gaps in ordinals.
23895            while _next_ordinal_to_read < 1 {
23896                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
23897                _next_ordinal_to_read += 1;
23898                next_offset += envelope_size;
23899            }
23900
23901            let next_out_of_line = decoder.next_out_of_line();
23902            let handles_before = decoder.remaining_handles();
23903            if let Some((inlined, num_bytes, num_handles)) =
23904                fidl::encoding::decode_envelope_header(decoder, next_offset)?
23905            {
23906                let member_inline_size =
23907                    <bool as fidl::encoding::TypeMarker>::inline_size(decoder.context);
23908                if inlined != (member_inline_size <= 4) {
23909                    return Err(fidl::Error::InvalidInlineBitInEnvelope);
23910                }
23911                let inner_offset;
23912                let mut inner_depth = depth.clone();
23913                if inlined {
23914                    decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
23915                    inner_offset = next_offset;
23916                } else {
23917                    inner_offset = decoder.out_of_line_offset(member_inline_size)?;
23918                    inner_depth.increment()?;
23919                }
23920                let val_ref = self.is_append.get_or_insert_with(|| {
23921                    fidl::new_empty!(bool, fidl::encoding::DefaultFuchsiaResourceDialect)
23922                });
23923                fidl::decode!(
23924                    bool,
23925                    fidl::encoding::DefaultFuchsiaResourceDialect,
23926                    val_ref,
23927                    decoder,
23928                    inner_offset,
23929                    inner_depth
23930                )?;
23931                if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
23932                {
23933                    return Err(fidl::Error::InvalidNumBytesInEnvelope);
23934                }
23935                if handles_before != decoder.remaining_handles() + (num_handles as usize) {
23936                    return Err(fidl::Error::InvalidNumHandlesInEnvelope);
23937                }
23938            }
23939
23940            next_offset += envelope_size;
23941            _next_ordinal_to_read += 1;
23942            if next_offset >= end_offset {
23943                return Ok(());
23944            }
23945
23946            // Decode unknown envelopes for gaps in ordinals.
23947            while _next_ordinal_to_read < 2 {
23948                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
23949                _next_ordinal_to_read += 1;
23950                next_offset += envelope_size;
23951            }
23952
23953            let next_out_of_line = decoder.next_out_of_line();
23954            let handles_before = decoder.remaining_handles();
23955            if let Some((inlined, num_bytes, num_handles)) =
23956                fidl::encoding::decode_envelope_header(decoder, next_offset)?
23957            {
23958                let member_inline_size = <fidl::encoding::HandleType<
23959                    fidl::Event,
23960                    { fidl::ObjectType::EVENT.into_raw() },
23961                    2147483648,
23962                > as fidl::encoding::TypeMarker>::inline_size(
23963                    decoder.context
23964                );
23965                if inlined != (member_inline_size <= 4) {
23966                    return Err(fidl::Error::InvalidInlineBitInEnvelope);
23967                }
23968                let inner_offset;
23969                let mut inner_depth = depth.clone();
23970                if inlined {
23971                    decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
23972                    inner_offset = next_offset;
23973                } else {
23974                    inner_offset = decoder.out_of_line_offset(member_inline_size)?;
23975                    inner_depth.increment()?;
23976                }
23977                let val_ref =
23978                self.observer.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
23979                fidl::decode!(fidl::encoding::HandleType<fidl::Event, { fidl::ObjectType::EVENT.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
23980                if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
23981                {
23982                    return Err(fidl::Error::InvalidNumBytesInEnvelope);
23983                }
23984                if handles_before != decoder.remaining_handles() + (num_handles as usize) {
23985                    return Err(fidl::Error::InvalidNumHandlesInEnvelope);
23986                }
23987            }
23988
23989            next_offset += envelope_size;
23990            _next_ordinal_to_read += 1;
23991            if next_offset >= end_offset {
23992                return Ok(());
23993            }
23994
23995            // Decode unknown envelopes for gaps in ordinals.
23996            while _next_ordinal_to_read < 3 {
23997                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
23998                _next_ordinal_to_read += 1;
23999                next_offset += envelope_size;
24000            }
24001
24002            let next_out_of_line = decoder.next_out_of_line();
24003            let handles_before = decoder.remaining_handles();
24004            if let Some((inlined, num_bytes, num_handles)) =
24005                fidl::encoding::decode_envelope_header(decoder, next_offset)?
24006            {
24007                let member_inline_size = <fidl::encoding::HandleType<
24008                    fidl::Stream,
24009                    { fidl::ObjectType::STREAM.into_raw() },
24010                    2147483648,
24011                > as fidl::encoding::TypeMarker>::inline_size(
24012                    decoder.context
24013                );
24014                if inlined != (member_inline_size <= 4) {
24015                    return Err(fidl::Error::InvalidInlineBitInEnvelope);
24016                }
24017                let inner_offset;
24018                let mut inner_depth = depth.clone();
24019                if inlined {
24020                    decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
24021                    inner_offset = next_offset;
24022                } else {
24023                    inner_offset = decoder.out_of_line_offset(member_inline_size)?;
24024                    inner_depth.increment()?;
24025                }
24026                let val_ref =
24027                self.stream.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Stream, { fidl::ObjectType::STREAM.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
24028                fidl::decode!(fidl::encoding::HandleType<fidl::Stream, { fidl::ObjectType::STREAM.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
24029                if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
24030                {
24031                    return Err(fidl::Error::InvalidNumBytesInEnvelope);
24032                }
24033                if handles_before != decoder.remaining_handles() + (num_handles as usize) {
24034                    return Err(fidl::Error::InvalidNumHandlesInEnvelope);
24035                }
24036            }
24037
24038            next_offset += envelope_size;
24039            _next_ordinal_to_read += 1;
24040            if next_offset >= end_offset {
24041                return Ok(());
24042            }
24043
24044            // Decode unknown envelopes for gaps in ordinals.
24045            while _next_ordinal_to_read < 4 {
24046                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
24047                _next_ordinal_to_read += 1;
24048                next_offset += envelope_size;
24049            }
24050
24051            let next_out_of_line = decoder.next_out_of_line();
24052            let handles_before = decoder.remaining_handles();
24053            if let Some((inlined, num_bytes, num_handles)) =
24054                fidl::encoding::decode_envelope_header(decoder, next_offset)?
24055            {
24056                let member_inline_size =
24057                    <NodeAttributes2 as fidl::encoding::TypeMarker>::inline_size(decoder.context);
24058                if inlined != (member_inline_size <= 4) {
24059                    return Err(fidl::Error::InvalidInlineBitInEnvelope);
24060                }
24061                let inner_offset;
24062                let mut inner_depth = depth.clone();
24063                if inlined {
24064                    decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
24065                    inner_offset = next_offset;
24066                } else {
24067                    inner_offset = decoder.out_of_line_offset(member_inline_size)?;
24068                    inner_depth.increment()?;
24069                }
24070                let val_ref = self.attributes.get_or_insert_with(|| {
24071                    fidl::new_empty!(NodeAttributes2, fidl::encoding::DefaultFuchsiaResourceDialect)
24072                });
24073                fidl::decode!(
24074                    NodeAttributes2,
24075                    fidl::encoding::DefaultFuchsiaResourceDialect,
24076                    val_ref,
24077                    decoder,
24078                    inner_offset,
24079                    inner_depth
24080                )?;
24081                if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
24082                {
24083                    return Err(fidl::Error::InvalidNumBytesInEnvelope);
24084                }
24085                if handles_before != decoder.remaining_handles() + (num_handles as usize) {
24086                    return Err(fidl::Error::InvalidNumHandlesInEnvelope);
24087                }
24088            }
24089
24090            next_offset += envelope_size;
24091
24092            // Decode the remaining unknown envelopes.
24093            while next_offset < end_offset {
24094                _next_ordinal_to_read += 1;
24095                fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
24096                next_offset += envelope_size;
24097            }
24098
24099            Ok(())
24100        }
24101    }
24102
24103    impl fidl::encoding::ResourceTypeMarker for ExtendedAttributeValue {
24104        type Borrowed<'a> = &'a mut Self;
24105        fn take_or_borrow<'a>(
24106            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
24107        ) -> Self::Borrowed<'a> {
24108            value
24109        }
24110    }
24111
24112    unsafe impl fidl::encoding::TypeMarker for ExtendedAttributeValue {
24113        type Owned = Self;
24114
24115        #[inline(always)]
24116        fn inline_align(_context: fidl::encoding::Context) -> usize {
24117            8
24118        }
24119
24120        #[inline(always)]
24121        fn inline_size(_context: fidl::encoding::Context) -> usize {
24122            16
24123        }
24124    }
24125
24126    unsafe impl
24127        fidl::encoding::Encode<
24128            ExtendedAttributeValue,
24129            fidl::encoding::DefaultFuchsiaResourceDialect,
24130        > for &mut ExtendedAttributeValue
24131    {
24132        #[inline]
24133        unsafe fn encode(
24134            self,
24135            encoder: &mut fidl::encoding::Encoder<
24136                '_,
24137                fidl::encoding::DefaultFuchsiaResourceDialect,
24138            >,
24139            offset: usize,
24140            _depth: fidl::encoding::Depth,
24141        ) -> fidl::Result<()> {
24142            encoder.debug_check_bounds::<ExtendedAttributeValue>(offset);
24143            encoder.write_num::<u64>(self.ordinal(), offset);
24144            match self {
24145                ExtendedAttributeValue::Bytes(ref val) => fidl::encoding::encode_in_envelope::<
24146                    fidl::encoding::Vector<u8, 32768>,
24147                    fidl::encoding::DefaultFuchsiaResourceDialect,
24148                >(
24149                    <fidl::encoding::Vector<u8, 32768> as fidl::encoding::ValueTypeMarker>::borrow(
24150                        val,
24151                    ),
24152                    encoder,
24153                    offset + 8,
24154                    _depth,
24155                ),
24156                ExtendedAttributeValue::Buffer(ref mut val) => {
24157                    fidl::encoding::encode_in_envelope::<
24158                        fidl::encoding::HandleType<
24159                            fidl::Vmo,
24160                            { fidl::ObjectType::VMO.into_raw() },
24161                            2147483648,
24162                        >,
24163                        fidl::encoding::DefaultFuchsiaResourceDialect,
24164                    >(
24165                        <fidl::encoding::HandleType<
24166                            fidl::Vmo,
24167                            { fidl::ObjectType::VMO.into_raw() },
24168                            2147483648,
24169                        > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
24170                            val
24171                        ),
24172                        encoder,
24173                        offset + 8,
24174                        _depth,
24175                    )
24176                }
24177                ExtendedAttributeValue::__SourceBreaking { .. } => {
24178                    Err(fidl::Error::UnknownUnionTag)
24179                }
24180            }
24181        }
24182    }
24183
24184    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
24185        for ExtendedAttributeValue
24186    {
24187        #[inline(always)]
24188        fn new_empty() -> Self {
24189            Self::__SourceBreaking { unknown_ordinal: 0 }
24190        }
24191
24192        #[inline]
24193        unsafe fn decode(
24194            &mut self,
24195            decoder: &mut fidl::encoding::Decoder<
24196                '_,
24197                fidl::encoding::DefaultFuchsiaResourceDialect,
24198            >,
24199            offset: usize,
24200            mut depth: fidl::encoding::Depth,
24201        ) -> fidl::Result<()> {
24202            decoder.debug_check_bounds::<Self>(offset);
24203            #[allow(unused_variables)]
24204            let next_out_of_line = decoder.next_out_of_line();
24205            let handles_before = decoder.remaining_handles();
24206            let (ordinal, inlined, num_bytes, num_handles) =
24207                fidl::encoding::decode_union_inline_portion(decoder, offset)?;
24208
24209            let member_inline_size = match ordinal {
24210                1 => {
24211                    <fidl::encoding::Vector<u8, 32768> as fidl::encoding::TypeMarker>::inline_size(
24212                        decoder.context,
24213                    )
24214                }
24215                2 => <fidl::encoding::HandleType<
24216                    fidl::Vmo,
24217                    { fidl::ObjectType::VMO.into_raw() },
24218                    2147483648,
24219                > as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24220                0 => return Err(fidl::Error::UnknownUnionTag),
24221                _ => num_bytes as usize,
24222            };
24223
24224            if inlined != (member_inline_size <= 4) {
24225                return Err(fidl::Error::InvalidInlineBitInEnvelope);
24226            }
24227            let _inner_offset;
24228            if inlined {
24229                decoder.check_inline_envelope_padding(offset + 8, member_inline_size)?;
24230                _inner_offset = offset + 8;
24231            } else {
24232                depth.increment()?;
24233                _inner_offset = decoder.out_of_line_offset(member_inline_size)?;
24234            }
24235            match ordinal {
24236                1 => {
24237                    #[allow(irrefutable_let_patterns)]
24238                    if let ExtendedAttributeValue::Bytes(_) = self {
24239                        // Do nothing, read the value into the object
24240                    } else {
24241                        // Initialize `self` to the right variant
24242                        *self = ExtendedAttributeValue::Bytes(
24243                            fidl::new_empty!(fidl::encoding::Vector<u8, 32768>, fidl::encoding::DefaultFuchsiaResourceDialect),
24244                        );
24245                    }
24246                    #[allow(irrefutable_let_patterns)]
24247                    if let ExtendedAttributeValue::Bytes(ref mut val) = self {
24248                        fidl::decode!(fidl::encoding::Vector<u8, 32768>, fidl::encoding::DefaultFuchsiaResourceDialect, val, decoder, _inner_offset, depth)?;
24249                    } else {
24250                        unreachable!()
24251                    }
24252                }
24253                2 => {
24254                    #[allow(irrefutable_let_patterns)]
24255                    if let ExtendedAttributeValue::Buffer(_) = self {
24256                        // Do nothing, read the value into the object
24257                    } else {
24258                        // Initialize `self` to the right variant
24259                        *self = ExtendedAttributeValue::Buffer(
24260                            fidl::new_empty!(fidl::encoding::HandleType<fidl::Vmo, { fidl::ObjectType::VMO.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
24261                        );
24262                    }
24263                    #[allow(irrefutable_let_patterns)]
24264                    if let ExtendedAttributeValue::Buffer(ref mut val) = self {
24265                        fidl::decode!(fidl::encoding::HandleType<fidl::Vmo, { fidl::ObjectType::VMO.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val, decoder, _inner_offset, depth)?;
24266                    } else {
24267                        unreachable!()
24268                    }
24269                }
24270                #[allow(deprecated)]
24271                ordinal => {
24272                    for _ in 0..num_handles {
24273                        decoder.drop_next_handle()?;
24274                    }
24275                    *self = ExtendedAttributeValue::__SourceBreaking { unknown_ordinal: ordinal };
24276                }
24277            }
24278            if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize) {
24279                return Err(fidl::Error::InvalidNumBytesInEnvelope);
24280            }
24281            if handles_before != decoder.remaining_handles() + (num_handles as usize) {
24282                return Err(fidl::Error::InvalidNumHandlesInEnvelope);
24283            }
24284            Ok(())
24285        }
24286    }
24287
24288    impl fidl::encoding::ResourceTypeMarker for NodeInfoDeprecated {
24289        type Borrowed<'a> = &'a mut Self;
24290        fn take_or_borrow<'a>(
24291            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
24292        ) -> Self::Borrowed<'a> {
24293            value
24294        }
24295    }
24296
24297    unsafe impl fidl::encoding::TypeMarker for NodeInfoDeprecated {
24298        type Owned = Self;
24299
24300        #[inline(always)]
24301        fn inline_align(_context: fidl::encoding::Context) -> usize {
24302            8
24303        }
24304
24305        #[inline(always)]
24306        fn inline_size(_context: fidl::encoding::Context) -> usize {
24307            16
24308        }
24309    }
24310
24311    unsafe impl
24312        fidl::encoding::Encode<NodeInfoDeprecated, fidl::encoding::DefaultFuchsiaResourceDialect>
24313        for &mut NodeInfoDeprecated
24314    {
24315        #[inline]
24316        unsafe fn encode(
24317            self,
24318            encoder: &mut fidl::encoding::Encoder<
24319                '_,
24320                fidl::encoding::DefaultFuchsiaResourceDialect,
24321            >,
24322            offset: usize,
24323            _depth: fidl::encoding::Depth,
24324        ) -> fidl::Result<()> {
24325            encoder.debug_check_bounds::<NodeInfoDeprecated>(offset);
24326            encoder.write_num::<u64>(self.ordinal(), offset);
24327            match self {
24328                NodeInfoDeprecated::Service(ref val) => fidl::encoding::encode_in_envelope::<
24329                    Service,
24330                    fidl::encoding::DefaultFuchsiaResourceDialect,
24331                >(
24332                    <Service as fidl::encoding::ValueTypeMarker>::borrow(val),
24333                    encoder,
24334                    offset + 8,
24335                    _depth,
24336                ),
24337                NodeInfoDeprecated::File(ref mut val) => fidl::encoding::encode_in_envelope::<
24338                    FileObject,
24339                    fidl::encoding::DefaultFuchsiaResourceDialect,
24340                >(
24341                    <FileObject as fidl::encoding::ResourceTypeMarker>::take_or_borrow(val),
24342                    encoder,
24343                    offset + 8,
24344                    _depth,
24345                ),
24346                NodeInfoDeprecated::Directory(ref val) => fidl::encoding::encode_in_envelope::<
24347                    DirectoryObject,
24348                    fidl::encoding::DefaultFuchsiaResourceDialect,
24349                >(
24350                    <DirectoryObject as fidl::encoding::ValueTypeMarker>::borrow(val),
24351                    encoder,
24352                    offset + 8,
24353                    _depth,
24354                ),
24355                NodeInfoDeprecated::Symlink(ref val) => fidl::encoding::encode_in_envelope::<
24356                    SymlinkObject,
24357                    fidl::encoding::DefaultFuchsiaResourceDialect,
24358                >(
24359                    <SymlinkObject as fidl::encoding::ValueTypeMarker>::borrow(val),
24360                    encoder,
24361                    offset + 8,
24362                    _depth,
24363                ),
24364            }
24365        }
24366    }
24367
24368    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
24369        for NodeInfoDeprecated
24370    {
24371        #[inline(always)]
24372        fn new_empty() -> Self {
24373            Self::Service(fidl::new_empty!(Service, fidl::encoding::DefaultFuchsiaResourceDialect))
24374        }
24375
24376        #[inline]
24377        unsafe fn decode(
24378            &mut self,
24379            decoder: &mut fidl::encoding::Decoder<
24380                '_,
24381                fidl::encoding::DefaultFuchsiaResourceDialect,
24382            >,
24383            offset: usize,
24384            mut depth: fidl::encoding::Depth,
24385        ) -> fidl::Result<()> {
24386            decoder.debug_check_bounds::<Self>(offset);
24387            #[allow(unused_variables)]
24388            let next_out_of_line = decoder.next_out_of_line();
24389            let handles_before = decoder.remaining_handles();
24390            let (ordinal, inlined, num_bytes, num_handles) =
24391                fidl::encoding::decode_union_inline_portion(decoder, offset)?;
24392
24393            let member_inline_size = match ordinal {
24394                1 => <Service as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24395                2 => <FileObject as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24396                3 => <DirectoryObject as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24397                4 => <SymlinkObject as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24398                _ => return Err(fidl::Error::UnknownUnionTag),
24399            };
24400
24401            if inlined != (member_inline_size <= 4) {
24402                return Err(fidl::Error::InvalidInlineBitInEnvelope);
24403            }
24404            let _inner_offset;
24405            if inlined {
24406                decoder.check_inline_envelope_padding(offset + 8, member_inline_size)?;
24407                _inner_offset = offset + 8;
24408            } else {
24409                depth.increment()?;
24410                _inner_offset = decoder.out_of_line_offset(member_inline_size)?;
24411            }
24412            match ordinal {
24413                1 => {
24414                    #[allow(irrefutable_let_patterns)]
24415                    if let NodeInfoDeprecated::Service(_) = self {
24416                        // Do nothing, read the value into the object
24417                    } else {
24418                        // Initialize `self` to the right variant
24419                        *self = NodeInfoDeprecated::Service(fidl::new_empty!(
24420                            Service,
24421                            fidl::encoding::DefaultFuchsiaResourceDialect
24422                        ));
24423                    }
24424                    #[allow(irrefutable_let_patterns)]
24425                    if let NodeInfoDeprecated::Service(ref mut val) = self {
24426                        fidl::decode!(
24427                            Service,
24428                            fidl::encoding::DefaultFuchsiaResourceDialect,
24429                            val,
24430                            decoder,
24431                            _inner_offset,
24432                            depth
24433                        )?;
24434                    } else {
24435                        unreachable!()
24436                    }
24437                }
24438                2 => {
24439                    #[allow(irrefutable_let_patterns)]
24440                    if let NodeInfoDeprecated::File(_) = self {
24441                        // Do nothing, read the value into the object
24442                    } else {
24443                        // Initialize `self` to the right variant
24444                        *self = NodeInfoDeprecated::File(fidl::new_empty!(
24445                            FileObject,
24446                            fidl::encoding::DefaultFuchsiaResourceDialect
24447                        ));
24448                    }
24449                    #[allow(irrefutable_let_patterns)]
24450                    if let NodeInfoDeprecated::File(ref mut val) = self {
24451                        fidl::decode!(
24452                            FileObject,
24453                            fidl::encoding::DefaultFuchsiaResourceDialect,
24454                            val,
24455                            decoder,
24456                            _inner_offset,
24457                            depth
24458                        )?;
24459                    } else {
24460                        unreachable!()
24461                    }
24462                }
24463                3 => {
24464                    #[allow(irrefutable_let_patterns)]
24465                    if let NodeInfoDeprecated::Directory(_) = self {
24466                        // Do nothing, read the value into the object
24467                    } else {
24468                        // Initialize `self` to the right variant
24469                        *self = NodeInfoDeprecated::Directory(fidl::new_empty!(
24470                            DirectoryObject,
24471                            fidl::encoding::DefaultFuchsiaResourceDialect
24472                        ));
24473                    }
24474                    #[allow(irrefutable_let_patterns)]
24475                    if let NodeInfoDeprecated::Directory(ref mut val) = self {
24476                        fidl::decode!(
24477                            DirectoryObject,
24478                            fidl::encoding::DefaultFuchsiaResourceDialect,
24479                            val,
24480                            decoder,
24481                            _inner_offset,
24482                            depth
24483                        )?;
24484                    } else {
24485                        unreachable!()
24486                    }
24487                }
24488                4 => {
24489                    #[allow(irrefutable_let_patterns)]
24490                    if let NodeInfoDeprecated::Symlink(_) = self {
24491                        // Do nothing, read the value into the object
24492                    } else {
24493                        // Initialize `self` to the right variant
24494                        *self = NodeInfoDeprecated::Symlink(fidl::new_empty!(
24495                            SymlinkObject,
24496                            fidl::encoding::DefaultFuchsiaResourceDialect
24497                        ));
24498                    }
24499                    #[allow(irrefutable_let_patterns)]
24500                    if let NodeInfoDeprecated::Symlink(ref mut val) = self {
24501                        fidl::decode!(
24502                            SymlinkObject,
24503                            fidl::encoding::DefaultFuchsiaResourceDialect,
24504                            val,
24505                            decoder,
24506                            _inner_offset,
24507                            depth
24508                        )?;
24509                    } else {
24510                        unreachable!()
24511                    }
24512                }
24513                ordinal => panic!("unexpected ordinal {:?}", ordinal),
24514            }
24515            if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize) {
24516                return Err(fidl::Error::InvalidNumBytesInEnvelope);
24517            }
24518            if handles_before != decoder.remaining_handles() + (num_handles as usize) {
24519                return Err(fidl::Error::InvalidNumHandlesInEnvelope);
24520            }
24521            Ok(())
24522        }
24523    }
24524
24525    impl fidl::encoding::ResourceTypeMarker for Representation {
24526        type Borrowed<'a> = &'a mut Self;
24527        fn take_or_borrow<'a>(
24528            value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
24529        ) -> Self::Borrowed<'a> {
24530            value
24531        }
24532    }
24533
24534    unsafe impl fidl::encoding::TypeMarker for Representation {
24535        type Owned = Self;
24536
24537        #[inline(always)]
24538        fn inline_align(_context: fidl::encoding::Context) -> usize {
24539            8
24540        }
24541
24542        #[inline(always)]
24543        fn inline_size(_context: fidl::encoding::Context) -> usize {
24544            16
24545        }
24546    }
24547
24548    unsafe impl
24549        fidl::encoding::Encode<Representation, fidl::encoding::DefaultFuchsiaResourceDialect>
24550        for &mut Representation
24551    {
24552        #[inline]
24553        unsafe fn encode(
24554            self,
24555            encoder: &mut fidl::encoding::Encoder<
24556                '_,
24557                fidl::encoding::DefaultFuchsiaResourceDialect,
24558            >,
24559            offset: usize,
24560            _depth: fidl::encoding::Depth,
24561        ) -> fidl::Result<()> {
24562            encoder.debug_check_bounds::<Representation>(offset);
24563            encoder.write_num::<u64>(self.ordinal(), offset);
24564            match self {
24565                Representation::Node(ref val) => fidl::encoding::encode_in_envelope::<
24566                    NodeInfo,
24567                    fidl::encoding::DefaultFuchsiaResourceDialect,
24568                >(
24569                    <NodeInfo as fidl::encoding::ValueTypeMarker>::borrow(val),
24570                    encoder,
24571                    offset + 8,
24572                    _depth,
24573                ),
24574                Representation::Directory(ref val) => fidl::encoding::encode_in_envelope::<
24575                    DirectoryInfo,
24576                    fidl::encoding::DefaultFuchsiaResourceDialect,
24577                >(
24578                    <DirectoryInfo as fidl::encoding::ValueTypeMarker>::borrow(val),
24579                    encoder,
24580                    offset + 8,
24581                    _depth,
24582                ),
24583                Representation::File(ref mut val) => fidl::encoding::encode_in_envelope::<
24584                    FileInfo,
24585                    fidl::encoding::DefaultFuchsiaResourceDialect,
24586                >(
24587                    <FileInfo as fidl::encoding::ResourceTypeMarker>::take_or_borrow(val),
24588                    encoder,
24589                    offset + 8,
24590                    _depth,
24591                ),
24592                Representation::Symlink(ref val) => fidl::encoding::encode_in_envelope::<
24593                    SymlinkInfo,
24594                    fidl::encoding::DefaultFuchsiaResourceDialect,
24595                >(
24596                    <SymlinkInfo as fidl::encoding::ValueTypeMarker>::borrow(val),
24597                    encoder,
24598                    offset + 8,
24599                    _depth,
24600                ),
24601                Representation::__SourceBreaking { .. } => Err(fidl::Error::UnknownUnionTag),
24602            }
24603        }
24604    }
24605
24606    impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
24607        for Representation
24608    {
24609        #[inline(always)]
24610        fn new_empty() -> Self {
24611            Self::__SourceBreaking { unknown_ordinal: 0 }
24612        }
24613
24614        #[inline]
24615        unsafe fn decode(
24616            &mut self,
24617            decoder: &mut fidl::encoding::Decoder<
24618                '_,
24619                fidl::encoding::DefaultFuchsiaResourceDialect,
24620            >,
24621            offset: usize,
24622            mut depth: fidl::encoding::Depth,
24623        ) -> fidl::Result<()> {
24624            decoder.debug_check_bounds::<Self>(offset);
24625            #[allow(unused_variables)]
24626            let next_out_of_line = decoder.next_out_of_line();
24627            let handles_before = decoder.remaining_handles();
24628            let (ordinal, inlined, num_bytes, num_handles) =
24629                fidl::encoding::decode_union_inline_portion(decoder, offset)?;
24630
24631            let member_inline_size = match ordinal {
24632                1 => <NodeInfo as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24633                2 => <DirectoryInfo as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24634                3 => <FileInfo as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24635                4 => <SymlinkInfo as fidl::encoding::TypeMarker>::inline_size(decoder.context),
24636                0 => return Err(fidl::Error::UnknownUnionTag),
24637                _ => num_bytes as usize,
24638            };
24639
24640            if inlined != (member_inline_size <= 4) {
24641                return Err(fidl::Error::InvalidInlineBitInEnvelope);
24642            }
24643            let _inner_offset;
24644            if inlined {
24645                decoder.check_inline_envelope_padding(offset + 8, member_inline_size)?;
24646                _inner_offset = offset + 8;
24647            } else {
24648                depth.increment()?;
24649                _inner_offset = decoder.out_of_line_offset(member_inline_size)?;
24650            }
24651            match ordinal {
24652                1 => {
24653                    #[allow(irrefutable_let_patterns)]
24654                    if let Representation::Node(_) = self {
24655                        // Do nothing, read the value into the object
24656                    } else {
24657                        // Initialize `self` to the right variant
24658                        *self = Representation::Node(fidl::new_empty!(
24659                            NodeInfo,
24660                            fidl::encoding::DefaultFuchsiaResourceDialect
24661                        ));
24662                    }
24663                    #[allow(irrefutable_let_patterns)]
24664                    if let Representation::Node(ref mut val) = self {
24665                        fidl::decode!(
24666                            NodeInfo,
24667                            fidl::encoding::DefaultFuchsiaResourceDialect,
24668                            val,
24669                            decoder,
24670                            _inner_offset,
24671                            depth
24672                        )?;
24673                    } else {
24674                        unreachable!()
24675                    }
24676                }
24677                2 => {
24678                    #[allow(irrefutable_let_patterns)]
24679                    if let Representation::Directory(_) = self {
24680                        // Do nothing, read the value into the object
24681                    } else {
24682                        // Initialize `self` to the right variant
24683                        *self = Representation::Directory(fidl::new_empty!(
24684                            DirectoryInfo,
24685                            fidl::encoding::DefaultFuchsiaResourceDialect
24686                        ));
24687                    }
24688                    #[allow(irrefutable_let_patterns)]
24689                    if let Representation::Directory(ref mut val) = self {
24690                        fidl::decode!(
24691                            DirectoryInfo,
24692                            fidl::encoding::DefaultFuchsiaResourceDialect,
24693                            val,
24694                            decoder,
24695                            _inner_offset,
24696                            depth
24697                        )?;
24698                    } else {
24699                        unreachable!()
24700                    }
24701                }
24702                3 => {
24703                    #[allow(irrefutable_let_patterns)]
24704                    if let Representation::File(_) = self {
24705                        // Do nothing, read the value into the object
24706                    } else {
24707                        // Initialize `self` to the right variant
24708                        *self = Representation::File(fidl::new_empty!(
24709                            FileInfo,
24710                            fidl::encoding::DefaultFuchsiaResourceDialect
24711                        ));
24712                    }
24713                    #[allow(irrefutable_let_patterns)]
24714                    if let Representation::File(ref mut val) = self {
24715                        fidl::decode!(
24716                            FileInfo,
24717                            fidl::encoding::DefaultFuchsiaResourceDialect,
24718                            val,
24719                            decoder,
24720                            _inner_offset,
24721                            depth
24722                        )?;
24723                    } else {
24724                        unreachable!()
24725                    }
24726                }
24727                4 => {
24728                    #[allow(irrefutable_let_patterns)]
24729                    if let Representation::Symlink(_) = self {
24730                        // Do nothing, read the value into the object
24731                    } else {
24732                        // Initialize `self` to the right variant
24733                        *self = Representation::Symlink(fidl::new_empty!(
24734                            SymlinkInfo,
24735                            fidl::encoding::DefaultFuchsiaResourceDialect
24736                        ));
24737                    }
24738                    #[allow(irrefutable_let_patterns)]
24739                    if let Representation::Symlink(ref mut val) = self {
24740                        fidl::decode!(
24741                            SymlinkInfo,
24742                            fidl::encoding::DefaultFuchsiaResourceDialect,
24743                            val,
24744                            decoder,
24745                            _inner_offset,
24746                            depth
24747                        )?;
24748                    } else {
24749                        unreachable!()
24750                    }
24751                }
24752                #[allow(deprecated)]
24753                ordinal => {
24754                    for _ in 0..num_handles {
24755                        decoder.drop_next_handle()?;
24756                    }
24757                    *self = Representation::__SourceBreaking { unknown_ordinal: ordinal };
24758                }
24759            }
24760            if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize) {
24761                return Err(fidl::Error::InvalidNumBytesInEnvelope);
24762            }
24763            if handles_before != decoder.remaining_handles() + (num_handles as usize) {
24764                return Err(fidl::Error::InvalidNumHandlesInEnvelope);
24765            }
24766            Ok(())
24767        }
24768    }
24769}