1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_fuchsia_io_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14pub 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 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 pub event: Option<fidl::Event>,
117 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 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 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#[derive(Debug, Default, PartialEq)]
202pub struct FileInfo {
203 pub is_append: Option<bool>,
207 pub observer: Option<fidl::Event>,
220 pub stream: Option<fidl::Stream>,
227 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#[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#[macro_export]
250macro_rules! ExtendedAttributeValueUnknown {
251 () => {
252 _
253 };
254}
255
256impl 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 Service(Service),
297 File(FileObject),
299 Directory(DirectoryObject),
301 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 Node(NodeInfo),
329 Directory(DirectoryInfo),
331 File(FileInfo),
333 Symlink(SymlinkInfo),
335 #[doc(hidden)]
336 __SourceBreaking { unknown_ordinal: u64 },
337}
338
339#[macro_export]
341macro_rules! RepresentationUnknown {
342 () => {
343 _
344 };
345}
346
347impl 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 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 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 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 pub fn take_event_stream(&self) -> AdvisoryLockingEventStream {
539 AdvisoryLockingEventStream { event_receiver: self.client.take_event_receiver() }
540 }
541
542 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 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
654pub 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 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#[derive(Debug)]
772pub enum AdvisoryLockingRequest {
773 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 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
859impl std::ops::Drop for AdvisoryLockingAdvisoryLockResponder {
863 fn drop(&mut self) {
864 self.control_handle.shutdown();
865 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
880 std::mem::forget(self);
882 }
883}
884
885impl AdvisoryLockingAdvisoryLockResponder {
886 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn take_event_stream(&self) -> DirectoryEventStream {
1859 DirectoryEventStream { event_receiver: self.client.take_event_receiver() }
1860 }
1861
1862 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn r#sync(
2088 &self,
2089 ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
2090 {
2091 DirectoryProxyInterface::r#sync(self)
2092 }
2093
2094 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 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 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 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 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 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 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 pub fn r#rewind(
2223 &self,
2224 ) -> fidl::client::QueryResponseFut<i32, fidl::encoding::DefaultFuchsiaResourceDialect> {
2225 DirectoryProxyInterface::r#rewind(self)
2226 }
2227
2228 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 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 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 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 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 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: 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 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
3162pub 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 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#[derive(Debug)]
3768pub enum DirectoryRequest {
3769 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 Close {
3811 responder: DirectoryCloseResponder,
3812 },
3813 Query {
3814 responder: DirectoryQueryResponder,
3815 },
3816 DeprecatedClone {
3818 flags: OpenFlags,
3819 object: fidl::endpoints::ServerEnd<NodeMarker>,
3820 control_handle: DirectoryControlHandle,
3821 },
3822 GetAttr {
3826 responder: DirectoryGetAttrResponder,
3827 },
3828 SetAttr {
3835 flags: NodeAttributeFlags,
3836 attributes: NodeAttributes,
3837 responder: DirectorySetAttrResponder,
3838 },
3839 DeprecatedGetFlags {
3841 responder: DirectoryDeprecatedGetFlagsResponder,
3842 },
3843 DeprecatedSetFlags {
3845 flags: OpenFlags,
3846 responder: DirectoryDeprecatedSetFlagsResponder,
3847 },
3848 GetFlags {
3857 responder: DirectoryGetFlagsResponder,
3858 },
3859 SetFlags {
3869 flags: Flags,
3870 responder: DirectorySetFlagsResponder,
3871 },
3872 QueryFilesystem {
3874 responder: DirectoryQueryFilesystemResponder,
3875 },
3876 GetConnectionInfo {
3880 responder: DirectoryGetConnectionInfoResponder,
3881 },
3882 GetAttributes {
3896 query: NodeAttributesQuery,
3897 responder: DirectoryGetAttributesResponder,
3898 },
3899 UpdateAttributes {
3908 payload: MutableNodeAttributes,
3909 responder: DirectoryUpdateAttributesResponder,
3910 },
3911 Sync {
3921 responder: DirectorySyncResponder,
3922 },
3923 ListExtendedAttributes {
3932 iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
3933 control_handle: DirectoryControlHandle,
3934 },
3935 GetExtendedAttribute {
3942 name: Vec<u8>,
3943 responder: DirectoryGetExtendedAttributeResponder,
3944 },
3945 SetExtendedAttribute {
3953 name: Vec<u8>,
3954 value: ExtendedAttributeValue,
3955 mode: SetExtendedAttributeMode,
3956 responder: DirectorySetExtendedAttributeResponder,
3957 },
3958 RemoveExtendedAttribute {
3964 name: Vec<u8>,
3965 responder: DirectoryRemoveExtendedAttributeResponder,
3966 },
3967 DeprecatedOpen {
3969 flags: OpenFlags,
3970 mode: ModeType,
3971 path: String,
3972 object: fidl::endpoints::ServerEnd<NodeMarker>,
3973 control_handle: DirectoryControlHandle,
3974 },
3975 Open {
3982 path: String,
3983 flags: Flags,
3984 options: Options,
3985 object: fidl::Channel,
3986 control_handle: DirectoryControlHandle,
3987 },
3988 ReadDirents {
4014 max_bytes: u64,
4015 responder: DirectoryReadDirentsResponder,
4016 },
4017 Rewind {
4021 responder: DirectoryRewindResponder,
4022 },
4023 GetToken {
4030 responder: DirectoryGetTokenResponder,
4031 },
4032 Link {
4049 src: String,
4050 dst_parent_token: fidl::Handle,
4051 dst: String,
4052 responder: DirectoryLinkResponder,
4053 },
4054 Unlink {
4079 name: String,
4080 options: UnlinkOptions,
4081 responder: DirectoryUnlinkResponder,
4082 },
4083 Rename {
4109 src: String,
4110 dst_parent_token: fidl::Event,
4111 dst: String,
4112 responder: DirectoryRenameResponder,
4113 },
4114 CreateSymlink {
4129 name: String,
4130 target: Vec<u8>,
4131 connection: Option<fidl::endpoints::ServerEnd<SymlinkMarker>>,
4132 responder: DirectoryCreateSymlinkResponder,
4133 },
4134 Watch {
4141 mask: WatchMask,
4142 options: u32,
4143 watcher: fidl::endpoints::ServerEnd<DirectoryWatcherMarker>,
4144 responder: DirectoryWatchResponder,
4145 },
4146 #[non_exhaustive]
4148 _UnknownMethod {
4149 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 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
4588impl std::ops::Drop for DirectoryAdvisoryLockResponder {
4592 fn drop(&mut self) {
4593 self.control_handle.shutdown();
4594 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4609 std::mem::forget(self);
4611 }
4612}
4613
4614impl DirectoryAdvisoryLockResponder {
4615 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 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
4653impl std::ops::Drop for DirectoryCloseResponder {
4657 fn drop(&mut self) {
4658 self.control_handle.shutdown();
4659 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4674 std::mem::forget(self);
4676 }
4677}
4678
4679impl DirectoryCloseResponder {
4680 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 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
4718impl std::ops::Drop for DirectoryQueryResponder {
4722 fn drop(&mut self) {
4723 self.control_handle.shutdown();
4724 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4739 std::mem::forget(self);
4741 }
4742}
4743
4744impl DirectoryQueryResponder {
4745 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 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
4781impl std::ops::Drop for DirectoryGetAttrResponder {
4785 fn drop(&mut self) {
4786 self.control_handle.shutdown();
4787 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4802 std::mem::forget(self);
4804 }
4805}
4806
4807impl DirectoryGetAttrResponder {
4808 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 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
4848impl std::ops::Drop for DirectorySetAttrResponder {
4852 fn drop(&mut self) {
4853 self.control_handle.shutdown();
4854 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4869 std::mem::forget(self);
4871 }
4872}
4873
4874impl DirectorySetAttrResponder {
4875 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 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
4911impl std::ops::Drop for DirectoryDeprecatedGetFlagsResponder {
4915 fn drop(&mut self) {
4916 self.control_handle.shutdown();
4917 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4932 std::mem::forget(self);
4934 }
4935}
4936
4937impl DirectoryDeprecatedGetFlagsResponder {
4938 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 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
4978impl std::ops::Drop for DirectoryDeprecatedSetFlagsResponder {
4982 fn drop(&mut self) {
4983 self.control_handle.shutdown();
4984 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4999 std::mem::forget(self);
5001 }
5002}
5003
5004impl DirectoryDeprecatedSetFlagsResponder {
5005 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 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
5041impl std::ops::Drop for DirectoryGetFlagsResponder {
5045 fn drop(&mut self) {
5046 self.control_handle.shutdown();
5047 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5062 std::mem::forget(self);
5064 }
5065}
5066
5067impl DirectoryGetFlagsResponder {
5068 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 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
5109impl std::ops::Drop for DirectorySetFlagsResponder {
5113 fn drop(&mut self) {
5114 self.control_handle.shutdown();
5115 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5130 std::mem::forget(self);
5132 }
5133}
5134
5135impl DirectorySetFlagsResponder {
5136 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 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
5175impl std::ops::Drop for DirectoryQueryFilesystemResponder {
5179 fn drop(&mut self) {
5180 self.control_handle.shutdown();
5181 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5196 std::mem::forget(self);
5198 }
5199}
5200
5201impl DirectoryQueryFilesystemResponder {
5202 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 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
5242impl std::ops::Drop for DirectoryGetConnectionInfoResponder {
5246 fn drop(&mut self) {
5247 self.control_handle.shutdown();
5248 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5263 std::mem::forget(self);
5265 }
5266}
5267
5268impl DirectoryGetConnectionInfoResponder {
5269 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 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
5305impl std::ops::Drop for DirectoryGetAttributesResponder {
5309 fn drop(&mut self) {
5310 self.control_handle.shutdown();
5311 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5326 std::mem::forget(self);
5328 }
5329}
5330
5331impl DirectoryGetAttributesResponder {
5332 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 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
5377impl std::ops::Drop for DirectoryUpdateAttributesResponder {
5381 fn drop(&mut self) {
5382 self.control_handle.shutdown();
5383 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5398 std::mem::forget(self);
5400 }
5401}
5402
5403impl DirectoryUpdateAttributesResponder {
5404 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 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
5442impl std::ops::Drop for DirectorySyncResponder {
5446 fn drop(&mut self) {
5447 self.control_handle.shutdown();
5448 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5463 std::mem::forget(self);
5465 }
5466}
5467
5468impl DirectorySyncResponder {
5469 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 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
5507impl std::ops::Drop for DirectoryGetExtendedAttributeResponder {
5511 fn drop(&mut self) {
5512 self.control_handle.shutdown();
5513 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5528 std::mem::forget(self);
5530 }
5531}
5532
5533impl DirectoryGetExtendedAttributeResponder {
5534 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 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
5573impl std::ops::Drop for DirectorySetExtendedAttributeResponder {
5577 fn drop(&mut self) {
5578 self.control_handle.shutdown();
5579 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5594 std::mem::forget(self);
5596 }
5597}
5598
5599impl DirectorySetExtendedAttributeResponder {
5600 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 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
5638impl std::ops::Drop for DirectoryRemoveExtendedAttributeResponder {
5642 fn drop(&mut self) {
5643 self.control_handle.shutdown();
5644 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5659 std::mem::forget(self);
5661 }
5662}
5663
5664impl DirectoryRemoveExtendedAttributeResponder {
5665 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 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
5703impl std::ops::Drop for DirectoryReadDirentsResponder {
5707 fn drop(&mut self) {
5708 self.control_handle.shutdown();
5709 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5724 std::mem::forget(self);
5726 }
5727}
5728
5729impl DirectoryReadDirentsResponder {
5730 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 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
5770impl std::ops::Drop for DirectoryRewindResponder {
5774 fn drop(&mut self) {
5775 self.control_handle.shutdown();
5776 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5791 std::mem::forget(self);
5793 }
5794}
5795
5796impl DirectoryRewindResponder {
5797 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 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
5833impl std::ops::Drop for DirectoryGetTokenResponder {
5837 fn drop(&mut self) {
5838 self.control_handle.shutdown();
5839 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5854 std::mem::forget(self);
5856 }
5857}
5858
5859impl DirectoryGetTokenResponder {
5860 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 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
5900impl std::ops::Drop for DirectoryLinkResponder {
5904 fn drop(&mut self) {
5905 self.control_handle.shutdown();
5906 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5921 std::mem::forget(self);
5923 }
5924}
5925
5926impl DirectoryLinkResponder {
5927 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 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
5963impl std::ops::Drop for DirectoryUnlinkResponder {
5967 fn drop(&mut self) {
5968 self.control_handle.shutdown();
5969 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5984 std::mem::forget(self);
5986 }
5987}
5988
5989impl DirectoryUnlinkResponder {
5990 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 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
6028impl std::ops::Drop for DirectoryRenameResponder {
6032 fn drop(&mut self) {
6033 self.control_handle.shutdown();
6034 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6049 std::mem::forget(self);
6051 }
6052}
6053
6054impl DirectoryRenameResponder {
6055 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 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
6093impl std::ops::Drop for DirectoryCreateSymlinkResponder {
6097 fn drop(&mut self) {
6098 self.control_handle.shutdown();
6099 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6114 std::mem::forget(self);
6116 }
6117}
6118
6119impl DirectoryCreateSymlinkResponder {
6120 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 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
6158impl std::ops::Drop for DirectoryWatchResponder {
6162 fn drop(&mut self) {
6163 self.control_handle.shutdown();
6164 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6179 std::mem::forget(self);
6181 }
6182}
6183
6184impl DirectoryWatchResponder {
6185 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 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 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 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 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 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
6376pub 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 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#[derive(Debug)]
6481pub enum DirectoryWatcherRequest {}
6482
6483impl DirectoryWatcherRequest {
6484 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 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 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 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 pub fn take_event_stream(&self) -> ExtendedAttributeIteratorEventStream {
6655 ExtendedAttributeIteratorEventStream { event_receiver: self.client.take_event_receiver() }
6656 }
6657
6658 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 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
6749pub 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 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 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 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
6915impl std::ops::Drop for ExtendedAttributeIteratorGetNextResponder {
6919 fn drop(&mut self) {
6920 self.control_handle.shutdown();
6921 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6936 std::mem::forget(self);
6938 }
6939}
6940
6941impl ExtendedAttributeIteratorGetNextResponder {
6942 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn take_event_stream(&self) -> FileEventStream {
7954 FileEventStream { event_receiver: self.client.take_event_receiver() }
7955 }
7956
7957 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 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn r#sync(
8216 &self,
8217 ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
8218 {
8219 FileProxyInterface::r#sync(self)
8220 }
8221
8222 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 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 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 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 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 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 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 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 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 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 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 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 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: 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 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
9331pub 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 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#[derive(Debug)]
9955pub enum FileRequest {
9956 AdvisoryLock {
9980 request: AdvisoryLockRequest,
9981 responder: FileAdvisoryLockResponder,
9982 },
9983 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 Close {
10025 responder: FileCloseResponder,
10026 },
10027 Query {
10028 responder: FileQueryResponder,
10029 },
10030 DeprecatedClone {
10032 flags: OpenFlags,
10033 object: fidl::endpoints::ServerEnd<NodeMarker>,
10034 control_handle: FileControlHandle,
10035 },
10036 GetAttr {
10040 responder: FileGetAttrResponder,
10041 },
10042 SetAttr {
10049 flags: NodeAttributeFlags,
10050 attributes: NodeAttributes,
10051 responder: FileSetAttrResponder,
10052 },
10053 DeprecatedGetFlags {
10055 responder: FileDeprecatedGetFlagsResponder,
10056 },
10057 DeprecatedSetFlags {
10059 flags: OpenFlags,
10060 responder: FileDeprecatedSetFlagsResponder,
10061 },
10062 GetFlags {
10071 responder: FileGetFlagsResponder,
10072 },
10073 SetFlags {
10083 flags: Flags,
10084 responder: FileSetFlagsResponder,
10085 },
10086 QueryFilesystem {
10088 responder: FileQueryFilesystemResponder,
10089 },
10090 GetConnectionInfo {
10094 responder: FileGetConnectionInfoResponder,
10095 },
10096 GetAttributes {
10110 query: NodeAttributesQuery,
10111 responder: FileGetAttributesResponder,
10112 },
10113 UpdateAttributes {
10122 payload: MutableNodeAttributes,
10123 responder: FileUpdateAttributesResponder,
10124 },
10125 Sync {
10135 responder: FileSyncResponder,
10136 },
10137 ListExtendedAttributes {
10146 iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
10147 control_handle: FileControlHandle,
10148 },
10149 GetExtendedAttribute {
10156 name: Vec<u8>,
10157 responder: FileGetExtendedAttributeResponder,
10158 },
10159 SetExtendedAttribute {
10167 name: Vec<u8>,
10168 value: ExtendedAttributeValue,
10169 mode: SetExtendedAttributeMode,
10170 responder: FileSetExtendedAttributeResponder,
10171 },
10172 RemoveExtendedAttribute {
10178 name: Vec<u8>,
10179 responder: FileRemoveExtendedAttributeResponder,
10180 },
10181 Read {
10200 count: u64,
10201 responder: FileReadResponder,
10202 },
10203 Write {
10227 data: Vec<u8>,
10228 responder: FileWriteResponder,
10229 },
10230 Describe {
10231 responder: FileDescribeResponder,
10232 },
10233 Seek {
10243 origin: SeekOrigin,
10244 offset: i64,
10245 responder: FileSeekResponder,
10246 },
10247 ReadAt {
10265 count: u64,
10266 offset: u64,
10267 responder: FileReadAtResponder,
10268 },
10269 WriteAt {
10291 data: Vec<u8>,
10292 offset: u64,
10293 responder: FileWriteAtResponder,
10294 },
10295 Resize {
10304 length: u64,
10305 responder: FileResizeResponder,
10306 },
10307 GetBackingMemory {
10328 flags: VmoFlags,
10329 responder: FileGetBackingMemoryResponder,
10330 },
10331 Allocate {
10333 offset: u64,
10334 length: u64,
10335 mode: AllocateMode,
10336 responder: FileAllocateResponder,
10337 },
10338 EnableVerity {
10350 options: VerificationOptions,
10351 responder: FileEnableVerityResponder,
10352 },
10353 #[non_exhaustive]
10355 _UnknownMethod {
10356 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 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
10774impl std::ops::Drop for FileAdvisoryLockResponder {
10778 fn drop(&mut self) {
10779 self.control_handle.shutdown();
10780 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10795 std::mem::forget(self);
10797 }
10798}
10799
10800impl FileAdvisoryLockResponder {
10801 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 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
10839impl std::ops::Drop for FileLinkIntoResponder {
10843 fn drop(&mut self) {
10844 self.control_handle.shutdown();
10845 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10860 std::mem::forget(self);
10862 }
10863}
10864
10865impl FileLinkIntoResponder {
10866 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 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
10904impl std::ops::Drop for FileCloseResponder {
10908 fn drop(&mut self) {
10909 self.control_handle.shutdown();
10910 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10925 std::mem::forget(self);
10927 }
10928}
10929
10930impl FileCloseResponder {
10931 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 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
10969impl std::ops::Drop for FileQueryResponder {
10973 fn drop(&mut self) {
10974 self.control_handle.shutdown();
10975 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
10990 std::mem::forget(self);
10992 }
10993}
10994
10995impl FileQueryResponder {
10996 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 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
11032impl std::ops::Drop for FileGetAttrResponder {
11036 fn drop(&mut self) {
11037 self.control_handle.shutdown();
11038 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11053 std::mem::forget(self);
11055 }
11056}
11057
11058impl FileGetAttrResponder {
11059 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 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
11099impl std::ops::Drop for FileSetAttrResponder {
11103 fn drop(&mut self) {
11104 self.control_handle.shutdown();
11105 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11120 std::mem::forget(self);
11122 }
11123}
11124
11125impl FileSetAttrResponder {
11126 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 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
11162impl std::ops::Drop for FileDeprecatedGetFlagsResponder {
11166 fn drop(&mut self) {
11167 self.control_handle.shutdown();
11168 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11183 std::mem::forget(self);
11185 }
11186}
11187
11188impl FileDeprecatedGetFlagsResponder {
11189 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 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
11229impl std::ops::Drop for FileDeprecatedSetFlagsResponder {
11233 fn drop(&mut self) {
11234 self.control_handle.shutdown();
11235 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11250 std::mem::forget(self);
11252 }
11253}
11254
11255impl FileDeprecatedSetFlagsResponder {
11256 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 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
11292impl std::ops::Drop for FileGetFlagsResponder {
11296 fn drop(&mut self) {
11297 self.control_handle.shutdown();
11298 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11313 std::mem::forget(self);
11315 }
11316}
11317
11318impl FileGetFlagsResponder {
11319 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 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
11360impl std::ops::Drop for FileSetFlagsResponder {
11364 fn drop(&mut self) {
11365 self.control_handle.shutdown();
11366 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11381 std::mem::forget(self);
11383 }
11384}
11385
11386impl FileSetFlagsResponder {
11387 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 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
11426impl std::ops::Drop for FileQueryFilesystemResponder {
11430 fn drop(&mut self) {
11431 self.control_handle.shutdown();
11432 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11447 std::mem::forget(self);
11449 }
11450}
11451
11452impl FileQueryFilesystemResponder {
11453 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 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
11493impl std::ops::Drop for FileGetConnectionInfoResponder {
11497 fn drop(&mut self) {
11498 self.control_handle.shutdown();
11499 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11514 std::mem::forget(self);
11516 }
11517}
11518
11519impl FileGetConnectionInfoResponder {
11520 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 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
11556impl std::ops::Drop for FileGetAttributesResponder {
11560 fn drop(&mut self) {
11561 self.control_handle.shutdown();
11562 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11577 std::mem::forget(self);
11579 }
11580}
11581
11582impl FileGetAttributesResponder {
11583 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 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
11628impl std::ops::Drop for FileUpdateAttributesResponder {
11632 fn drop(&mut self) {
11633 self.control_handle.shutdown();
11634 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11649 std::mem::forget(self);
11651 }
11652}
11653
11654impl FileUpdateAttributesResponder {
11655 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 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
11693impl std::ops::Drop for FileSyncResponder {
11697 fn drop(&mut self) {
11698 self.control_handle.shutdown();
11699 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11714 std::mem::forget(self);
11716 }
11717}
11718
11719impl FileSyncResponder {
11720 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 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
11758impl std::ops::Drop for FileGetExtendedAttributeResponder {
11762 fn drop(&mut self) {
11763 self.control_handle.shutdown();
11764 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11779 std::mem::forget(self);
11781 }
11782}
11783
11784impl FileGetExtendedAttributeResponder {
11785 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 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
11824impl std::ops::Drop for FileSetExtendedAttributeResponder {
11828 fn drop(&mut self) {
11829 self.control_handle.shutdown();
11830 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11845 std::mem::forget(self);
11847 }
11848}
11849
11850impl FileSetExtendedAttributeResponder {
11851 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 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
11889impl std::ops::Drop for FileRemoveExtendedAttributeResponder {
11893 fn drop(&mut self) {
11894 self.control_handle.shutdown();
11895 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11910 std::mem::forget(self);
11912 }
11913}
11914
11915impl FileRemoveExtendedAttributeResponder {
11916 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 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
11954impl std::ops::Drop for FileReadResponder {
11958 fn drop(&mut self) {
11959 self.control_handle.shutdown();
11960 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
11975 std::mem::forget(self);
11977 }
11978}
11979
11980impl FileReadResponder {
11981 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 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
12020impl std::ops::Drop for FileWriteResponder {
12024 fn drop(&mut self) {
12025 self.control_handle.shutdown();
12026 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12041 std::mem::forget(self);
12043 }
12044}
12045
12046impl FileWriteResponder {
12047 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 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
12083impl std::ops::Drop for FileDescribeResponder {
12087 fn drop(&mut self) {
12088 self.control_handle.shutdown();
12089 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12104 std::mem::forget(self);
12106 }
12107}
12108
12109impl FileDescribeResponder {
12110 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 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
12146impl std::ops::Drop for FileSeekResponder {
12150 fn drop(&mut self) {
12151 self.control_handle.shutdown();
12152 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12167 std::mem::forget(self);
12169 }
12170}
12171
12172impl FileSeekResponder {
12173 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 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
12209impl std::ops::Drop for FileReadAtResponder {
12213 fn drop(&mut self) {
12214 self.control_handle.shutdown();
12215 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12230 std::mem::forget(self);
12232 }
12233}
12234
12235impl FileReadAtResponder {
12236 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 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
12275impl std::ops::Drop for FileWriteAtResponder {
12279 fn drop(&mut self) {
12280 self.control_handle.shutdown();
12281 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12296 std::mem::forget(self);
12298 }
12299}
12300
12301impl FileWriteAtResponder {
12302 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 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
12338impl std::ops::Drop for FileResizeResponder {
12342 fn drop(&mut self) {
12343 self.control_handle.shutdown();
12344 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12359 std::mem::forget(self);
12361 }
12362}
12363
12364impl FileResizeResponder {
12365 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 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
12403impl std::ops::Drop for FileGetBackingMemoryResponder {
12407 fn drop(&mut self) {
12408 self.control_handle.shutdown();
12409 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12424 std::mem::forget(self);
12426 }
12427}
12428
12429impl FileGetBackingMemoryResponder {
12430 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 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
12471impl std::ops::Drop for FileAllocateResponder {
12475 fn drop(&mut self) {
12476 self.control_handle.shutdown();
12477 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12492 std::mem::forget(self);
12494 }
12495}
12496
12497impl FileAllocateResponder {
12498 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 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
12537impl std::ops::Drop for FileEnableVerityResponder {
12541 fn drop(&mut self) {
12542 self.control_handle.shutdown();
12543 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
12558 std::mem::forget(self);
12560 }
12561}
12562
12563impl FileEnableVerityResponder {
12564 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 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 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 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 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 pub fn take_event_stream(&self) -> LinkableEventStream {
12747 LinkableEventStream { event_receiver: self.client.take_event_receiver() }
12748 }
12749
12750 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 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
12862pub 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 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 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 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
13052impl std::ops::Drop for LinkableLinkIntoResponder {
13056 fn drop(&mut self) {
13057 self.control_handle.shutdown();
13058 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
13073 std::mem::forget(self);
13075 }
13076}
13077
13078impl LinkableLinkIntoResponder {
13079 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn r#sync(
13874 &self,
13875 ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
13876 {
13877 NodeProxyInterface::r#sync(self)
13878 }
13879
13880 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 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 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 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: 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 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
14472pub 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 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#[derive(Debug)]
14885pub enum NodeRequest {
14886 Clone {
14887 request: fidl::endpoints::ServerEnd<fidl_fuchsia_unknown::CloneableMarker>,
14888 control_handle: NodeControlHandle,
14889 },
14890 Close {
14901 responder: NodeCloseResponder,
14902 },
14903 Query {
14904 responder: NodeQueryResponder,
14905 },
14906 DeprecatedClone {
14908 flags: OpenFlags,
14909 object: fidl::endpoints::ServerEnd<NodeMarker>,
14910 control_handle: NodeControlHandle,
14911 },
14912 GetAttr {
14916 responder: NodeGetAttrResponder,
14917 },
14918 SetAttr {
14925 flags: NodeAttributeFlags,
14926 attributes: NodeAttributes,
14927 responder: NodeSetAttrResponder,
14928 },
14929 DeprecatedGetFlags {
14931 responder: NodeDeprecatedGetFlagsResponder,
14932 },
14933 DeprecatedSetFlags {
14935 flags: OpenFlags,
14936 responder: NodeDeprecatedSetFlagsResponder,
14937 },
14938 GetFlags {
14947 responder: NodeGetFlagsResponder,
14948 },
14949 SetFlags {
14959 flags: Flags,
14960 responder: NodeSetFlagsResponder,
14961 },
14962 QueryFilesystem {
14964 responder: NodeQueryFilesystemResponder,
14965 },
14966 GetConnectionInfo {
14970 responder: NodeGetConnectionInfoResponder,
14971 },
14972 GetAttributes {
14986 query: NodeAttributesQuery,
14987 responder: NodeGetAttributesResponder,
14988 },
14989 UpdateAttributes {
14998 payload: MutableNodeAttributes,
14999 responder: NodeUpdateAttributesResponder,
15000 },
15001 Sync {
15011 responder: NodeSyncResponder,
15012 },
15013 ListExtendedAttributes {
15022 iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
15023 control_handle: NodeControlHandle,
15024 },
15025 GetExtendedAttribute {
15032 name: Vec<u8>,
15033 responder: NodeGetExtendedAttributeResponder,
15034 },
15035 SetExtendedAttribute {
15043 name: Vec<u8>,
15044 value: ExtendedAttributeValue,
15045 mode: SetExtendedAttributeMode,
15046 responder: NodeSetExtendedAttributeResponder,
15047 },
15048 RemoveExtendedAttribute {
15054 name: Vec<u8>,
15055 responder: NodeRemoveExtendedAttributeResponder,
15056 },
15057 #[non_exhaustive]
15059 _UnknownMethod {
15060 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 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
15358impl std::ops::Drop for NodeCloseResponder {
15362 fn drop(&mut self) {
15363 self.control_handle.shutdown();
15364 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15379 std::mem::forget(self);
15381 }
15382}
15383
15384impl NodeCloseResponder {
15385 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 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
15423impl std::ops::Drop for NodeQueryResponder {
15427 fn drop(&mut self) {
15428 self.control_handle.shutdown();
15429 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15444 std::mem::forget(self);
15446 }
15447}
15448
15449impl NodeQueryResponder {
15450 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 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
15486impl std::ops::Drop for NodeGetAttrResponder {
15490 fn drop(&mut self) {
15491 self.control_handle.shutdown();
15492 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15507 std::mem::forget(self);
15509 }
15510}
15511
15512impl NodeGetAttrResponder {
15513 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 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
15553impl std::ops::Drop for NodeSetAttrResponder {
15557 fn drop(&mut self) {
15558 self.control_handle.shutdown();
15559 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15574 std::mem::forget(self);
15576 }
15577}
15578
15579impl NodeSetAttrResponder {
15580 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 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
15616impl std::ops::Drop for NodeDeprecatedGetFlagsResponder {
15620 fn drop(&mut self) {
15621 self.control_handle.shutdown();
15622 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15637 std::mem::forget(self);
15639 }
15640}
15641
15642impl NodeDeprecatedGetFlagsResponder {
15643 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 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
15683impl std::ops::Drop for NodeDeprecatedSetFlagsResponder {
15687 fn drop(&mut self) {
15688 self.control_handle.shutdown();
15689 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15704 std::mem::forget(self);
15706 }
15707}
15708
15709impl NodeDeprecatedSetFlagsResponder {
15710 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 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
15746impl std::ops::Drop for NodeGetFlagsResponder {
15750 fn drop(&mut self) {
15751 self.control_handle.shutdown();
15752 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15767 std::mem::forget(self);
15769 }
15770}
15771
15772impl NodeGetFlagsResponder {
15773 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 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
15814impl std::ops::Drop for NodeSetFlagsResponder {
15818 fn drop(&mut self) {
15819 self.control_handle.shutdown();
15820 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15835 std::mem::forget(self);
15837 }
15838}
15839
15840impl NodeSetFlagsResponder {
15841 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 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
15880impl std::ops::Drop for NodeQueryFilesystemResponder {
15884 fn drop(&mut self) {
15885 self.control_handle.shutdown();
15886 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15901 std::mem::forget(self);
15903 }
15904}
15905
15906impl NodeQueryFilesystemResponder {
15907 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 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
15947impl std::ops::Drop for NodeGetConnectionInfoResponder {
15951 fn drop(&mut self) {
15952 self.control_handle.shutdown();
15953 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
15968 std::mem::forget(self);
15970 }
15971}
15972
15973impl NodeGetConnectionInfoResponder {
15974 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 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
16010impl std::ops::Drop for NodeGetAttributesResponder {
16014 fn drop(&mut self) {
16015 self.control_handle.shutdown();
16016 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16031 std::mem::forget(self);
16033 }
16034}
16035
16036impl NodeGetAttributesResponder {
16037 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 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
16082impl std::ops::Drop for NodeUpdateAttributesResponder {
16086 fn drop(&mut self) {
16087 self.control_handle.shutdown();
16088 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16103 std::mem::forget(self);
16105 }
16106}
16107
16108impl NodeUpdateAttributesResponder {
16109 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 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
16147impl std::ops::Drop for NodeSyncResponder {
16151 fn drop(&mut self) {
16152 self.control_handle.shutdown();
16153 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16168 std::mem::forget(self);
16170 }
16171}
16172
16173impl NodeSyncResponder {
16174 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 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
16212impl std::ops::Drop for NodeGetExtendedAttributeResponder {
16216 fn drop(&mut self) {
16217 self.control_handle.shutdown();
16218 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16233 std::mem::forget(self);
16235 }
16236}
16237
16238impl NodeGetExtendedAttributeResponder {
16239 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 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
16278impl std::ops::Drop for NodeSetExtendedAttributeResponder {
16282 fn drop(&mut self) {
16283 self.control_handle.shutdown();
16284 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16299 std::mem::forget(self);
16301 }
16302}
16303
16304impl NodeSetExtendedAttributeResponder {
16305 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 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
16343impl std::ops::Drop for NodeRemoveExtendedAttributeResponder {
16347 fn drop(&mut self) {
16348 self.control_handle.shutdown();
16349 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16364 std::mem::forget(self);
16366 }
16367}
16368
16369impl NodeRemoveExtendedAttributeResponder {
16370 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 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 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 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 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 pub fn take_event_stream(&self) -> ReadableEventStream {
16547 ReadableEventStream { event_receiver: self.client.take_event_receiver() }
16548 }
16549
16550 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 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
16653pub 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 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 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 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
16838impl std::ops::Drop for ReadableReadResponder {
16842 fn drop(&mut self) {
16843 self.control_handle.shutdown();
16844 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
16859 std::mem::forget(self);
16861 }
16862}
16863
16864impl ReadableReadResponder {
16865 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn take_event_stream(&self) -> SymlinkEventStream {
17521 SymlinkEventStream { event_receiver: self.client.take_event_receiver() }
17522 }
17523
17524 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn r#sync(
17750 &self,
17751 ) -> fidl::client::QueryResponseFut<NodeSyncResult, fidl::encoding::DefaultFuchsiaResourceDialect>
17752 {
17753 SymlinkProxyInterface::r#sync(self)
17754 }
17755
17756 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 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 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 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: 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 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
18404pub 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 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#[derive(Debug)]
18851pub enum SymlinkRequest {
18852 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 Close {
18894 responder: SymlinkCloseResponder,
18895 },
18896 Query {
18897 responder: SymlinkQueryResponder,
18898 },
18899 DeprecatedClone {
18901 flags: OpenFlags,
18902 object: fidl::endpoints::ServerEnd<NodeMarker>,
18903 control_handle: SymlinkControlHandle,
18904 },
18905 GetAttr {
18909 responder: SymlinkGetAttrResponder,
18910 },
18911 SetAttr {
18918 flags: NodeAttributeFlags,
18919 attributes: NodeAttributes,
18920 responder: SymlinkSetAttrResponder,
18921 },
18922 DeprecatedGetFlags {
18924 responder: SymlinkDeprecatedGetFlagsResponder,
18925 },
18926 DeprecatedSetFlags {
18928 flags: OpenFlags,
18929 responder: SymlinkDeprecatedSetFlagsResponder,
18930 },
18931 GetFlags {
18940 responder: SymlinkGetFlagsResponder,
18941 },
18942 SetFlags {
18952 flags: Flags,
18953 responder: SymlinkSetFlagsResponder,
18954 },
18955 QueryFilesystem {
18957 responder: SymlinkQueryFilesystemResponder,
18958 },
18959 GetConnectionInfo {
18963 responder: SymlinkGetConnectionInfoResponder,
18964 },
18965 GetAttributes {
18979 query: NodeAttributesQuery,
18980 responder: SymlinkGetAttributesResponder,
18981 },
18982 UpdateAttributes {
18991 payload: MutableNodeAttributes,
18992 responder: SymlinkUpdateAttributesResponder,
18993 },
18994 Sync {
19004 responder: SymlinkSyncResponder,
19005 },
19006 ListExtendedAttributes {
19015 iterator: fidl::endpoints::ServerEnd<ExtendedAttributeIteratorMarker>,
19016 control_handle: SymlinkControlHandle,
19017 },
19018 GetExtendedAttribute {
19025 name: Vec<u8>,
19026 responder: SymlinkGetExtendedAttributeResponder,
19027 },
19028 SetExtendedAttribute {
19036 name: Vec<u8>,
19037 value: ExtendedAttributeValue,
19038 mode: SetExtendedAttributeMode,
19039 responder: SymlinkSetExtendedAttributeResponder,
19040 },
19041 RemoveExtendedAttribute {
19047 name: Vec<u8>,
19048 responder: SymlinkRemoveExtendedAttributeResponder,
19049 },
19050 Describe {
19051 responder: SymlinkDescribeResponder,
19052 },
19053 #[non_exhaustive]
19055 _UnknownMethod {
19056 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 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
19378impl std::ops::Drop for SymlinkLinkIntoResponder {
19382 fn drop(&mut self) {
19383 self.control_handle.shutdown();
19384 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19399 std::mem::forget(self);
19401 }
19402}
19403
19404impl SymlinkLinkIntoResponder {
19405 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 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
19443impl std::ops::Drop for SymlinkCloseResponder {
19447 fn drop(&mut self) {
19448 self.control_handle.shutdown();
19449 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19464 std::mem::forget(self);
19466 }
19467}
19468
19469impl SymlinkCloseResponder {
19470 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 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
19508impl std::ops::Drop for SymlinkQueryResponder {
19512 fn drop(&mut self) {
19513 self.control_handle.shutdown();
19514 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19529 std::mem::forget(self);
19531 }
19532}
19533
19534impl SymlinkQueryResponder {
19535 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 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
19571impl std::ops::Drop for SymlinkGetAttrResponder {
19575 fn drop(&mut self) {
19576 self.control_handle.shutdown();
19577 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19592 std::mem::forget(self);
19594 }
19595}
19596
19597impl SymlinkGetAttrResponder {
19598 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 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
19638impl std::ops::Drop for SymlinkSetAttrResponder {
19642 fn drop(&mut self) {
19643 self.control_handle.shutdown();
19644 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19659 std::mem::forget(self);
19661 }
19662}
19663
19664impl SymlinkSetAttrResponder {
19665 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 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
19701impl std::ops::Drop for SymlinkDeprecatedGetFlagsResponder {
19705 fn drop(&mut self) {
19706 self.control_handle.shutdown();
19707 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19722 std::mem::forget(self);
19724 }
19725}
19726
19727impl SymlinkDeprecatedGetFlagsResponder {
19728 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 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
19768impl std::ops::Drop for SymlinkDeprecatedSetFlagsResponder {
19772 fn drop(&mut self) {
19773 self.control_handle.shutdown();
19774 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19789 std::mem::forget(self);
19791 }
19792}
19793
19794impl SymlinkDeprecatedSetFlagsResponder {
19795 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 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
19831impl std::ops::Drop for SymlinkGetFlagsResponder {
19835 fn drop(&mut self) {
19836 self.control_handle.shutdown();
19837 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19852 std::mem::forget(self);
19854 }
19855}
19856
19857impl SymlinkGetFlagsResponder {
19858 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 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
19899impl std::ops::Drop for SymlinkSetFlagsResponder {
19903 fn drop(&mut self) {
19904 self.control_handle.shutdown();
19905 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19920 std::mem::forget(self);
19922 }
19923}
19924
19925impl SymlinkSetFlagsResponder {
19926 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 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
19965impl std::ops::Drop for SymlinkQueryFilesystemResponder {
19969 fn drop(&mut self) {
19970 self.control_handle.shutdown();
19971 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
19986 std::mem::forget(self);
19988 }
19989}
19990
19991impl SymlinkQueryFilesystemResponder {
19992 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 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
20032impl std::ops::Drop for SymlinkGetConnectionInfoResponder {
20036 fn drop(&mut self) {
20037 self.control_handle.shutdown();
20038 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20053 std::mem::forget(self);
20055 }
20056}
20057
20058impl SymlinkGetConnectionInfoResponder {
20059 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 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
20095impl std::ops::Drop for SymlinkGetAttributesResponder {
20099 fn drop(&mut self) {
20100 self.control_handle.shutdown();
20101 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20116 std::mem::forget(self);
20118 }
20119}
20120
20121impl SymlinkGetAttributesResponder {
20122 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 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
20167impl std::ops::Drop for SymlinkUpdateAttributesResponder {
20171 fn drop(&mut self) {
20172 self.control_handle.shutdown();
20173 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20188 std::mem::forget(self);
20190 }
20191}
20192
20193impl SymlinkUpdateAttributesResponder {
20194 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 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
20232impl std::ops::Drop for SymlinkSyncResponder {
20236 fn drop(&mut self) {
20237 self.control_handle.shutdown();
20238 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20253 std::mem::forget(self);
20255 }
20256}
20257
20258impl SymlinkSyncResponder {
20259 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 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
20297impl std::ops::Drop for SymlinkGetExtendedAttributeResponder {
20301 fn drop(&mut self) {
20302 self.control_handle.shutdown();
20303 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20318 std::mem::forget(self);
20320 }
20321}
20322
20323impl SymlinkGetExtendedAttributeResponder {
20324 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 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
20363impl std::ops::Drop for SymlinkSetExtendedAttributeResponder {
20367 fn drop(&mut self) {
20368 self.control_handle.shutdown();
20369 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20384 std::mem::forget(self);
20386 }
20387}
20388
20389impl SymlinkSetExtendedAttributeResponder {
20390 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 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
20428impl std::ops::Drop for SymlinkRemoveExtendedAttributeResponder {
20432 fn drop(&mut self) {
20433 self.control_handle.shutdown();
20434 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20449 std::mem::forget(self);
20451 }
20452}
20453
20454impl SymlinkRemoveExtendedAttributeResponder {
20455 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 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
20493impl std::ops::Drop for SymlinkDescribeResponder {
20497 fn drop(&mut self) {
20498 self.control_handle.shutdown();
20499 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
20514 std::mem::forget(self);
20516 }
20517}
20518
20519impl SymlinkDescribeResponder {
20520 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 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 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 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 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 pub fn take_event_stream(&self) -> WritableEventStream {
20700 WritableEventStream { event_receiver: self.client.take_event_receiver() }
20701 }
20702
20703 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 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
20811pub 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 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 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 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
21001impl std::ops::Drop for WritableWriteResponder {
21005 fn drop(&mut self) {
21006 self.control_handle.shutdown();
21007 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
21022 std::mem::forget(self);
21024 }
21025}
21026
21027impl WritableWriteResponder {
21028 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 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 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 unsafe {
21159 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(32);
21160 (ptr as *mut u64).write_unaligned(0);
21161 }
21162 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 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 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 unsafe {
21317 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(24);
21318 (ptr as *mut u64).write_unaligned(0);
21319 }
21320 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 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 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 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 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 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 unsafe {
21663 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
21664 (ptr as *mut u64).write_unaligned(0);
21665 }
21666 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 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 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 unsafe {
21817 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(40);
21818 (ptr as *mut u64).write_unaligned(0);
21819 }
21820 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 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 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 unsafe {
21998 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
21999 (ptr as *mut u64).write_unaligned(0);
22000 }
22001 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 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 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 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 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 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 unsafe {
22281 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
22282 (ptr as *mut u64).write_unaligned(0);
22283 }
22284 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 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 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 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 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 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 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 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 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 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 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 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 unsafe {
22849 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
22850 (ptr as *mut u64).write_unaligned(0);
22851 }
22852 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 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 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 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 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 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 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 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 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 unsafe {
23236 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
23237 (ptr as *mut u64).write_unaligned(0);
23238 }
23239 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 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 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 unsafe {
23396 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(32);
23397 (ptr as *mut u64).write_unaligned(0);
23398 }
23399 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 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 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 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 let cur_offset: usize = (1 - 1) * envelope_size;
23535
23536 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23538
23539 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 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 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 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 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 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 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 let cur_offset: usize = (1 - 1) * envelope_size;
23733
23734 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23736
23737 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 let cur_offset: usize = (2 - 1) * envelope_size;
23759
23760 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23762
23763 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 let cur_offset: usize = (3 - 1) * envelope_size;
23795
23796 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23798
23799 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 let cur_offset: usize = (4 - 1) * envelope_size;
23831
23832 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
23834
23835 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 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 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 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 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 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 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 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 } else {
24241 *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 } else {
24258 *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 } else {
24418 *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 } else {
24443 *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 } else {
24468 *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 } else {
24493 *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 } else {
24657 *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 } else {
24682 *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 } else {
24707 *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 } else {
24732 *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}