1#![warn(clippy::all)]
3#![allow(unused_parens, unused_variables, unused_mut, unused_imports, unreachable_code)]
4
5::fidl_next::bitflags! {
6 #[doc = " The common members definition behind [`Rights`] and [`Abilities`]. Some operations may apply\n only to certain node types (e.g. [`Operations.MODIFY_DIRECTORY`] only applies to directories).\n"]#[derive(
7 Clone,
8 Copy,
9 Debug,
10 PartialEq,
11 Eq,
12 Hash,
13 )]
14 pub struct Operations: u64 {
15 #[doc = " Connecting to a service in a directory.\n"]const CONNECT = 1;
16 #[doc = " Read byte contents of a node or its children.\n"]const READ_BYTES = 2;
17 #[doc = " Writing to the byte contents of a node or its children.\n"]const WRITE_BYTES = 4;
18 #[doc = " Execute the byte contents of a node or its children.\n"]const EXECUTE = 8;
19 #[doc = " Reading the attributes of a node and/or its children.\n"]const GET_ATTRIBUTES = 16;
20 #[doc = " Updating the attributes of a node and/or its children.\n"]const UPDATE_ATTRIBUTES = 32;
21 #[doc = " Reading the list of nodes in a directory.\n"]const ENUMERATE = 64;
22 #[doc = " Opening a node from a directory. Must be specified with [`Rights.ENUMERATE`], as directory\n contents can be probed by opening children.\n"]const TRAVERSE = 128;
23 #[doc = " Modifying the list of nodes in a directory, e.g. creating, renaming, link/unlink, etc...\n Must be specified with [`Rights.ENUMERATE`], as directory contents can be probed via name\n conflicts during node creation.\n"]const MODIFY_DIRECTORY = 256;
24
25 }
26}
27
28impl ::fidl_next::Encodable for Operations {
29 type Encoded = WireOperations;
30}
31
32unsafe impl<___E> ::fidl_next::Encode<___E> for Operations
33where
34 ___E: ?Sized,
35{
36 #[inline]
37 fn encode(
38 &mut self,
39 _: &mut ___E,
40 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
41 ) -> Result<(), ::fidl_next::EncodeError> {
42 ::fidl_next::munge!(let WireOperations { value } = out);
43 let _ = value.write(::fidl_next::WireU64::from(self.bits()));
44 Ok(())
45 }
46}
47
48impl ::core::convert::From<WireOperations> for Operations {
49 fn from(wire: WireOperations) -> Self {
50 Self::from_bits_retain(u64::from(wire.value))
51 }
52}
53
54impl ::fidl_next::TakeFrom<WireOperations> for Operations {
55 #[inline]
56 fn take_from(from: &WireOperations) -> Self {
57 Self::from(*from)
58 }
59}
60
61#[derive(Clone, Copy, Debug)]
63#[repr(transparent)]
64pub struct WireOperations {
65 value: ::fidl_next::WireU64,
66}
67
68unsafe impl ::fidl_next::ZeroPadding for WireOperations {
69 #[inline]
70 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
71 }
73}
74
75unsafe impl<___D> ::fidl_next::Decode<___D> for WireOperations
76where
77 ___D: ?Sized,
78{
79 fn decode(
80 slot: ::fidl_next::Slot<'_, Self>,
81 _: &mut ___D,
82 ) -> Result<(), ::fidl_next::DecodeError> {
83 ::fidl_next::munge!(let Self { value } = slot);
84 let set = u64::from(*value);
85 if set & !Operations::all().bits() != 0 {
86 return Err(::fidl_next::DecodeError::InvalidBits {
87 expected: Operations::all().bits() as usize,
88 actual: set as usize,
89 });
90 }
91
92 Ok(())
93 }
94}
95
96impl ::core::convert::From<Operations> for WireOperations {
97 fn from(natural: Operations) -> Self {
98 Self { value: ::fidl_next::WireU64::from(natural.bits()) }
99 }
100}
101
102#[doc = " Abilities are properties intrinsic to a node. They specify which operations are supported by it.\n\n Invoking an operation on a node that does not support it results in `ZX_ERR_NOT_SUPPORTED`.\n Note `ZX_ERR_ACCESS_DENIED` takes precedence over `ZX_ERR_NOT_SUPPORTED` when both apply.\n"]
103pub type Abilities = crate::Operations;
104
105pub type WireAbilities = crate::WireOperations;
107
108#[doc = " The reference point for updating the seek offset. See [`File.Seek`].\n\n This enum matches the `zx_stream_seek_origin_t` enum.\n"]
109#[derive(Clone, Copy, Debug, PartialEq, Eq)]
110#[repr(u32)]
111pub enum SeekOrigin {
112 Start = 0,
113 Current = 1,
114 End = 2,
115}
116
117impl ::fidl_next::Encodable for SeekOrigin {
118 type Encoded = WireSeekOrigin;
119}
120
121unsafe impl<___E> ::fidl_next::Encode<___E> for SeekOrigin
122where
123 ___E: ?Sized,
124{
125 #[inline]
126 fn encode(
127 &mut self,
128 _: &mut ___E,
129 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
130 ) -> Result<(), ::fidl_next::EncodeError> {
131 ::fidl_next::munge!(let WireSeekOrigin { value } = out);
132 let _ = value.write(::fidl_next::WireU32::from(match *self {
133 Self::Start => 0,
134
135 Self::Current => 1,
136
137 Self::End => 2,
138 }));
139
140 Ok(())
141 }
142}
143
144impl ::core::convert::From<WireSeekOrigin> for SeekOrigin {
145 fn from(wire: WireSeekOrigin) -> Self {
146 match u32::from(wire.value) {
147 0 => Self::Start,
148
149 1 => Self::Current,
150
151 2 => Self::End,
152
153 _ => unsafe { ::core::hint::unreachable_unchecked() },
154 }
155 }
156}
157
158impl ::fidl_next::TakeFrom<WireSeekOrigin> for SeekOrigin {
159 #[inline]
160 fn take_from(from: &WireSeekOrigin) -> Self {
161 Self::from(*from)
162 }
163}
164
165#[derive(Clone, Copy, Debug, PartialEq, Eq)]
167#[repr(transparent)]
168pub struct WireSeekOrigin {
169 value: ::fidl_next::WireU32,
170}
171
172unsafe impl ::fidl_next::ZeroPadding for WireSeekOrigin {
173 #[inline]
174 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
175 }
177}
178
179impl WireSeekOrigin {
180 pub const START: WireSeekOrigin = WireSeekOrigin { value: ::fidl_next::WireU32(0) };
181
182 pub const CURRENT: WireSeekOrigin = WireSeekOrigin { value: ::fidl_next::WireU32(1) };
183
184 pub const END: WireSeekOrigin = WireSeekOrigin { value: ::fidl_next::WireU32(2) };
185}
186
187unsafe impl<___D> ::fidl_next::Decode<___D> for WireSeekOrigin
188where
189 ___D: ?Sized,
190{
191 fn decode(
192 slot: ::fidl_next::Slot<'_, Self>,
193 _: &mut ___D,
194 ) -> Result<(), ::fidl_next::DecodeError> {
195 ::fidl_next::munge!(let Self { value } = slot);
196
197 match u32::from(*value) {
198 0 | 1 | 2 => (),
199 unknown => return Err(::fidl_next::DecodeError::InvalidEnumOrdinal(unknown as i128)),
200 }
201
202 Ok(())
203 }
204}
205
206impl ::core::convert::From<SeekOrigin> for WireSeekOrigin {
207 fn from(natural: SeekOrigin) -> Self {
208 match natural {
209 SeekOrigin::Start => WireSeekOrigin::START,
210
211 SeekOrigin::Current => WireSeekOrigin::CURRENT,
212
213 SeekOrigin::End => WireSeekOrigin::END,
214 }
215 }
216}
217
218#[derive(Clone, Debug)]
219pub struct AdvisoryLockRange {
220 pub origin: crate::SeekOrigin,
221
222 pub offset: i64,
223
224 pub length: i64,
225}
226
227impl ::fidl_next::Encodable for AdvisoryLockRange {
228 type Encoded = WireAdvisoryLockRange;
229}
230
231unsafe impl<___E> ::fidl_next::Encode<___E> for AdvisoryLockRange
232where
233 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
234{
235 #[inline]
236 fn encode(
237 &mut self,
238 encoder: &mut ___E,
239 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
240 ) -> Result<(), ::fidl_next::EncodeError> {
241 ::fidl_next::munge! {
242 let Self::Encoded {
243 origin,
244 offset,
245 length,
246
247 } = out;
248 }
249
250 ::fidl_next::Encode::encode(&mut self.origin, encoder, origin)?;
251
252 ::fidl_next::Encode::encode(&mut self.offset, encoder, offset)?;
253
254 ::fidl_next::Encode::encode(&mut self.length, encoder, length)?;
255
256 Ok(())
257 }
258}
259
260impl ::fidl_next::EncodableOption for Box<AdvisoryLockRange> {
261 type EncodedOption = ::fidl_next::WireBox<WireAdvisoryLockRange>;
262}
263
264unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<AdvisoryLockRange>
265where
266 ___E: ::fidl_next::Encoder + ?Sized,
267 AdvisoryLockRange: ::fidl_next::Encode<___E>,
268{
269 #[inline]
270 fn encode_option(
271 this: Option<&mut Self>,
272 encoder: &mut ___E,
273 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
274 ) -> Result<(), ::fidl_next::EncodeError> {
275 if let Some(inner) = this {
276 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
277 ::fidl_next::WireBox::encode_present(out);
278 } else {
279 ::fidl_next::WireBox::encode_absent(out);
280 }
281
282 Ok(())
283 }
284}
285
286impl ::fidl_next::TakeFrom<WireAdvisoryLockRange> for AdvisoryLockRange {
287 #[inline]
288 fn take_from(from: &WireAdvisoryLockRange) -> Self {
289 Self {
290 origin: ::fidl_next::TakeFrom::take_from(&from.origin),
291
292 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
293
294 length: ::fidl_next::TakeFrom::take_from(&from.length),
295 }
296 }
297}
298
299#[derive(Clone, Debug)]
301#[repr(C)]
302pub struct WireAdvisoryLockRange {
303 pub origin: crate::WireSeekOrigin,
304
305 pub offset: ::fidl_next::WireI64,
306
307 pub length: ::fidl_next::WireI64,
308}
309
310unsafe impl ::fidl_next::ZeroPadding for WireAdvisoryLockRange {
311 #[inline]
312 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
313 unsafe {
314 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
315 }
316 }
317}
318
319unsafe impl<___D> ::fidl_next::Decode<___D> for WireAdvisoryLockRange
320where
321 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
322{
323 fn decode(
324 slot: ::fidl_next::Slot<'_, Self>,
325 decoder: &mut ___D,
326 ) -> Result<(), ::fidl_next::DecodeError> {
327 ::fidl_next::munge! {
328 let Self {
329 mut origin,
330 mut offset,
331 mut length,
332
333 } = slot;
334 }
335
336 ::fidl_next::Decode::decode(origin.as_mut(), decoder)?;
337
338 ::fidl_next::Decode::decode(offset.as_mut(), decoder)?;
339
340 ::fidl_next::Decode::decode(length.as_mut(), decoder)?;
341
342 Ok(())
343 }
344}
345
346#[derive(Clone, Copy, Debug, PartialEq, Eq)]
347#[repr(u32)]
348pub enum AdvisoryLockType {
349 Read = 1,
350 Write = 2,
351 Unlock = 3,
352}
353
354impl ::fidl_next::Encodable for AdvisoryLockType {
355 type Encoded = WireAdvisoryLockType;
356}
357
358unsafe impl<___E> ::fidl_next::Encode<___E> for AdvisoryLockType
359where
360 ___E: ?Sized,
361{
362 #[inline]
363 fn encode(
364 &mut self,
365 _: &mut ___E,
366 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
367 ) -> Result<(), ::fidl_next::EncodeError> {
368 ::fidl_next::munge!(let WireAdvisoryLockType { value } = out);
369 let _ = value.write(::fidl_next::WireU32::from(match *self {
370 Self::Read => 1,
371
372 Self::Write => 2,
373
374 Self::Unlock => 3,
375 }));
376
377 Ok(())
378 }
379}
380
381impl ::core::convert::From<WireAdvisoryLockType> for AdvisoryLockType {
382 fn from(wire: WireAdvisoryLockType) -> Self {
383 match u32::from(wire.value) {
384 1 => Self::Read,
385
386 2 => Self::Write,
387
388 3 => Self::Unlock,
389
390 _ => unsafe { ::core::hint::unreachable_unchecked() },
391 }
392 }
393}
394
395impl ::fidl_next::TakeFrom<WireAdvisoryLockType> for AdvisoryLockType {
396 #[inline]
397 fn take_from(from: &WireAdvisoryLockType) -> Self {
398 Self::from(*from)
399 }
400}
401
402#[derive(Clone, Copy, Debug, PartialEq, Eq)]
404#[repr(transparent)]
405pub struct WireAdvisoryLockType {
406 value: ::fidl_next::WireU32,
407}
408
409unsafe impl ::fidl_next::ZeroPadding for WireAdvisoryLockType {
410 #[inline]
411 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
412 }
414}
415
416impl WireAdvisoryLockType {
417 pub const READ: WireAdvisoryLockType = WireAdvisoryLockType { value: ::fidl_next::WireU32(1) };
418
419 pub const WRITE: WireAdvisoryLockType = WireAdvisoryLockType { value: ::fidl_next::WireU32(2) };
420
421 pub const UNLOCK: WireAdvisoryLockType =
422 WireAdvisoryLockType { value: ::fidl_next::WireU32(3) };
423}
424
425unsafe impl<___D> ::fidl_next::Decode<___D> for WireAdvisoryLockType
426where
427 ___D: ?Sized,
428{
429 fn decode(
430 slot: ::fidl_next::Slot<'_, Self>,
431 _: &mut ___D,
432 ) -> Result<(), ::fidl_next::DecodeError> {
433 ::fidl_next::munge!(let Self { value } = slot);
434
435 match u32::from(*value) {
436 1 | 2 | 3 => (),
437 unknown => return Err(::fidl_next::DecodeError::InvalidEnumOrdinal(unknown as i128)),
438 }
439
440 Ok(())
441 }
442}
443
444impl ::core::convert::From<AdvisoryLockType> for WireAdvisoryLockType {
445 fn from(natural: AdvisoryLockType) -> Self {
446 match natural {
447 AdvisoryLockType::Read => WireAdvisoryLockType::READ,
448
449 AdvisoryLockType::Write => WireAdvisoryLockType::WRITE,
450
451 AdvisoryLockType::Unlock => WireAdvisoryLockType::UNLOCK,
452 }
453 }
454}
455
456#[derive(Clone, Debug)]
457pub struct AdvisoryLockRequest {
458 pub type_: Option<crate::AdvisoryLockType>,
459
460 pub range: Option<crate::AdvisoryLockRange>,
461
462 pub wait: Option<bool>,
463}
464
465impl AdvisoryLockRequest {
466 fn __max_ordinal(&self) -> usize {
467 if self.type_.is_some() {
468 return 1;
469 }
470
471 if self.range.is_some() {
472 return 2;
473 }
474
475 if self.wait.is_some() {
476 return 3;
477 }
478
479 0
480 }
481}
482
483impl ::fidl_next::Encodable for AdvisoryLockRequest {
484 type Encoded = WireAdvisoryLockRequest;
485}
486
487unsafe impl<___E> ::fidl_next::Encode<___E> for AdvisoryLockRequest
488where
489 ___E: ::fidl_next::Encoder + ?Sized,
490{
491 #[inline]
492 fn encode(
493 &mut self,
494 encoder: &mut ___E,
495 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
496 ) -> Result<(), ::fidl_next::EncodeError> {
497 ::fidl_next::munge!(let WireAdvisoryLockRequest { table } = out);
498
499 let max_ord = self.__max_ordinal();
500
501 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
502 ::fidl_next::ZeroPadding::zero_padding(&mut out);
503
504 let mut preallocated =
505 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
506
507 for i in 1..=max_ord {
508 match i {
509 3 => {
510 if let Some(wait) = &mut self.wait {
511 ::fidl_next::WireEnvelope::encode_value(
512 wait,
513 preallocated.encoder,
514 &mut out,
515 )?;
516 } else {
517 ::fidl_next::WireEnvelope::encode_zero(&mut out)
518 }
519 }
520
521 2 => {
522 if let Some(range) = &mut self.range {
523 ::fidl_next::WireEnvelope::encode_value(
524 range,
525 preallocated.encoder,
526 &mut out,
527 )?;
528 } else {
529 ::fidl_next::WireEnvelope::encode_zero(&mut out)
530 }
531 }
532
533 1 => {
534 if let Some(type_) = &mut self.type_ {
535 ::fidl_next::WireEnvelope::encode_value(
536 type_,
537 preallocated.encoder,
538 &mut out,
539 )?;
540 } else {
541 ::fidl_next::WireEnvelope::encode_zero(&mut out)
542 }
543 }
544
545 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
546 }
547 unsafe {
548 preallocated.write_next(out.assume_init_ref());
549 }
550 }
551
552 ::fidl_next::WireTable::encode_len(table, max_ord);
553
554 Ok(())
555 }
556}
557
558impl ::fidl_next::TakeFrom<WireAdvisoryLockRequest> for AdvisoryLockRequest {
559 #[inline]
560 fn take_from(from: &WireAdvisoryLockRequest) -> Self {
561 Self {
562 type_: from.type_().map(::fidl_next::TakeFrom::take_from),
563
564 range: from.range().map(::fidl_next::TakeFrom::take_from),
565
566 wait: from.wait().map(::fidl_next::TakeFrom::take_from),
567 }
568 }
569}
570
571#[repr(C)]
573pub struct WireAdvisoryLockRequest {
574 table: ::fidl_next::WireTable,
575}
576
577unsafe impl ::fidl_next::ZeroPadding for WireAdvisoryLockRequest {
578 #[inline]
579 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
580 ::fidl_next::munge!(let Self { table } = out);
581 ::fidl_next::WireTable::zero_padding(table);
582 }
583}
584
585unsafe impl<___D> ::fidl_next::Decode<___D> for WireAdvisoryLockRequest
586where
587 ___D: ::fidl_next::Decoder + ?Sized,
588{
589 fn decode(
590 slot: ::fidl_next::Slot<'_, Self>,
591 decoder: &mut ___D,
592 ) -> Result<(), ::fidl_next::DecodeError> {
593 ::fidl_next::munge!(let Self { table } = slot);
594
595 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
596 match ordinal {
597 0 => unsafe { ::core::hint::unreachable_unchecked() },
598
599 1 => {
600 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireAdvisoryLockType>(
601 slot.as_mut(),
602 decoder,
603 )?;
604
605 Ok(())
606 }
607
608 2 => {
609 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireAdvisoryLockRange>(
610 slot.as_mut(),
611 decoder,
612 )?;
613
614 Ok(())
615 }
616
617 3 => {
618 ::fidl_next::WireEnvelope::decode_as::<___D, bool>(slot.as_mut(), decoder)?;
619
620 Ok(())
621 }
622
623 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
624 }
625 })
626 }
627}
628
629impl WireAdvisoryLockRequest {
630 pub fn type_(&self) -> Option<&crate::WireAdvisoryLockType> {
631 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
632 }
633
634 pub fn range(&self) -> Option<&crate::WireAdvisoryLockRange> {
635 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
636 }
637
638 pub fn wait(&self) -> Option<&bool> {
639 unsafe { Some(self.table.get(3)?.deref_unchecked()) }
640 }
641}
642
643impl ::core::fmt::Debug for WireAdvisoryLockRequest {
644 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
645 f.debug_struct("AdvisoryLockRequest")
646 .field("type_", &self.type_())
647 .field("range", &self.range())
648 .field("wait", &self.wait())
649 .finish()
650 }
651}
652
653#[derive(Clone, Debug)]
654pub struct AdvisoryLockingAdvisoryLockRequest {
655 pub request: crate::AdvisoryLockRequest,
656}
657
658impl ::fidl_next::Encodable for AdvisoryLockingAdvisoryLockRequest {
659 type Encoded = WireAdvisoryLockingAdvisoryLockRequest;
660}
661
662unsafe impl<___E> ::fidl_next::Encode<___E> for AdvisoryLockingAdvisoryLockRequest
663where
664 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
665
666 ___E: ::fidl_next::Encoder,
667{
668 #[inline]
669 fn encode(
670 &mut self,
671 encoder: &mut ___E,
672 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
673 ) -> Result<(), ::fidl_next::EncodeError> {
674 ::fidl_next::munge! {
675 let Self::Encoded {
676 request,
677
678 } = out;
679 }
680
681 ::fidl_next::Encode::encode(&mut self.request, encoder, request)?;
682
683 Ok(())
684 }
685}
686
687impl ::fidl_next::EncodableOption for Box<AdvisoryLockingAdvisoryLockRequest> {
688 type EncodedOption = ::fidl_next::WireBox<WireAdvisoryLockingAdvisoryLockRequest>;
689}
690
691unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<AdvisoryLockingAdvisoryLockRequest>
692where
693 ___E: ::fidl_next::Encoder + ?Sized,
694 AdvisoryLockingAdvisoryLockRequest: ::fidl_next::Encode<___E>,
695{
696 #[inline]
697 fn encode_option(
698 this: Option<&mut Self>,
699 encoder: &mut ___E,
700 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
701 ) -> Result<(), ::fidl_next::EncodeError> {
702 if let Some(inner) = this {
703 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
704 ::fidl_next::WireBox::encode_present(out);
705 } else {
706 ::fidl_next::WireBox::encode_absent(out);
707 }
708
709 Ok(())
710 }
711}
712
713impl ::fidl_next::TakeFrom<WireAdvisoryLockingAdvisoryLockRequest>
714 for AdvisoryLockingAdvisoryLockRequest
715{
716 #[inline]
717 fn take_from(from: &WireAdvisoryLockingAdvisoryLockRequest) -> Self {
718 Self { request: ::fidl_next::TakeFrom::take_from(&from.request) }
719 }
720}
721
722#[derive(Debug)]
724#[repr(C)]
725pub struct WireAdvisoryLockingAdvisoryLockRequest {
726 pub request: crate::WireAdvisoryLockRequest,
727}
728
729unsafe impl ::fidl_next::ZeroPadding for WireAdvisoryLockingAdvisoryLockRequest {
730 #[inline]
731 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
732}
733
734unsafe impl<___D> ::fidl_next::Decode<___D> for WireAdvisoryLockingAdvisoryLockRequest
735where
736 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
737
738 ___D: ::fidl_next::Decoder,
739{
740 fn decode(
741 slot: ::fidl_next::Slot<'_, Self>,
742 decoder: &mut ___D,
743 ) -> Result<(), ::fidl_next::DecodeError> {
744 ::fidl_next::munge! {
745 let Self {
746 mut request,
747
748 } = slot;
749 }
750
751 ::fidl_next::Decode::decode(request.as_mut(), decoder)?;
752
753 Ok(())
754 }
755}
756
757pub type AdvisoryLockingAdvisoryLockResponse = ();
758
759pub type WireAdvisoryLockingAdvisoryLockResponse = ();
761
762#[doc = " Advisory locking protocol.\n\n This protocol is intended to be composed into the |File| protocol to\n provide support for advisory locking.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n These primitives are designed to support the flock() and fcntl(),\n specifically F_SETLK, F_SETLKW, and F_GETLK, functionality that code\n running on Fuchsia expects from other operating systems.\n"]
764#[derive(Debug)]
765pub struct AdvisoryLocking;
766
767pub mod advisory_locking {
768 pub mod prelude {
769 pub use crate::{
770 advisory_locking, AdvisoryLocking, AdvisoryLockingClientHandler,
771 AdvisoryLockingClientSender, AdvisoryLockingServerHandler, AdvisoryLockingServerSender,
772 };
773
774 pub use crate::AdvisoryLockingAdvisoryLockRequest;
775
776 pub use crate::AdvisoryLockingAdvisoryLockResponse;
777 }
778
779 pub struct AdvisoryLock;
780
781 impl ::fidl_next::Method for AdvisoryLock {
782 const ORDINAL: u64 = 7992130864415541162;
783
784 type Protocol = crate::AdvisoryLocking;
785
786 type Request = crate::WireAdvisoryLockingAdvisoryLockRequest;
787
788 type Response = ::fidl_next::WireResult<
789 crate::WireAdvisoryLockingAdvisoryLockResponse,
790 ::fidl_next::WireI32,
791 >;
792 }
793}
794
795pub trait AdvisoryLockingClientSender {
797 type Transport: ::fidl_next::Transport;
798
799 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
800 fn advisory_lock<___R>(
801 &self,
802 request: &mut ___R,
803 ) -> Result<
804 ::fidl_next::ResponseFuture<'_, Self::Transport, advisory_locking::AdvisoryLock>,
805 ::fidl_next::EncodeError,
806 >
807 where
808 ___R: ::fidl_next::Encode<
809 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
810 Encoded = crate::WireAdvisoryLockingAdvisoryLockRequest,
811 >;
812}
813
814impl<___T> AdvisoryLockingClientSender for ::fidl_next::ClientSender<___T, AdvisoryLocking>
815where
816 ___T: ::fidl_next::Transport,
817{
818 type Transport = ___T;
819
820 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
821 fn advisory_lock<___R>(
822 &self,
823 request: &mut ___R,
824 ) -> Result<
825 ::fidl_next::ResponseFuture<'_, Self::Transport, advisory_locking::AdvisoryLock>,
826 ::fidl_next::EncodeError,
827 >
828 where
829 ___R: ::fidl_next::Encode<
830 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
831 Encoded = crate::WireAdvisoryLockingAdvisoryLockRequest,
832 >,
833 {
834 self.as_untyped()
835 .send_two_way(7992130864415541162, request)
836 .map(::fidl_next::ResponseFuture::from_untyped)
837 }
838}
839
840pub trait AdvisoryLockingClientHandler<___T: ::fidl_next::Transport> {}
844
845impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for AdvisoryLocking
846where
847 ___T: ::fidl_next::Transport,
848 ___H: AdvisoryLockingClientHandler<___T>,
849
850 <advisory_locking::AdvisoryLock as ::fidl_next::Method>::Response:
851 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
852{
853 fn on_event(
854 handler: &mut ___H,
855 sender: &::fidl_next::ClientSender<___T, Self>,
856 ordinal: u64,
857 buffer: ___T::RecvBuffer,
858 ) {
859 match ordinal {
860 ordinal => {
861 sender.close();
862 }
863 }
864 }
865}
866
867pub trait AdvisoryLockingServerSender {
869 type Transport: ::fidl_next::Transport;
870}
871
872impl<___T> AdvisoryLockingServerSender for ::fidl_next::ServerSender<___T, AdvisoryLocking>
873where
874 ___T: ::fidl_next::Transport,
875{
876 type Transport = ___T;
877}
878
879pub trait AdvisoryLockingServerHandler<___T: ::fidl_next::Transport> {
883 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
884 fn advisory_lock(
885 &mut self,
886 sender: &::fidl_next::ServerSender<___T, AdvisoryLocking>,
887
888 request: ::fidl_next::RequestBuffer<___T, advisory_locking::AdvisoryLock>,
889
890 responder: ::fidl_next::Responder<advisory_locking::AdvisoryLock>,
891 );
892}
893
894impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for AdvisoryLocking
895where
896 ___T: ::fidl_next::Transport,
897 ___H: AdvisoryLockingServerHandler<___T>,
898
899 crate::WireAdvisoryLockingAdvisoryLockRequest:
900 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
901{
902 fn on_one_way(
903 handler: &mut ___H,
904 sender: &::fidl_next::ServerSender<___T, Self>,
905 ordinal: u64,
906 buffer: ___T::RecvBuffer,
907 ) {
908 match ordinal {
909 ordinal => {
910 sender.close();
911 }
912 }
913 }
914
915 fn on_two_way(
916 handler: &mut ___H,
917 sender: &::fidl_next::ServerSender<___T, Self>,
918 ordinal: u64,
919 buffer: ___T::RecvBuffer,
920 responder: ::fidl_next::protocol::Responder,
921 ) {
922 match ordinal {
923 7992130864415541162 => {
924 let responder = ::fidl_next::Responder::from_untyped(responder);
925
926 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
927 handler.advisory_lock(sender, buffer, responder);
928 }
929
930 ordinal => {
931 sender.close();
932 }
933 }
934 }
935}
936
937::fidl_next::bitflags! {
938 #[derive(
939 Clone,
940 Copy,
941 Debug,
942 PartialEq,
943 Eq,
944 Hash,
945 )]
946 pub struct AllocateMode: u32 {
947 const KEEP_SIZE = 1;
948 const UNSHARE_RANGE = 2;
949 const PUNCH_HOLE = 4;
950 const COLLAPSE_RANGE = 8;
951 const ZERO_RANGE = 16;
952 const INSERT_RANGE = 32;
953 const _ = !0;
954 }
955}
956
957impl ::fidl_next::Encodable for AllocateMode {
958 type Encoded = WireAllocateMode;
959}
960
961unsafe impl<___E> ::fidl_next::Encode<___E> for AllocateMode
962where
963 ___E: ?Sized,
964{
965 #[inline]
966 fn encode(
967 &mut self,
968 _: &mut ___E,
969 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
970 ) -> Result<(), ::fidl_next::EncodeError> {
971 ::fidl_next::munge!(let WireAllocateMode { value } = out);
972 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
973 Ok(())
974 }
975}
976
977impl ::core::convert::From<WireAllocateMode> for AllocateMode {
978 fn from(wire: WireAllocateMode) -> Self {
979 Self::from_bits_retain(u32::from(wire.value))
980 }
981}
982
983impl ::fidl_next::TakeFrom<WireAllocateMode> for AllocateMode {
984 #[inline]
985 fn take_from(from: &WireAllocateMode) -> Self {
986 Self::from(*from)
987 }
988}
989
990#[derive(Clone, Copy, Debug)]
992#[repr(transparent)]
993pub struct WireAllocateMode {
994 value: ::fidl_next::WireU32,
995}
996
997unsafe impl ::fidl_next::ZeroPadding for WireAllocateMode {
998 #[inline]
999 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
1000 }
1002}
1003
1004unsafe impl<___D> ::fidl_next::Decode<___D> for WireAllocateMode
1005where
1006 ___D: ?Sized,
1007{
1008 fn decode(
1009 slot: ::fidl_next::Slot<'_, Self>,
1010 _: &mut ___D,
1011 ) -> Result<(), ::fidl_next::DecodeError> {
1012 Ok(())
1013 }
1014}
1015
1016impl ::core::convert::From<AllocateMode> for WireAllocateMode {
1017 fn from(natural: AllocateMode) -> Self {
1018 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
1019 }
1020}
1021
1022#[doc = " Rights are properties specific to a connection. They limit which operations are allowed on a\n connection, including those which may be granted to new connections.\n\n Invoking an operation without the corresponding right results in `ZX_ERR_ACCESS_DENIED`\n even if the node does not have support for the operation.\n"]
1023pub type Rights = crate::Operations;
1024
1025pub type WireRights = crate::WireOperations;
1027
1028#[derive(Debug)]
1029pub struct ConnectionInfo {
1030 pub rights: Option<crate::Operations>,
1031}
1032
1033impl ConnectionInfo {
1034 fn __max_ordinal(&self) -> usize {
1035 if self.rights.is_some() {
1036 return 1;
1037 }
1038
1039 0
1040 }
1041}
1042
1043impl ::fidl_next::Encodable for ConnectionInfo {
1044 type Encoded = WireConnectionInfo;
1045}
1046
1047unsafe impl<___E> ::fidl_next::Encode<___E> for ConnectionInfo
1048where
1049 ___E: ::fidl_next::Encoder + ?Sized,
1050
1051 ___E: ::fidl_next::fuchsia::HandleEncoder,
1052{
1053 #[inline]
1054 fn encode(
1055 &mut self,
1056 encoder: &mut ___E,
1057 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1058 ) -> Result<(), ::fidl_next::EncodeError> {
1059 ::fidl_next::munge!(let WireConnectionInfo { table } = out);
1060
1061 let max_ord = self.__max_ordinal();
1062
1063 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
1064 ::fidl_next::ZeroPadding::zero_padding(&mut out);
1065
1066 let mut preallocated =
1067 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
1068
1069 for i in 1..=max_ord {
1070 match i {
1071 1 => {
1072 if let Some(rights) = &mut self.rights {
1073 ::fidl_next::WireEnvelope::encode_value(
1074 rights,
1075 preallocated.encoder,
1076 &mut out,
1077 )?;
1078 } else {
1079 ::fidl_next::WireEnvelope::encode_zero(&mut out)
1080 }
1081 }
1082
1083 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
1084 }
1085 unsafe {
1086 preallocated.write_next(out.assume_init_ref());
1087 }
1088 }
1089
1090 ::fidl_next::WireTable::encode_len(table, max_ord);
1091
1092 Ok(())
1093 }
1094}
1095
1096impl ::fidl_next::TakeFrom<WireConnectionInfo> for ConnectionInfo {
1097 #[inline]
1098 fn take_from(from: &WireConnectionInfo) -> Self {
1099 Self { rights: from.rights().map(::fidl_next::TakeFrom::take_from) }
1100 }
1101}
1102
1103#[repr(C)]
1105pub struct WireConnectionInfo {
1106 table: ::fidl_next::WireTable,
1107}
1108
1109unsafe impl ::fidl_next::ZeroPadding for WireConnectionInfo {
1110 #[inline]
1111 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
1112 ::fidl_next::munge!(let Self { table } = out);
1113 ::fidl_next::WireTable::zero_padding(table);
1114 }
1115}
1116
1117unsafe impl<___D> ::fidl_next::Decode<___D> for WireConnectionInfo
1118where
1119 ___D: ::fidl_next::Decoder + ?Sized,
1120
1121 ___D: ::fidl_next::fuchsia::HandleDecoder,
1122{
1123 fn decode(
1124 slot: ::fidl_next::Slot<'_, Self>,
1125 decoder: &mut ___D,
1126 ) -> Result<(), ::fidl_next::DecodeError> {
1127 ::fidl_next::munge!(let Self { table } = slot);
1128
1129 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
1130 match ordinal {
1131 0 => unsafe { ::core::hint::unreachable_unchecked() },
1132
1133 1 => {
1134 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireOperations>(
1135 slot.as_mut(),
1136 decoder,
1137 )?;
1138
1139 Ok(())
1140 }
1141
1142 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
1143 }
1144 })
1145 }
1146}
1147
1148impl WireConnectionInfo {
1149 pub fn rights(&self) -> Option<&crate::WireOperations> {
1150 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
1151 }
1152}
1153
1154impl ::core::fmt::Debug for WireConnectionInfo {
1155 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
1156 f.debug_struct("ConnectionInfo").field("rights", &self.rights()).finish()
1157 }
1158}
1159
1160#[doc = " The type to identify a node, if the implementation supports some notion of\n unique node ID.\n\n ## Uniqueness Guarantees\n\n A client is usually presented with a directory tree that is the result\n of composing together multiple backing implementation instances. An ID\n would be unique within the corresponding instance only.\n Their boundaries are rather implicit on Fuchsia, as a result of\n transparently-forwarding directory proxies. It could be common for a client\n to observe identical `Id`s when traversing a directory tree, when it\n encounters nodes from different backing instances. Therefore, the ID is best\n used for debugging and informational purposes.\n\n The [`fuchsia.fs/FilesystemInfo.fs_id`] field may be used to disambiguate\n IDs from different backing instances.\n"]
1161pub type Id = u64;
1162
1163pub type WireId = ::fidl_next::WireU64;
1165
1166pub const DIRECTORY_PROTOCOL_NAME: &str = "fuchsia.io/Directory";
1167
1168::fidl_next::bitflags! {
1169 #[doc = " DEPRECATED - Use Flags instead.\n"]#[derive(
1170 Clone,
1171 Copy,
1172 Debug,
1173 PartialEq,
1174 Eq,
1175 Hash,
1176 )]
1177 pub struct OpenFlags: u32 {
1178 #[doc = " Can read from target object.\n"]const RIGHT_READABLE = 1;
1179 #[doc = " Can write to target object.\n"]const RIGHT_WRITABLE = 2;
1180 #[doc = " Connection can map target object executable.\n"]const RIGHT_EXECUTABLE = 8;
1181 #[doc = " Create the object if it doesn\'t exist.\n"]const CREATE = 65536;
1182 #[doc = " (with Create) Fail if the object already exists.\n"]const CREATE_IF_ABSENT = 131072;
1183 #[doc = " Truncate the object before usage.\n"]const TRUNCATE = 262144;
1184 #[doc = " Assert that the object to be opened is a directory.\n Return an error if the target object is not a directory.\n"]const DIRECTORY = 524288;
1185 #[doc = " Seek to the end of the object before all writes.\n"]const APPEND = 1048576;
1186 #[doc = " Open a reference to the object, not the object itself.\n It is ONLY valid to pass the following flags together with `NODE_REFERENCE`:\n - `DIRECTORY`\n - `NOT_DIRECTORY`\n - `DESCRIBE`\n otherwise an error is returned.\n If an object is opened or cloned using this method, the resulting connection does not carry\n any permission flags.\n The resulting connection allows a limited set of operations: `GetAttr`, `Clone`, `Close`,\n `Describe`, and `GetFlags`. The connection will speak the `Node` protocol. Calling `SetAttr`\n or `SetFlags` will result in `ZX_ERR_BAD_HANDLE`.\n"]const NODE_REFERENCE = 4194304;
1187 #[doc = " Requests that an \"OnOpen\" event is sent to the interface request.\n\n The event will contain a non-null `NodeInfoDeprecated` if the open/clone is successful. This\n can be used to open a protocol that does not compose fuchsia.io/Node; the event is sent as\n if the protocol is fuchsia.io/Node and then the target protocol is used exclusively.\n"]const DESCRIBE = 8388608;
1188 #[doc = " Specify this flag to request POSIX-compatibility with respect to write permission handling.\n Currently, it affects permission handling specifically during Open:\n - If the target path is a directory, the rights on the new connection expand to include\n `WRITABLE` if and only if the current connection and all intermediate mount points\n are writable.\n - Otherwise, this flag is ignored. It is an access denied error to request more rights\n than those on the current connection, or any intermediate mount points.\n\n If this flag is omitted, opening always uses the requested rights, failing the operation with\n access denied error if requested rights exceeds the rights attached to the current connection.\n\n If the requesting connection is read-only and the requested rights are read-only, the flag\n may be ignored by the server, and is not forwarded downstream. This is an implementation detail,\n necessary to enforce hierarchical permissions across mount points, and should have no effect\n on the expected behavior for clients.\n"]const POSIX_WRITABLE = 134217728;
1189 #[doc = " Specify this flag to request POSIX-compatibility with respect to execute permission handling.\n Currently, it affects permission handling specifically during Open:\n - If the target path is a directory, the rights on the new connection expand to include\n `EXECUTABLE` if and only if the current connection and all intermediate mount\n points are executable.\n - Otherwise, this flag is ignored. It is an access denied error to request more rights\n than those on the current connection, or any intermediate mount points.\n\n If this flag is omitted, opening always uses the requested rights, failing the operation with\n access denied error if requested rights exceeds the rights attached to the current connection.\n\n If the requesting connection is read-only and the requested rights are read-only, the flag\n may be ignored by the server, and is not forwarded downstream. This is an implementation detail,\n necessary to enforce hierarchical permissions across mount points, and should have no effect\n on the expected behavior for clients.\n"]const POSIX_EXECUTABLE = 268435456;
1190 #[doc = " Assert that the object to be opened is not a directory.\n Return an error if the target object is a directory.\n"]const NOT_DIRECTORY = 33554432;
1191 #[doc = " When used during clone, the new connection inherits the rights on the source connection,\n regardless if it is a file or directory. Otherwise, clone attempts to use the requested rights.\n It is invalid to pass any of the `RIGHT_*` flags together with `OpenFlags.CLONE_SAME_RIGHTS`.\n"]const CLONE_SAME_RIGHTS = 67108864;
1192 #[doc = " Open the target object as a block device.\n"]const BLOCK_DEVICE = 16777216;
1193
1194 }
1195}
1196
1197impl ::fidl_next::Encodable for OpenFlags {
1198 type Encoded = WireOpenFlags;
1199}
1200
1201unsafe impl<___E> ::fidl_next::Encode<___E> for OpenFlags
1202where
1203 ___E: ?Sized,
1204{
1205 #[inline]
1206 fn encode(
1207 &mut self,
1208 _: &mut ___E,
1209 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1210 ) -> Result<(), ::fidl_next::EncodeError> {
1211 ::fidl_next::munge!(let WireOpenFlags { value } = out);
1212 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
1213 Ok(())
1214 }
1215}
1216
1217impl ::core::convert::From<WireOpenFlags> for OpenFlags {
1218 fn from(wire: WireOpenFlags) -> Self {
1219 Self::from_bits_retain(u32::from(wire.value))
1220 }
1221}
1222
1223impl ::fidl_next::TakeFrom<WireOpenFlags> for OpenFlags {
1224 #[inline]
1225 fn take_from(from: &WireOpenFlags) -> Self {
1226 Self::from(*from)
1227 }
1228}
1229
1230#[derive(Clone, Copy, Debug)]
1232#[repr(transparent)]
1233pub struct WireOpenFlags {
1234 value: ::fidl_next::WireU32,
1235}
1236
1237unsafe impl ::fidl_next::ZeroPadding for WireOpenFlags {
1238 #[inline]
1239 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
1240 }
1242}
1243
1244unsafe impl<___D> ::fidl_next::Decode<___D> for WireOpenFlags
1245where
1246 ___D: ?Sized,
1247{
1248 fn decode(
1249 slot: ::fidl_next::Slot<'_, Self>,
1250 _: &mut ___D,
1251 ) -> Result<(), ::fidl_next::DecodeError> {
1252 ::fidl_next::munge!(let Self { value } = slot);
1253 let set = u32::from(*value);
1254 if set & !OpenFlags::all().bits() != 0 {
1255 return Err(::fidl_next::DecodeError::InvalidBits {
1256 expected: OpenFlags::all().bits() as usize,
1257 actual: set as usize,
1258 });
1259 }
1260
1261 Ok(())
1262 }
1263}
1264
1265impl ::core::convert::From<OpenFlags> for WireOpenFlags {
1266 fn from(natural: OpenFlags) -> Self {
1267 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
1268 }
1269}
1270
1271#[doc = " NodeAttributes defines generic information about a filesystem node.\n"]
1272#[derive(Clone, Debug)]
1273pub struct NodeAttributes {
1274 pub mode: u32,
1275
1276 pub id: u64,
1277
1278 pub content_size: u64,
1279
1280 pub storage_size: u64,
1281
1282 pub link_count: u64,
1283
1284 pub creation_time: u64,
1285
1286 pub modification_time: u64,
1287}
1288
1289impl ::fidl_next::Encodable for NodeAttributes {
1290 type Encoded = WireNodeAttributes;
1291}
1292
1293unsafe impl<___E> ::fidl_next::Encode<___E> for NodeAttributes
1294where
1295 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
1296{
1297 #[inline]
1298 fn encode(
1299 &mut self,
1300 encoder: &mut ___E,
1301 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1302 ) -> Result<(), ::fidl_next::EncodeError> {
1303 ::fidl_next::munge! {
1304 let Self::Encoded {
1305 mode,
1306 id,
1307 content_size,
1308 storage_size,
1309 link_count,
1310 creation_time,
1311 modification_time,
1312
1313 } = out;
1314 }
1315
1316 ::fidl_next::Encode::encode(&mut self.mode, encoder, mode)?;
1317
1318 ::fidl_next::Encode::encode(&mut self.id, encoder, id)?;
1319
1320 ::fidl_next::Encode::encode(&mut self.content_size, encoder, content_size)?;
1321
1322 ::fidl_next::Encode::encode(&mut self.storage_size, encoder, storage_size)?;
1323
1324 ::fidl_next::Encode::encode(&mut self.link_count, encoder, link_count)?;
1325
1326 ::fidl_next::Encode::encode(&mut self.creation_time, encoder, creation_time)?;
1327
1328 ::fidl_next::Encode::encode(&mut self.modification_time, encoder, modification_time)?;
1329
1330 Ok(())
1331 }
1332}
1333
1334impl ::fidl_next::EncodableOption for Box<NodeAttributes> {
1335 type EncodedOption = ::fidl_next::WireBox<WireNodeAttributes>;
1336}
1337
1338unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeAttributes>
1339where
1340 ___E: ::fidl_next::Encoder + ?Sized,
1341 NodeAttributes: ::fidl_next::Encode<___E>,
1342{
1343 #[inline]
1344 fn encode_option(
1345 this: Option<&mut Self>,
1346 encoder: &mut ___E,
1347 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
1348 ) -> Result<(), ::fidl_next::EncodeError> {
1349 if let Some(inner) = this {
1350 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
1351 ::fidl_next::WireBox::encode_present(out);
1352 } else {
1353 ::fidl_next::WireBox::encode_absent(out);
1354 }
1355
1356 Ok(())
1357 }
1358}
1359
1360impl ::fidl_next::TakeFrom<WireNodeAttributes> for NodeAttributes {
1361 #[inline]
1362 fn take_from(from: &WireNodeAttributes) -> Self {
1363 Self {
1364 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
1365
1366 id: ::fidl_next::TakeFrom::take_from(&from.id),
1367
1368 content_size: ::fidl_next::TakeFrom::take_from(&from.content_size),
1369
1370 storage_size: ::fidl_next::TakeFrom::take_from(&from.storage_size),
1371
1372 link_count: ::fidl_next::TakeFrom::take_from(&from.link_count),
1373
1374 creation_time: ::fidl_next::TakeFrom::take_from(&from.creation_time),
1375
1376 modification_time: ::fidl_next::TakeFrom::take_from(&from.modification_time),
1377 }
1378 }
1379}
1380
1381#[derive(Clone, Debug)]
1383#[repr(C)]
1384pub struct WireNodeAttributes {
1385 pub mode: ::fidl_next::WireU32,
1386
1387 pub id: ::fidl_next::WireU64,
1388
1389 pub content_size: ::fidl_next::WireU64,
1390
1391 pub storage_size: ::fidl_next::WireU64,
1392
1393 pub link_count: ::fidl_next::WireU64,
1394
1395 pub creation_time: ::fidl_next::WireU64,
1396
1397 pub modification_time: ::fidl_next::WireU64,
1398}
1399
1400unsafe impl ::fidl_next::ZeroPadding for WireNodeAttributes {
1401 #[inline]
1402 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
1403 unsafe {
1404 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
1405 }
1406 }
1407}
1408
1409unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeAttributes
1410where
1411 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
1412{
1413 fn decode(
1414 slot: ::fidl_next::Slot<'_, Self>,
1415 decoder: &mut ___D,
1416 ) -> Result<(), ::fidl_next::DecodeError> {
1417 ::fidl_next::munge! {
1418 let Self {
1419 mut mode,
1420 mut id,
1421 mut content_size,
1422 mut storage_size,
1423 mut link_count,
1424 mut creation_time,
1425 mut modification_time,
1426
1427 } = slot;
1428 }
1429
1430 ::fidl_next::Decode::decode(mode.as_mut(), decoder)?;
1431
1432 ::fidl_next::Decode::decode(id.as_mut(), decoder)?;
1433
1434 ::fidl_next::Decode::decode(content_size.as_mut(), decoder)?;
1435
1436 ::fidl_next::Decode::decode(storage_size.as_mut(), decoder)?;
1437
1438 ::fidl_next::Decode::decode(link_count.as_mut(), decoder)?;
1439
1440 ::fidl_next::Decode::decode(creation_time.as_mut(), decoder)?;
1441
1442 ::fidl_next::Decode::decode(modification_time.as_mut(), decoder)?;
1443
1444 Ok(())
1445 }
1446}
1447
1448#[derive(Clone, Debug)]
1449pub struct NodeGetAttrResponse {
1450 pub s: i32,
1451
1452 pub attributes: crate::NodeAttributes,
1453}
1454
1455impl ::fidl_next::Encodable for NodeGetAttrResponse {
1456 type Encoded = WireNodeGetAttrResponse;
1457}
1458
1459unsafe impl<___E> ::fidl_next::Encode<___E> for NodeGetAttrResponse
1460where
1461 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
1462{
1463 #[inline]
1464 fn encode(
1465 &mut self,
1466 encoder: &mut ___E,
1467 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1468 ) -> Result<(), ::fidl_next::EncodeError> {
1469 ::fidl_next::munge! {
1470 let Self::Encoded {
1471 s,
1472 attributes,
1473
1474 } = out;
1475 }
1476
1477 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
1478
1479 ::fidl_next::Encode::encode(&mut self.attributes, encoder, attributes)?;
1480
1481 Ok(())
1482 }
1483}
1484
1485impl ::fidl_next::EncodableOption for Box<NodeGetAttrResponse> {
1486 type EncodedOption = ::fidl_next::WireBox<WireNodeGetAttrResponse>;
1487}
1488
1489unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeGetAttrResponse>
1490where
1491 ___E: ::fidl_next::Encoder + ?Sized,
1492 NodeGetAttrResponse: ::fidl_next::Encode<___E>,
1493{
1494 #[inline]
1495 fn encode_option(
1496 this: Option<&mut Self>,
1497 encoder: &mut ___E,
1498 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
1499 ) -> Result<(), ::fidl_next::EncodeError> {
1500 if let Some(inner) = this {
1501 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
1502 ::fidl_next::WireBox::encode_present(out);
1503 } else {
1504 ::fidl_next::WireBox::encode_absent(out);
1505 }
1506
1507 Ok(())
1508 }
1509}
1510
1511impl ::fidl_next::TakeFrom<WireNodeGetAttrResponse> for NodeGetAttrResponse {
1512 #[inline]
1513 fn take_from(from: &WireNodeGetAttrResponse) -> Self {
1514 Self {
1515 s: ::fidl_next::TakeFrom::take_from(&from.s),
1516
1517 attributes: ::fidl_next::TakeFrom::take_from(&from.attributes),
1518 }
1519 }
1520}
1521
1522#[derive(Clone, Debug)]
1524#[repr(C)]
1525pub struct WireNodeGetAttrResponse {
1526 pub s: ::fidl_next::WireI32,
1527
1528 pub attributes: crate::WireNodeAttributes,
1529}
1530
1531unsafe impl ::fidl_next::ZeroPadding for WireNodeGetAttrResponse {
1532 #[inline]
1533 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
1534 unsafe {
1535 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
1536 }
1537 }
1538}
1539
1540unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeGetAttrResponse
1541where
1542 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
1543{
1544 fn decode(
1545 slot: ::fidl_next::Slot<'_, Self>,
1546 decoder: &mut ___D,
1547 ) -> Result<(), ::fidl_next::DecodeError> {
1548 ::fidl_next::munge! {
1549 let Self {
1550 mut s,
1551 mut attributes,
1552
1553 } = slot;
1554 }
1555
1556 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
1557
1558 ::fidl_next::Decode::decode(attributes.as_mut(), decoder)?;
1559
1560 Ok(())
1561 }
1562}
1563
1564::fidl_next::bitflags! {
1565 #[doc = " The fields of \'attributes\' which are used to update the Node are indicated\n by the \'flags\' argument.\n"]#[derive(
1566 Clone,
1567 Copy,
1568 Debug,
1569 PartialEq,
1570 Eq,
1571 Hash,
1572 )]
1573 pub struct NodeAttributeFlags: u32 {
1574 const CREATION_TIME = 1;
1575 const MODIFICATION_TIME = 2;
1576
1577 }
1578}
1579
1580impl ::fidl_next::Encodable for NodeAttributeFlags {
1581 type Encoded = WireNodeAttributeFlags;
1582}
1583
1584unsafe impl<___E> ::fidl_next::Encode<___E> for NodeAttributeFlags
1585where
1586 ___E: ?Sized,
1587{
1588 #[inline]
1589 fn encode(
1590 &mut self,
1591 _: &mut ___E,
1592 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1593 ) -> Result<(), ::fidl_next::EncodeError> {
1594 ::fidl_next::munge!(let WireNodeAttributeFlags { value } = out);
1595 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
1596 Ok(())
1597 }
1598}
1599
1600impl ::core::convert::From<WireNodeAttributeFlags> for NodeAttributeFlags {
1601 fn from(wire: WireNodeAttributeFlags) -> Self {
1602 Self::from_bits_retain(u32::from(wire.value))
1603 }
1604}
1605
1606impl ::fidl_next::TakeFrom<WireNodeAttributeFlags> for NodeAttributeFlags {
1607 #[inline]
1608 fn take_from(from: &WireNodeAttributeFlags) -> Self {
1609 Self::from(*from)
1610 }
1611}
1612
1613#[derive(Clone, Copy, Debug)]
1615#[repr(transparent)]
1616pub struct WireNodeAttributeFlags {
1617 value: ::fidl_next::WireU32,
1618}
1619
1620unsafe impl ::fidl_next::ZeroPadding for WireNodeAttributeFlags {
1621 #[inline]
1622 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
1623 }
1625}
1626
1627unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeAttributeFlags
1628where
1629 ___D: ?Sized,
1630{
1631 fn decode(
1632 slot: ::fidl_next::Slot<'_, Self>,
1633 _: &mut ___D,
1634 ) -> Result<(), ::fidl_next::DecodeError> {
1635 ::fidl_next::munge!(let Self { value } = slot);
1636 let set = u32::from(*value);
1637 if set & !NodeAttributeFlags::all().bits() != 0 {
1638 return Err(::fidl_next::DecodeError::InvalidBits {
1639 expected: NodeAttributeFlags::all().bits() as usize,
1640 actual: set as usize,
1641 });
1642 }
1643
1644 Ok(())
1645 }
1646}
1647
1648impl ::core::convert::From<NodeAttributeFlags> for WireNodeAttributeFlags {
1649 fn from(natural: NodeAttributeFlags) -> Self {
1650 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
1651 }
1652}
1653
1654#[derive(Clone, Debug)]
1655pub struct NodeSetAttrRequest {
1656 pub flags: crate::NodeAttributeFlags,
1657
1658 pub attributes: crate::NodeAttributes,
1659}
1660
1661impl ::fidl_next::Encodable for NodeSetAttrRequest {
1662 type Encoded = WireNodeSetAttrRequest;
1663}
1664
1665unsafe impl<___E> ::fidl_next::Encode<___E> for NodeSetAttrRequest
1666where
1667 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
1668{
1669 #[inline]
1670 fn encode(
1671 &mut self,
1672 encoder: &mut ___E,
1673 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1674 ) -> Result<(), ::fidl_next::EncodeError> {
1675 ::fidl_next::munge! {
1676 let Self::Encoded {
1677 flags,
1678 attributes,
1679
1680 } = out;
1681 }
1682
1683 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
1684
1685 ::fidl_next::Encode::encode(&mut self.attributes, encoder, attributes)?;
1686
1687 Ok(())
1688 }
1689}
1690
1691impl ::fidl_next::EncodableOption for Box<NodeSetAttrRequest> {
1692 type EncodedOption = ::fidl_next::WireBox<WireNodeSetAttrRequest>;
1693}
1694
1695unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeSetAttrRequest>
1696where
1697 ___E: ::fidl_next::Encoder + ?Sized,
1698 NodeSetAttrRequest: ::fidl_next::Encode<___E>,
1699{
1700 #[inline]
1701 fn encode_option(
1702 this: Option<&mut Self>,
1703 encoder: &mut ___E,
1704 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
1705 ) -> Result<(), ::fidl_next::EncodeError> {
1706 if let Some(inner) = this {
1707 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
1708 ::fidl_next::WireBox::encode_present(out);
1709 } else {
1710 ::fidl_next::WireBox::encode_absent(out);
1711 }
1712
1713 Ok(())
1714 }
1715}
1716
1717impl ::fidl_next::TakeFrom<WireNodeSetAttrRequest> for NodeSetAttrRequest {
1718 #[inline]
1719 fn take_from(from: &WireNodeSetAttrRequest) -> Self {
1720 Self {
1721 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
1722
1723 attributes: ::fidl_next::TakeFrom::take_from(&from.attributes),
1724 }
1725 }
1726}
1727
1728#[derive(Clone, Debug)]
1730#[repr(C)]
1731pub struct WireNodeSetAttrRequest {
1732 pub flags: crate::WireNodeAttributeFlags,
1733
1734 pub attributes: crate::WireNodeAttributes,
1735}
1736
1737unsafe impl ::fidl_next::ZeroPadding for WireNodeSetAttrRequest {
1738 #[inline]
1739 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
1740 unsafe {
1741 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
1742 }
1743 }
1744}
1745
1746unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeSetAttrRequest
1747where
1748 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
1749{
1750 fn decode(
1751 slot: ::fidl_next::Slot<'_, Self>,
1752 decoder: &mut ___D,
1753 ) -> Result<(), ::fidl_next::DecodeError> {
1754 ::fidl_next::munge! {
1755 let Self {
1756 mut flags,
1757 mut attributes,
1758
1759 } = slot;
1760 }
1761
1762 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
1763
1764 ::fidl_next::Decode::decode(attributes.as_mut(), decoder)?;
1765
1766 Ok(())
1767 }
1768}
1769
1770#[derive(Clone, Debug)]
1771#[repr(C)]
1772pub struct NodeSetAttrResponse {
1773 pub s: i32,
1774}
1775
1776impl ::fidl_next::Encodable for NodeSetAttrResponse {
1777 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
1778 ::fidl_next::CopyOptimization::enable_if(
1779 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
1780 )
1781 };
1782
1783 type Encoded = WireNodeSetAttrResponse;
1784}
1785
1786unsafe impl<___E> ::fidl_next::Encode<___E> for NodeSetAttrResponse
1787where
1788 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
1789{
1790 #[inline]
1791 fn encode(
1792 &mut self,
1793 encoder: &mut ___E,
1794 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1795 ) -> Result<(), ::fidl_next::EncodeError> {
1796 ::fidl_next::munge! {
1797 let Self::Encoded {
1798 s,
1799
1800 } = out;
1801 }
1802
1803 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
1804
1805 Ok(())
1806 }
1807}
1808
1809impl ::fidl_next::EncodableOption for Box<NodeSetAttrResponse> {
1810 type EncodedOption = ::fidl_next::WireBox<WireNodeSetAttrResponse>;
1811}
1812
1813unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeSetAttrResponse>
1814where
1815 ___E: ::fidl_next::Encoder + ?Sized,
1816 NodeSetAttrResponse: ::fidl_next::Encode<___E>,
1817{
1818 #[inline]
1819 fn encode_option(
1820 this: Option<&mut Self>,
1821 encoder: &mut ___E,
1822 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
1823 ) -> Result<(), ::fidl_next::EncodeError> {
1824 if let Some(inner) = this {
1825 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
1826 ::fidl_next::WireBox::encode_present(out);
1827 } else {
1828 ::fidl_next::WireBox::encode_absent(out);
1829 }
1830
1831 Ok(())
1832 }
1833}
1834
1835impl ::fidl_next::TakeFrom<WireNodeSetAttrResponse> for NodeSetAttrResponse {
1836 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
1837 ::fidl_next::CopyOptimization::enable_if(
1838 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
1839 )
1840 };
1841
1842 #[inline]
1843 fn take_from(from: &WireNodeSetAttrResponse) -> Self {
1844 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
1845 }
1846}
1847
1848#[derive(Clone, Debug)]
1850#[repr(C)]
1851pub struct WireNodeSetAttrResponse {
1852 pub s: ::fidl_next::WireI32,
1853}
1854
1855unsafe impl ::fidl_next::ZeroPadding for WireNodeSetAttrResponse {
1856 #[inline]
1857 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
1858}
1859
1860unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeSetAttrResponse
1861where
1862 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
1863{
1864 fn decode(
1865 slot: ::fidl_next::Slot<'_, Self>,
1866 decoder: &mut ___D,
1867 ) -> Result<(), ::fidl_next::DecodeError> {
1868 ::fidl_next::munge! {
1869 let Self {
1870 mut s,
1871
1872 } = slot;
1873 }
1874
1875 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
1876
1877 Ok(())
1878 }
1879}
1880
1881#[derive(Clone, Debug)]
1882pub struct NodeQueryFilesystemResponse {
1883 pub s: i32,
1884
1885 pub info: Option<Box<crate::FilesystemInfo>>,
1886}
1887
1888impl ::fidl_next::Encodable for NodeQueryFilesystemResponse {
1889 type Encoded = WireNodeQueryFilesystemResponse;
1890}
1891
1892unsafe impl<___E> ::fidl_next::Encode<___E> for NodeQueryFilesystemResponse
1893where
1894 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
1895
1896 ___E: ::fidl_next::Encoder,
1897{
1898 #[inline]
1899 fn encode(
1900 &mut self,
1901 encoder: &mut ___E,
1902 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
1903 ) -> Result<(), ::fidl_next::EncodeError> {
1904 ::fidl_next::munge! {
1905 let Self::Encoded {
1906 s,
1907 info,
1908
1909 } = out;
1910 }
1911
1912 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
1913
1914 ::fidl_next::Encode::encode(&mut self.info, encoder, info)?;
1915
1916 Ok(())
1917 }
1918}
1919
1920impl ::fidl_next::EncodableOption for Box<NodeQueryFilesystemResponse> {
1921 type EncodedOption = ::fidl_next::WireBox<WireNodeQueryFilesystemResponse>;
1922}
1923
1924unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeQueryFilesystemResponse>
1925where
1926 ___E: ::fidl_next::Encoder + ?Sized,
1927 NodeQueryFilesystemResponse: ::fidl_next::Encode<___E>,
1928{
1929 #[inline]
1930 fn encode_option(
1931 this: Option<&mut Self>,
1932 encoder: &mut ___E,
1933 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
1934 ) -> Result<(), ::fidl_next::EncodeError> {
1935 if let Some(inner) = this {
1936 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
1937 ::fidl_next::WireBox::encode_present(out);
1938 } else {
1939 ::fidl_next::WireBox::encode_absent(out);
1940 }
1941
1942 Ok(())
1943 }
1944}
1945
1946impl ::fidl_next::TakeFrom<WireNodeQueryFilesystemResponse> for NodeQueryFilesystemResponse {
1947 #[inline]
1948 fn take_from(from: &WireNodeQueryFilesystemResponse) -> Self {
1949 Self {
1950 s: ::fidl_next::TakeFrom::take_from(&from.s),
1951
1952 info: ::fidl_next::TakeFrom::take_from(&from.info),
1953 }
1954 }
1955}
1956
1957#[derive(Debug)]
1959#[repr(C)]
1960pub struct WireNodeQueryFilesystemResponse {
1961 pub s: ::fidl_next::WireI32,
1962
1963 pub info: ::fidl_next::WireBox<crate::WireFilesystemInfo>,
1964}
1965
1966unsafe impl ::fidl_next::ZeroPadding for WireNodeQueryFilesystemResponse {
1967 #[inline]
1968 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
1969 unsafe {
1970 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
1971 }
1972 }
1973}
1974
1975unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeQueryFilesystemResponse
1976where
1977 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
1978
1979 ___D: ::fidl_next::Decoder,
1980{
1981 fn decode(
1982 slot: ::fidl_next::Slot<'_, Self>,
1983 decoder: &mut ___D,
1984 ) -> Result<(), ::fidl_next::DecodeError> {
1985 ::fidl_next::munge! {
1986 let Self {
1987 mut s,
1988 mut info,
1989
1990 } = slot;
1991 }
1992
1993 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
1994
1995 ::fidl_next::Decode::decode(info.as_mut(), decoder)?;
1996
1997 Ok(())
1998 }
1999}
2000
2001pub type NodeUpdateAttributesResponse = ();
2002
2003pub type WireNodeUpdateAttributesResponse = ();
2005
2006pub type NodeSyncResponse = ();
2007
2008pub type WireNodeSyncResponse = ();
2010
2011::fidl_next::bitflags! {
2012 #[derive(
2013 Clone,
2014 Copy,
2015 Debug,
2016 PartialEq,
2017 Eq,
2018 Hash,
2019 )]
2020 pub struct ModeType: u32 {
2021 const DO_NOT_USE = 2147483648;
2022
2023 }
2024}
2025
2026impl ::fidl_next::Encodable for ModeType {
2027 type Encoded = WireModeType;
2028}
2029
2030unsafe impl<___E> ::fidl_next::Encode<___E> for ModeType
2031where
2032 ___E: ?Sized,
2033{
2034 #[inline]
2035 fn encode(
2036 &mut self,
2037 _: &mut ___E,
2038 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2039 ) -> Result<(), ::fidl_next::EncodeError> {
2040 ::fidl_next::munge!(let WireModeType { value } = out);
2041 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
2042 Ok(())
2043 }
2044}
2045
2046impl ::core::convert::From<WireModeType> for ModeType {
2047 fn from(wire: WireModeType) -> Self {
2048 Self::from_bits_retain(u32::from(wire.value))
2049 }
2050}
2051
2052impl ::fidl_next::TakeFrom<WireModeType> for ModeType {
2053 #[inline]
2054 fn take_from(from: &WireModeType) -> Self {
2055 Self::from(*from)
2056 }
2057}
2058
2059#[derive(Clone, Copy, Debug)]
2061#[repr(transparent)]
2062pub struct WireModeType {
2063 value: ::fidl_next::WireU32,
2064}
2065
2066unsafe impl ::fidl_next::ZeroPadding for WireModeType {
2067 #[inline]
2068 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
2069 }
2071}
2072
2073unsafe impl<___D> ::fidl_next::Decode<___D> for WireModeType
2074where
2075 ___D: ?Sized,
2076{
2077 fn decode(
2078 slot: ::fidl_next::Slot<'_, Self>,
2079 _: &mut ___D,
2080 ) -> Result<(), ::fidl_next::DecodeError> {
2081 ::fidl_next::munge!(let Self { value } = slot);
2082 let set = u32::from(*value);
2083 if set & !ModeType::all().bits() != 0 {
2084 return Err(::fidl_next::DecodeError::InvalidBits {
2085 expected: ModeType::all().bits() as usize,
2086 actual: set as usize,
2087 });
2088 }
2089
2090 Ok(())
2091 }
2092}
2093
2094impl ::core::convert::From<ModeType> for WireModeType {
2095 fn from(natural: ModeType) -> Self {
2096 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
2097 }
2098}
2099
2100#[doc = " The maximum length, in bytes, of a filesystem path.\n"]
2101pub const MAX_PATH_LENGTH: u64 = 4095;
2102
2103#[doc = " A path is a string of one or more components, separated by \"/\".\n E.g. `foo/bar/baz`\n\n ## Invariants\n\n A valid path must meet the following criteria:\n\n * It cannot be empty.\n * It cannot be longer than [`MAX_PATH_LENGTH`].\n * It cannot have a leading \"/\".\n * It cannot have a trailing \"/\".\n * It must be exactly \".\" OR each of its components must be a valid [`Name`].\n\n Paths should be transformed into their canonical forms at client side.\n For example, a client should convert `\"foo/bar/.././baz/\"` to `\"foo/baz\"`\n before using it as a path.\n"]
2104pub type Path = String;
2105
2106pub type WirePath = ::fidl_next::WireString;
2108
2109#[derive(Clone, Debug)]
2110#[repr(C)]
2111pub struct DirectoryReadDirentsRequest {
2112 pub max_bytes: u64,
2113}
2114
2115impl ::fidl_next::Encodable for DirectoryReadDirentsRequest {
2116 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2117 ::fidl_next::CopyOptimization::enable_if(
2118 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
2119 )
2120 };
2121
2122 type Encoded = WireDirectoryReadDirentsRequest;
2123}
2124
2125unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryReadDirentsRequest
2126where
2127 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
2128{
2129 #[inline]
2130 fn encode(
2131 &mut self,
2132 encoder: &mut ___E,
2133 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2134 ) -> Result<(), ::fidl_next::EncodeError> {
2135 ::fidl_next::munge! {
2136 let Self::Encoded {
2137 max_bytes,
2138
2139 } = out;
2140 }
2141
2142 ::fidl_next::Encode::encode(&mut self.max_bytes, encoder, max_bytes)?;
2143
2144 Ok(())
2145 }
2146}
2147
2148impl ::fidl_next::EncodableOption for Box<DirectoryReadDirentsRequest> {
2149 type EncodedOption = ::fidl_next::WireBox<WireDirectoryReadDirentsRequest>;
2150}
2151
2152unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryReadDirentsRequest>
2153where
2154 ___E: ::fidl_next::Encoder + ?Sized,
2155 DirectoryReadDirentsRequest: ::fidl_next::Encode<___E>,
2156{
2157 #[inline]
2158 fn encode_option(
2159 this: Option<&mut Self>,
2160 encoder: &mut ___E,
2161 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
2162 ) -> Result<(), ::fidl_next::EncodeError> {
2163 if let Some(inner) = this {
2164 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
2165 ::fidl_next::WireBox::encode_present(out);
2166 } else {
2167 ::fidl_next::WireBox::encode_absent(out);
2168 }
2169
2170 Ok(())
2171 }
2172}
2173
2174impl ::fidl_next::TakeFrom<WireDirectoryReadDirentsRequest> for DirectoryReadDirentsRequest {
2175 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2176 ::fidl_next::CopyOptimization::enable_if(
2177 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
2178 )
2179 };
2180
2181 #[inline]
2182 fn take_from(from: &WireDirectoryReadDirentsRequest) -> Self {
2183 Self { max_bytes: ::fidl_next::TakeFrom::take_from(&from.max_bytes) }
2184 }
2185}
2186
2187#[derive(Clone, Debug)]
2189#[repr(C)]
2190pub struct WireDirectoryReadDirentsRequest {
2191 pub max_bytes: ::fidl_next::WireU64,
2192}
2193
2194unsafe impl ::fidl_next::ZeroPadding for WireDirectoryReadDirentsRequest {
2195 #[inline]
2196 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
2197}
2198
2199unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryReadDirentsRequest
2200where
2201 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
2202{
2203 fn decode(
2204 slot: ::fidl_next::Slot<'_, Self>,
2205 decoder: &mut ___D,
2206 ) -> Result<(), ::fidl_next::DecodeError> {
2207 ::fidl_next::munge! {
2208 let Self {
2209 mut max_bytes,
2210
2211 } = slot;
2212 }
2213
2214 ::fidl_next::Decode::decode(max_bytes.as_mut(), decoder)?;
2215
2216 Ok(())
2217 }
2218}
2219
2220#[doc = " The maximal buffer size which can be transmitted for buffered operations.\n This capacity is currently set somewhat arbitrarily.\n"]
2221pub const MAX_BUF: u64 = 8192;
2222
2223#[derive(Clone, Debug)]
2224pub struct DirectoryReadDirentsResponse {
2225 pub s: i32,
2226
2227 pub dirents: Vec<u8>,
2228}
2229
2230impl ::fidl_next::Encodable for DirectoryReadDirentsResponse {
2231 type Encoded = WireDirectoryReadDirentsResponse;
2232}
2233
2234unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryReadDirentsResponse
2235where
2236 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
2237
2238 ___E: ::fidl_next::Encoder,
2239{
2240 #[inline]
2241 fn encode(
2242 &mut self,
2243 encoder: &mut ___E,
2244 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2245 ) -> Result<(), ::fidl_next::EncodeError> {
2246 ::fidl_next::munge! {
2247 let Self::Encoded {
2248 s,
2249 dirents,
2250
2251 } = out;
2252 }
2253
2254 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
2255
2256 ::fidl_next::Encode::encode(&mut self.dirents, encoder, dirents)?;
2257
2258 Ok(())
2259 }
2260}
2261
2262impl ::fidl_next::EncodableOption for Box<DirectoryReadDirentsResponse> {
2263 type EncodedOption = ::fidl_next::WireBox<WireDirectoryReadDirentsResponse>;
2264}
2265
2266unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryReadDirentsResponse>
2267where
2268 ___E: ::fidl_next::Encoder + ?Sized,
2269 DirectoryReadDirentsResponse: ::fidl_next::Encode<___E>,
2270{
2271 #[inline]
2272 fn encode_option(
2273 this: Option<&mut Self>,
2274 encoder: &mut ___E,
2275 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
2276 ) -> Result<(), ::fidl_next::EncodeError> {
2277 if let Some(inner) = this {
2278 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
2279 ::fidl_next::WireBox::encode_present(out);
2280 } else {
2281 ::fidl_next::WireBox::encode_absent(out);
2282 }
2283
2284 Ok(())
2285 }
2286}
2287
2288impl ::fidl_next::TakeFrom<WireDirectoryReadDirentsResponse> for DirectoryReadDirentsResponse {
2289 #[inline]
2290 fn take_from(from: &WireDirectoryReadDirentsResponse) -> Self {
2291 Self {
2292 s: ::fidl_next::TakeFrom::take_from(&from.s),
2293
2294 dirents: ::fidl_next::TakeFrom::take_from(&from.dirents),
2295 }
2296 }
2297}
2298
2299#[derive(Debug)]
2301#[repr(C)]
2302pub struct WireDirectoryReadDirentsResponse {
2303 pub s: ::fidl_next::WireI32,
2304
2305 pub dirents: ::fidl_next::WireVector<u8>,
2306}
2307
2308unsafe impl ::fidl_next::ZeroPadding for WireDirectoryReadDirentsResponse {
2309 #[inline]
2310 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
2311 unsafe {
2312 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
2313 }
2314 }
2315}
2316
2317unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryReadDirentsResponse
2318where
2319 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
2320
2321 ___D: ::fidl_next::Decoder,
2322{
2323 fn decode(
2324 slot: ::fidl_next::Slot<'_, Self>,
2325 decoder: &mut ___D,
2326 ) -> Result<(), ::fidl_next::DecodeError> {
2327 ::fidl_next::munge! {
2328 let Self {
2329 mut s,
2330 mut dirents,
2331
2332 } = slot;
2333 }
2334
2335 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
2336
2337 ::fidl_next::Decode::decode(dirents.as_mut(), decoder)?;
2338
2339 let dirents = unsafe { dirents.deref_unchecked() };
2340
2341 if dirents.len() > 8192 {
2342 return Err(::fidl_next::DecodeError::VectorTooLong {
2343 size: dirents.len() as u64,
2344 limit: 8192,
2345 });
2346 }
2347
2348 Ok(())
2349 }
2350}
2351
2352#[derive(Clone, Debug)]
2353#[repr(C)]
2354pub struct DirectoryRewindResponse {
2355 pub s: i32,
2356}
2357
2358impl ::fidl_next::Encodable for DirectoryRewindResponse {
2359 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2360 ::fidl_next::CopyOptimization::enable_if(
2361 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
2362 )
2363 };
2364
2365 type Encoded = WireDirectoryRewindResponse;
2366}
2367
2368unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryRewindResponse
2369where
2370 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
2371{
2372 #[inline]
2373 fn encode(
2374 &mut self,
2375 encoder: &mut ___E,
2376 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2377 ) -> Result<(), ::fidl_next::EncodeError> {
2378 ::fidl_next::munge! {
2379 let Self::Encoded {
2380 s,
2381
2382 } = out;
2383 }
2384
2385 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
2386
2387 Ok(())
2388 }
2389}
2390
2391impl ::fidl_next::EncodableOption for Box<DirectoryRewindResponse> {
2392 type EncodedOption = ::fidl_next::WireBox<WireDirectoryRewindResponse>;
2393}
2394
2395unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryRewindResponse>
2396where
2397 ___E: ::fidl_next::Encoder + ?Sized,
2398 DirectoryRewindResponse: ::fidl_next::Encode<___E>,
2399{
2400 #[inline]
2401 fn encode_option(
2402 this: Option<&mut Self>,
2403 encoder: &mut ___E,
2404 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
2405 ) -> Result<(), ::fidl_next::EncodeError> {
2406 if let Some(inner) = this {
2407 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
2408 ::fidl_next::WireBox::encode_present(out);
2409 } else {
2410 ::fidl_next::WireBox::encode_absent(out);
2411 }
2412
2413 Ok(())
2414 }
2415}
2416
2417impl ::fidl_next::TakeFrom<WireDirectoryRewindResponse> for DirectoryRewindResponse {
2418 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2419 ::fidl_next::CopyOptimization::enable_if(
2420 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
2421 )
2422 };
2423
2424 #[inline]
2425 fn take_from(from: &WireDirectoryRewindResponse) -> Self {
2426 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
2427 }
2428}
2429
2430#[derive(Clone, Debug)]
2432#[repr(C)]
2433pub struct WireDirectoryRewindResponse {
2434 pub s: ::fidl_next::WireI32,
2435}
2436
2437unsafe impl ::fidl_next::ZeroPadding for WireDirectoryRewindResponse {
2438 #[inline]
2439 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
2440}
2441
2442unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryRewindResponse
2443where
2444 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
2445{
2446 fn decode(
2447 slot: ::fidl_next::Slot<'_, Self>,
2448 decoder: &mut ___D,
2449 ) -> Result<(), ::fidl_next::DecodeError> {
2450 ::fidl_next::munge! {
2451 let Self {
2452 mut s,
2453
2454 } = slot;
2455 }
2456
2457 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
2458
2459 Ok(())
2460 }
2461}
2462
2463#[derive(Debug)]
2464#[repr(C)]
2465pub struct DirectoryGetTokenResponse {
2466 pub s: i32,
2467
2468 pub token: Option<::fidl_next::fuchsia::zx::Handle>,
2469}
2470
2471impl ::fidl_next::Encodable for DirectoryGetTokenResponse {
2472 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2473 ::fidl_next::CopyOptimization::enable_if(
2474 true
2475
2476 && <
2477 i32 as ::fidl_next::Encodable
2478 >::COPY_OPTIMIZATION.is_enabled()
2479
2480 && <
2481 Option<::fidl_next::fuchsia::zx::Handle> as ::fidl_next::Encodable
2482 >::COPY_OPTIMIZATION.is_enabled()
2483
2484 )
2485 };
2486
2487 type Encoded = WireDirectoryGetTokenResponse;
2488}
2489
2490unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryGetTokenResponse
2491where
2492 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
2493
2494 ___E: ::fidl_next::fuchsia::HandleEncoder,
2495{
2496 #[inline]
2497 fn encode(
2498 &mut self,
2499 encoder: &mut ___E,
2500 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2501 ) -> Result<(), ::fidl_next::EncodeError> {
2502 ::fidl_next::munge! {
2503 let Self::Encoded {
2504 s,
2505 token,
2506
2507 } = out;
2508 }
2509
2510 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
2511
2512 ::fidl_next::Encode::encode(&mut self.token, encoder, token)?;
2513
2514 Ok(())
2515 }
2516}
2517
2518impl ::fidl_next::EncodableOption for Box<DirectoryGetTokenResponse> {
2519 type EncodedOption = ::fidl_next::WireBox<WireDirectoryGetTokenResponse>;
2520}
2521
2522unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryGetTokenResponse>
2523where
2524 ___E: ::fidl_next::Encoder + ?Sized,
2525 DirectoryGetTokenResponse: ::fidl_next::Encode<___E>,
2526{
2527 #[inline]
2528 fn encode_option(
2529 this: Option<&mut Self>,
2530 encoder: &mut ___E,
2531 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
2532 ) -> Result<(), ::fidl_next::EncodeError> {
2533 if let Some(inner) = this {
2534 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
2535 ::fidl_next::WireBox::encode_present(out);
2536 } else {
2537 ::fidl_next::WireBox::encode_absent(out);
2538 }
2539
2540 Ok(())
2541 }
2542}
2543
2544impl ::fidl_next::TakeFrom<WireDirectoryGetTokenResponse> for DirectoryGetTokenResponse {
2545 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2546 ::fidl_next::CopyOptimization::enable_if(
2547 true
2548
2549 && <
2550 i32 as ::fidl_next::Encodable
2551 >::COPY_OPTIMIZATION.is_enabled()
2552
2553 && <
2554 Option<::fidl_next::fuchsia::zx::Handle> as ::fidl_next::Encodable
2555 >::COPY_OPTIMIZATION.is_enabled()
2556
2557 )
2558 };
2559
2560 #[inline]
2561 fn take_from(from: &WireDirectoryGetTokenResponse) -> Self {
2562 Self {
2563 s: ::fidl_next::TakeFrom::take_from(&from.s),
2564
2565 token: ::fidl_next::TakeFrom::take_from(&from.token),
2566 }
2567 }
2568}
2569
2570#[derive(Debug)]
2572#[repr(C)]
2573pub struct WireDirectoryGetTokenResponse {
2574 pub s: ::fidl_next::WireI32,
2575
2576 pub token: ::fidl_next::fuchsia::WireOptionalHandle,
2577}
2578
2579unsafe impl ::fidl_next::ZeroPadding for WireDirectoryGetTokenResponse {
2580 #[inline]
2581 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
2582}
2583
2584unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryGetTokenResponse
2585where
2586 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
2587
2588 ___D: ::fidl_next::fuchsia::HandleDecoder,
2589{
2590 fn decode(
2591 slot: ::fidl_next::Slot<'_, Self>,
2592 decoder: &mut ___D,
2593 ) -> Result<(), ::fidl_next::DecodeError> {
2594 ::fidl_next::munge! {
2595 let Self {
2596 mut s,
2597 mut token,
2598
2599 } = slot;
2600 }
2601
2602 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
2603
2604 ::fidl_next::Decode::decode(token.as_mut(), decoder)?;
2605
2606 Ok(())
2607 }
2608}
2609
2610#[doc = " The maximum length, in bytes, of a single filesystem component.\n"]
2611pub const MAX_NAME_LENGTH: u64 = 255;
2612
2613#[doc = " The type for the name of a node, i.e. a single path component.\n E.g. `foo`\n\n ## Invariants\n\n A valid node name must meet the following criteria:\n\n * It cannot be longer than [`MAX_NAME_LENGTH`].\n * It cannot be empty.\n * It cannot be \"..\" (dot-dot).\n * It cannot be \".\" (single dot).\n * It cannot contain \"/\".\n * It cannot contain embedded NUL.\n"]
2614pub type Name = String;
2615
2616pub type WireName = ::fidl_next::WireString;
2618
2619#[derive(Debug)]
2620pub struct DirectoryLinkRequest {
2621 pub src: String,
2622
2623 pub dst_parent_token: ::fidl_next::fuchsia::zx::Handle,
2624
2625 pub dst: String,
2626}
2627
2628impl ::fidl_next::Encodable for DirectoryLinkRequest {
2629 type Encoded = WireDirectoryLinkRequest;
2630}
2631
2632unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryLinkRequest
2633where
2634 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
2635
2636 ___E: ::fidl_next::Encoder,
2637
2638 ___E: ::fidl_next::fuchsia::HandleEncoder,
2639{
2640 #[inline]
2641 fn encode(
2642 &mut self,
2643 encoder: &mut ___E,
2644 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2645 ) -> Result<(), ::fidl_next::EncodeError> {
2646 ::fidl_next::munge! {
2647 let Self::Encoded {
2648 src,
2649 dst_parent_token,
2650 dst,
2651
2652 } = out;
2653 }
2654
2655 ::fidl_next::Encode::encode(&mut self.src, encoder, src)?;
2656
2657 ::fidl_next::Encode::encode(&mut self.dst_parent_token, encoder, dst_parent_token)?;
2658
2659 ::fidl_next::Encode::encode(&mut self.dst, encoder, dst)?;
2660
2661 Ok(())
2662 }
2663}
2664
2665impl ::fidl_next::EncodableOption for Box<DirectoryLinkRequest> {
2666 type EncodedOption = ::fidl_next::WireBox<WireDirectoryLinkRequest>;
2667}
2668
2669unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryLinkRequest>
2670where
2671 ___E: ::fidl_next::Encoder + ?Sized,
2672 DirectoryLinkRequest: ::fidl_next::Encode<___E>,
2673{
2674 #[inline]
2675 fn encode_option(
2676 this: Option<&mut Self>,
2677 encoder: &mut ___E,
2678 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
2679 ) -> Result<(), ::fidl_next::EncodeError> {
2680 if let Some(inner) = this {
2681 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
2682 ::fidl_next::WireBox::encode_present(out);
2683 } else {
2684 ::fidl_next::WireBox::encode_absent(out);
2685 }
2686
2687 Ok(())
2688 }
2689}
2690
2691impl ::fidl_next::TakeFrom<WireDirectoryLinkRequest> for DirectoryLinkRequest {
2692 #[inline]
2693 fn take_from(from: &WireDirectoryLinkRequest) -> Self {
2694 Self {
2695 src: ::fidl_next::TakeFrom::take_from(&from.src),
2696
2697 dst_parent_token: ::fidl_next::TakeFrom::take_from(&from.dst_parent_token),
2698
2699 dst: ::fidl_next::TakeFrom::take_from(&from.dst),
2700 }
2701 }
2702}
2703
2704#[derive(Debug)]
2706#[repr(C)]
2707pub struct WireDirectoryLinkRequest {
2708 pub src: ::fidl_next::WireString,
2709
2710 pub dst_parent_token: ::fidl_next::fuchsia::WireHandle,
2711
2712 pub dst: ::fidl_next::WireString,
2713}
2714
2715unsafe impl ::fidl_next::ZeroPadding for WireDirectoryLinkRequest {
2716 #[inline]
2717 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
2718 unsafe {
2719 out.as_mut_ptr().cast::<u8>().add(20).write_bytes(0, 4);
2720 }
2721 }
2722}
2723
2724unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryLinkRequest
2725where
2726 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
2727
2728 ___D: ::fidl_next::Decoder,
2729
2730 ___D: ::fidl_next::fuchsia::HandleDecoder,
2731{
2732 fn decode(
2733 slot: ::fidl_next::Slot<'_, Self>,
2734 decoder: &mut ___D,
2735 ) -> Result<(), ::fidl_next::DecodeError> {
2736 ::fidl_next::munge! {
2737 let Self {
2738 mut src,
2739 mut dst_parent_token,
2740 mut dst,
2741
2742 } = slot;
2743 }
2744
2745 ::fidl_next::Decode::decode(src.as_mut(), decoder)?;
2746
2747 let src = unsafe { src.deref_unchecked() };
2748
2749 if src.len() > 255 {
2750 return Err(::fidl_next::DecodeError::VectorTooLong {
2751 size: src.len() as u64,
2752 limit: 255,
2753 });
2754 }
2755
2756 ::fidl_next::Decode::decode(dst_parent_token.as_mut(), decoder)?;
2757
2758 ::fidl_next::Decode::decode(dst.as_mut(), decoder)?;
2759
2760 let dst = unsafe { dst.deref_unchecked() };
2761
2762 if dst.len() > 255 {
2763 return Err(::fidl_next::DecodeError::VectorTooLong {
2764 size: dst.len() as u64,
2765 limit: 255,
2766 });
2767 }
2768
2769 Ok(())
2770 }
2771}
2772
2773#[derive(Clone, Debug)]
2774#[repr(C)]
2775pub struct DirectoryLinkResponse {
2776 pub s: i32,
2777}
2778
2779impl ::fidl_next::Encodable for DirectoryLinkResponse {
2780 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2781 ::fidl_next::CopyOptimization::enable_if(
2782 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
2783 )
2784 };
2785
2786 type Encoded = WireDirectoryLinkResponse;
2787}
2788
2789unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryLinkResponse
2790where
2791 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
2792{
2793 #[inline]
2794 fn encode(
2795 &mut self,
2796 encoder: &mut ___E,
2797 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2798 ) -> Result<(), ::fidl_next::EncodeError> {
2799 ::fidl_next::munge! {
2800 let Self::Encoded {
2801 s,
2802
2803 } = out;
2804 }
2805
2806 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
2807
2808 Ok(())
2809 }
2810}
2811
2812impl ::fidl_next::EncodableOption for Box<DirectoryLinkResponse> {
2813 type EncodedOption = ::fidl_next::WireBox<WireDirectoryLinkResponse>;
2814}
2815
2816unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryLinkResponse>
2817where
2818 ___E: ::fidl_next::Encoder + ?Sized,
2819 DirectoryLinkResponse: ::fidl_next::Encode<___E>,
2820{
2821 #[inline]
2822 fn encode_option(
2823 this: Option<&mut Self>,
2824 encoder: &mut ___E,
2825 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
2826 ) -> Result<(), ::fidl_next::EncodeError> {
2827 if let Some(inner) = this {
2828 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
2829 ::fidl_next::WireBox::encode_present(out);
2830 } else {
2831 ::fidl_next::WireBox::encode_absent(out);
2832 }
2833
2834 Ok(())
2835 }
2836}
2837
2838impl ::fidl_next::TakeFrom<WireDirectoryLinkResponse> for DirectoryLinkResponse {
2839 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
2840 ::fidl_next::CopyOptimization::enable_if(
2841 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
2842 )
2843 };
2844
2845 #[inline]
2846 fn take_from(from: &WireDirectoryLinkResponse) -> Self {
2847 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
2848 }
2849}
2850
2851#[derive(Clone, Debug)]
2853#[repr(C)]
2854pub struct WireDirectoryLinkResponse {
2855 pub s: ::fidl_next::WireI32,
2856}
2857
2858unsafe impl ::fidl_next::ZeroPadding for WireDirectoryLinkResponse {
2859 #[inline]
2860 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
2861}
2862
2863unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryLinkResponse
2864where
2865 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
2866{
2867 fn decode(
2868 slot: ::fidl_next::Slot<'_, Self>,
2869 decoder: &mut ___D,
2870 ) -> Result<(), ::fidl_next::DecodeError> {
2871 ::fidl_next::munge! {
2872 let Self {
2873 mut s,
2874
2875 } = slot;
2876 }
2877
2878 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
2879
2880 Ok(())
2881 }
2882}
2883
2884::fidl_next::bitflags! {
2885 #[derive(
2886 Clone,
2887 Copy,
2888 Debug,
2889 PartialEq,
2890 Eq,
2891 Hash,
2892 )]
2893 pub struct UnlinkFlags: u64 {
2894 #[doc = " If set, the unlink will fail (with ZX_ERR_NOT_DIR) if the\n object is not a directory.\n"]const MUST_BE_DIRECTORY = 1;
2895 const _ = !0;
2896 }
2897}
2898
2899impl ::fidl_next::Encodable for UnlinkFlags {
2900 type Encoded = WireUnlinkFlags;
2901}
2902
2903unsafe impl<___E> ::fidl_next::Encode<___E> for UnlinkFlags
2904where
2905 ___E: ?Sized,
2906{
2907 #[inline]
2908 fn encode(
2909 &mut self,
2910 _: &mut ___E,
2911 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2912 ) -> Result<(), ::fidl_next::EncodeError> {
2913 ::fidl_next::munge!(let WireUnlinkFlags { value } = out);
2914 let _ = value.write(::fidl_next::WireU64::from(self.bits()));
2915 Ok(())
2916 }
2917}
2918
2919impl ::core::convert::From<WireUnlinkFlags> for UnlinkFlags {
2920 fn from(wire: WireUnlinkFlags) -> Self {
2921 Self::from_bits_retain(u64::from(wire.value))
2922 }
2923}
2924
2925impl ::fidl_next::TakeFrom<WireUnlinkFlags> for UnlinkFlags {
2926 #[inline]
2927 fn take_from(from: &WireUnlinkFlags) -> Self {
2928 Self::from(*from)
2929 }
2930}
2931
2932#[derive(Clone, Copy, Debug)]
2934#[repr(transparent)]
2935pub struct WireUnlinkFlags {
2936 value: ::fidl_next::WireU64,
2937}
2938
2939unsafe impl ::fidl_next::ZeroPadding for WireUnlinkFlags {
2940 #[inline]
2941 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
2942 }
2944}
2945
2946unsafe impl<___D> ::fidl_next::Decode<___D> for WireUnlinkFlags
2947where
2948 ___D: ?Sized,
2949{
2950 fn decode(
2951 slot: ::fidl_next::Slot<'_, Self>,
2952 _: &mut ___D,
2953 ) -> Result<(), ::fidl_next::DecodeError> {
2954 Ok(())
2955 }
2956}
2957
2958impl ::core::convert::From<UnlinkFlags> for WireUnlinkFlags {
2959 fn from(natural: UnlinkFlags) -> Self {
2960 Self { value: ::fidl_next::WireU64::from(natural.bits()) }
2961 }
2962}
2963
2964#[derive(Clone, Debug)]
2965pub struct UnlinkOptions {
2966 pub flags: Option<crate::UnlinkFlags>,
2967}
2968
2969impl UnlinkOptions {
2970 fn __max_ordinal(&self) -> usize {
2971 if self.flags.is_some() {
2972 return 1;
2973 }
2974
2975 0
2976 }
2977}
2978
2979impl ::fidl_next::Encodable for UnlinkOptions {
2980 type Encoded = WireUnlinkOptions;
2981}
2982
2983unsafe impl<___E> ::fidl_next::Encode<___E> for UnlinkOptions
2984where
2985 ___E: ::fidl_next::Encoder + ?Sized,
2986{
2987 #[inline]
2988 fn encode(
2989 &mut self,
2990 encoder: &mut ___E,
2991 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
2992 ) -> Result<(), ::fidl_next::EncodeError> {
2993 ::fidl_next::munge!(let WireUnlinkOptions { table } = out);
2994
2995 let max_ord = self.__max_ordinal();
2996
2997 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
2998 ::fidl_next::ZeroPadding::zero_padding(&mut out);
2999
3000 let mut preallocated =
3001 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
3002
3003 for i in 1..=max_ord {
3004 match i {
3005 1 => {
3006 if let Some(flags) = &mut self.flags {
3007 ::fidl_next::WireEnvelope::encode_value(
3008 flags,
3009 preallocated.encoder,
3010 &mut out,
3011 )?;
3012 } else {
3013 ::fidl_next::WireEnvelope::encode_zero(&mut out)
3014 }
3015 }
3016
3017 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
3018 }
3019 unsafe {
3020 preallocated.write_next(out.assume_init_ref());
3021 }
3022 }
3023
3024 ::fidl_next::WireTable::encode_len(table, max_ord);
3025
3026 Ok(())
3027 }
3028}
3029
3030impl ::fidl_next::TakeFrom<WireUnlinkOptions> for UnlinkOptions {
3031 #[inline]
3032 fn take_from(from: &WireUnlinkOptions) -> Self {
3033 Self { flags: from.flags().map(::fidl_next::TakeFrom::take_from) }
3034 }
3035}
3036
3037#[repr(C)]
3039pub struct WireUnlinkOptions {
3040 table: ::fidl_next::WireTable,
3041}
3042
3043unsafe impl ::fidl_next::ZeroPadding for WireUnlinkOptions {
3044 #[inline]
3045 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
3046 ::fidl_next::munge!(let Self { table } = out);
3047 ::fidl_next::WireTable::zero_padding(table);
3048 }
3049}
3050
3051unsafe impl<___D> ::fidl_next::Decode<___D> for WireUnlinkOptions
3052where
3053 ___D: ::fidl_next::Decoder + ?Sized,
3054{
3055 fn decode(
3056 slot: ::fidl_next::Slot<'_, Self>,
3057 decoder: &mut ___D,
3058 ) -> Result<(), ::fidl_next::DecodeError> {
3059 ::fidl_next::munge!(let Self { table } = slot);
3060
3061 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
3062 match ordinal {
3063 0 => unsafe { ::core::hint::unreachable_unchecked() },
3064
3065 1 => {
3066 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireUnlinkFlags>(
3067 slot.as_mut(),
3068 decoder,
3069 )?;
3070
3071 Ok(())
3072 }
3073
3074 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
3075 }
3076 })
3077 }
3078}
3079
3080impl WireUnlinkOptions {
3081 pub fn flags(&self) -> Option<&crate::WireUnlinkFlags> {
3082 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
3083 }
3084}
3085
3086impl ::core::fmt::Debug for WireUnlinkOptions {
3087 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
3088 f.debug_struct("UnlinkOptions").field("flags", &self.flags()).finish()
3089 }
3090}
3091
3092#[derive(Clone, Debug)]
3093pub struct DirectoryUnlinkRequest {
3094 pub name: String,
3095
3096 pub options: crate::UnlinkOptions,
3097}
3098
3099impl ::fidl_next::Encodable for DirectoryUnlinkRequest {
3100 type Encoded = WireDirectoryUnlinkRequest;
3101}
3102
3103unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryUnlinkRequest
3104where
3105 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
3106
3107 ___E: ::fidl_next::Encoder,
3108{
3109 #[inline]
3110 fn encode(
3111 &mut self,
3112 encoder: &mut ___E,
3113 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3114 ) -> Result<(), ::fidl_next::EncodeError> {
3115 ::fidl_next::munge! {
3116 let Self::Encoded {
3117 name,
3118 options,
3119
3120 } = out;
3121 }
3122
3123 ::fidl_next::Encode::encode(&mut self.name, encoder, name)?;
3124
3125 ::fidl_next::Encode::encode(&mut self.options, encoder, options)?;
3126
3127 Ok(())
3128 }
3129}
3130
3131impl ::fidl_next::EncodableOption for Box<DirectoryUnlinkRequest> {
3132 type EncodedOption = ::fidl_next::WireBox<WireDirectoryUnlinkRequest>;
3133}
3134
3135unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryUnlinkRequest>
3136where
3137 ___E: ::fidl_next::Encoder + ?Sized,
3138 DirectoryUnlinkRequest: ::fidl_next::Encode<___E>,
3139{
3140 #[inline]
3141 fn encode_option(
3142 this: Option<&mut Self>,
3143 encoder: &mut ___E,
3144 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
3145 ) -> Result<(), ::fidl_next::EncodeError> {
3146 if let Some(inner) = this {
3147 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
3148 ::fidl_next::WireBox::encode_present(out);
3149 } else {
3150 ::fidl_next::WireBox::encode_absent(out);
3151 }
3152
3153 Ok(())
3154 }
3155}
3156
3157impl ::fidl_next::TakeFrom<WireDirectoryUnlinkRequest> for DirectoryUnlinkRequest {
3158 #[inline]
3159 fn take_from(from: &WireDirectoryUnlinkRequest) -> Self {
3160 Self {
3161 name: ::fidl_next::TakeFrom::take_from(&from.name),
3162
3163 options: ::fidl_next::TakeFrom::take_from(&from.options),
3164 }
3165 }
3166}
3167
3168#[derive(Debug)]
3170#[repr(C)]
3171pub struct WireDirectoryUnlinkRequest {
3172 pub name: ::fidl_next::WireString,
3173
3174 pub options: crate::WireUnlinkOptions,
3175}
3176
3177unsafe impl ::fidl_next::ZeroPadding for WireDirectoryUnlinkRequest {
3178 #[inline]
3179 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
3180}
3181
3182unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryUnlinkRequest
3183where
3184 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
3185
3186 ___D: ::fidl_next::Decoder,
3187{
3188 fn decode(
3189 slot: ::fidl_next::Slot<'_, Self>,
3190 decoder: &mut ___D,
3191 ) -> Result<(), ::fidl_next::DecodeError> {
3192 ::fidl_next::munge! {
3193 let Self {
3194 mut name,
3195 mut options,
3196
3197 } = slot;
3198 }
3199
3200 ::fidl_next::Decode::decode(name.as_mut(), decoder)?;
3201
3202 let name = unsafe { name.deref_unchecked() };
3203
3204 if name.len() > 255 {
3205 return Err(::fidl_next::DecodeError::VectorTooLong {
3206 size: name.len() as u64,
3207 limit: 255,
3208 });
3209 }
3210
3211 ::fidl_next::Decode::decode(options.as_mut(), decoder)?;
3212
3213 Ok(())
3214 }
3215}
3216
3217pub type DirectoryUnlinkResponse = ();
3218
3219pub type WireDirectoryUnlinkResponse = ();
3221
3222#[doc = " The type to identify a connection to a node.\n It represents a capability: a reference to a node with associated rights.\n"]
3223pub type Token = ::fidl_next::fuchsia::zx::Handle;
3224
3225pub type WireToken = ::fidl_next::fuchsia::WireHandle;
3227
3228#[derive(Debug)]
3229pub struct DirectoryRenameRequest {
3230 pub src: String,
3231
3232 pub dst_parent_token: ::fidl_next::fuchsia::zx::Handle,
3233
3234 pub dst: String,
3235}
3236
3237impl ::fidl_next::Encodable for DirectoryRenameRequest {
3238 type Encoded = WireDirectoryRenameRequest;
3239}
3240
3241unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryRenameRequest
3242where
3243 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
3244
3245 ___E: ::fidl_next::Encoder,
3246
3247 ___E: ::fidl_next::fuchsia::HandleEncoder,
3248{
3249 #[inline]
3250 fn encode(
3251 &mut self,
3252 encoder: &mut ___E,
3253 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3254 ) -> Result<(), ::fidl_next::EncodeError> {
3255 ::fidl_next::munge! {
3256 let Self::Encoded {
3257 src,
3258 dst_parent_token,
3259 dst,
3260
3261 } = out;
3262 }
3263
3264 ::fidl_next::Encode::encode(&mut self.src, encoder, src)?;
3265
3266 ::fidl_next::Encode::encode(&mut self.dst_parent_token, encoder, dst_parent_token)?;
3267
3268 ::fidl_next::Encode::encode(&mut self.dst, encoder, dst)?;
3269
3270 Ok(())
3271 }
3272}
3273
3274impl ::fidl_next::EncodableOption for Box<DirectoryRenameRequest> {
3275 type EncodedOption = ::fidl_next::WireBox<WireDirectoryRenameRequest>;
3276}
3277
3278unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryRenameRequest>
3279where
3280 ___E: ::fidl_next::Encoder + ?Sized,
3281 DirectoryRenameRequest: ::fidl_next::Encode<___E>,
3282{
3283 #[inline]
3284 fn encode_option(
3285 this: Option<&mut Self>,
3286 encoder: &mut ___E,
3287 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
3288 ) -> Result<(), ::fidl_next::EncodeError> {
3289 if let Some(inner) = this {
3290 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
3291 ::fidl_next::WireBox::encode_present(out);
3292 } else {
3293 ::fidl_next::WireBox::encode_absent(out);
3294 }
3295
3296 Ok(())
3297 }
3298}
3299
3300impl ::fidl_next::TakeFrom<WireDirectoryRenameRequest> for DirectoryRenameRequest {
3301 #[inline]
3302 fn take_from(from: &WireDirectoryRenameRequest) -> Self {
3303 Self {
3304 src: ::fidl_next::TakeFrom::take_from(&from.src),
3305
3306 dst_parent_token: ::fidl_next::TakeFrom::take_from(&from.dst_parent_token),
3307
3308 dst: ::fidl_next::TakeFrom::take_from(&from.dst),
3309 }
3310 }
3311}
3312
3313#[derive(Debug)]
3315#[repr(C)]
3316pub struct WireDirectoryRenameRequest {
3317 pub src: ::fidl_next::WireString,
3318
3319 pub dst_parent_token: ::fidl_next::fuchsia::WireHandle,
3320
3321 pub dst: ::fidl_next::WireString,
3322}
3323
3324unsafe impl ::fidl_next::ZeroPadding for WireDirectoryRenameRequest {
3325 #[inline]
3326 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
3327 unsafe {
3328 out.as_mut_ptr().cast::<u8>().add(20).write_bytes(0, 4);
3329 }
3330 }
3331}
3332
3333unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryRenameRequest
3334where
3335 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
3336
3337 ___D: ::fidl_next::Decoder,
3338
3339 ___D: ::fidl_next::fuchsia::HandleDecoder,
3340{
3341 fn decode(
3342 slot: ::fidl_next::Slot<'_, Self>,
3343 decoder: &mut ___D,
3344 ) -> Result<(), ::fidl_next::DecodeError> {
3345 ::fidl_next::munge! {
3346 let Self {
3347 mut src,
3348 mut dst_parent_token,
3349 mut dst,
3350
3351 } = slot;
3352 }
3353
3354 ::fidl_next::Decode::decode(src.as_mut(), decoder)?;
3355
3356 let src = unsafe { src.deref_unchecked() };
3357
3358 if src.len() > 255 {
3359 return Err(::fidl_next::DecodeError::VectorTooLong {
3360 size: src.len() as u64,
3361 limit: 255,
3362 });
3363 }
3364
3365 ::fidl_next::Decode::decode(dst_parent_token.as_mut(), decoder)?;
3366
3367 ::fidl_next::Decode::decode(dst.as_mut(), decoder)?;
3368
3369 let dst = unsafe { dst.deref_unchecked() };
3370
3371 if dst.len() > 255 {
3372 return Err(::fidl_next::DecodeError::VectorTooLong {
3373 size: dst.len() as u64,
3374 limit: 255,
3375 });
3376 }
3377
3378 Ok(())
3379 }
3380}
3381
3382pub type DirectoryRenameResponse = ();
3383
3384pub type WireDirectoryRenameResponse = ();
3386
3387::fidl_next::bitflags! {
3388 #[derive(
3389 Clone,
3390 Copy,
3391 Debug,
3392 PartialEq,
3393 Eq,
3394 Hash,
3395 )]
3396 pub struct WatchMask: u32 {
3397 #[doc = " Used by `Directory.Watch`. Requests transmission of `WatchEvent.DELETED`.\n"]const DELETED = 1;
3398 #[doc = " Used by `Directory.Watch`. Requests transmission of `WatchEvent.ADDED`.\n"]const ADDED = 2;
3399 #[doc = " Used by `Directory.Watch`. Requests transmission of `WatchEvent.REMOVED`.\n"]const REMOVED = 4;
3400 #[doc = " Used by `Directory.Watch`. Requests transmission of `WatchEvent.EXISTING`.\n"]const EXISTING = 8;
3401 #[doc = " Used by `Directory.Watch`. Requests transmission of `WatchEvent.IDLE`.\n"]const IDLE = 16;
3402
3403 }
3404}
3405
3406impl ::fidl_next::Encodable for WatchMask {
3407 type Encoded = WireWatchMask;
3408}
3409
3410unsafe impl<___E> ::fidl_next::Encode<___E> for WatchMask
3411where
3412 ___E: ?Sized,
3413{
3414 #[inline]
3415 fn encode(
3416 &mut self,
3417 _: &mut ___E,
3418 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3419 ) -> Result<(), ::fidl_next::EncodeError> {
3420 ::fidl_next::munge!(let WireWatchMask { value } = out);
3421 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
3422 Ok(())
3423 }
3424}
3425
3426impl ::core::convert::From<WireWatchMask> for WatchMask {
3427 fn from(wire: WireWatchMask) -> Self {
3428 Self::from_bits_retain(u32::from(wire.value))
3429 }
3430}
3431
3432impl ::fidl_next::TakeFrom<WireWatchMask> for WatchMask {
3433 #[inline]
3434 fn take_from(from: &WireWatchMask) -> Self {
3435 Self::from(*from)
3436 }
3437}
3438
3439#[derive(Clone, Copy, Debug)]
3441#[repr(transparent)]
3442pub struct WireWatchMask {
3443 value: ::fidl_next::WireU32,
3444}
3445
3446unsafe impl ::fidl_next::ZeroPadding for WireWatchMask {
3447 #[inline]
3448 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
3449 }
3451}
3452
3453unsafe impl<___D> ::fidl_next::Decode<___D> for WireWatchMask
3454where
3455 ___D: ?Sized,
3456{
3457 fn decode(
3458 slot: ::fidl_next::Slot<'_, Self>,
3459 _: &mut ___D,
3460 ) -> Result<(), ::fidl_next::DecodeError> {
3461 ::fidl_next::munge!(let Self { value } = slot);
3462 let set = u32::from(*value);
3463 if set & !WatchMask::all().bits() != 0 {
3464 return Err(::fidl_next::DecodeError::InvalidBits {
3465 expected: WatchMask::all().bits() as usize,
3466 actual: set as usize,
3467 });
3468 }
3469
3470 Ok(())
3471 }
3472}
3473
3474impl ::core::convert::From<WatchMask> for WireWatchMask {
3475 fn from(natural: WatchMask) -> Self {
3476 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
3477 }
3478}
3479
3480#[derive(Debug)]
3481#[repr(C)]
3482pub struct DirectoryWatchRequest {
3483 pub mask: crate::WatchMask,
3484
3485 pub options: u32,
3486
3487 pub watcher: ::fidl_next::ServerEnd<::fidl_next::fuchsia::zx::Channel, crate::DirectoryWatcher>,
3488}
3489
3490impl ::fidl_next::Encodable for DirectoryWatchRequest {
3491 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
3492 ::fidl_next::CopyOptimization::enable_if(
3493 true && <crate::WatchMask as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
3494 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
3495 && <::fidl_next::ServerEnd<
3496 ::fidl_next::fuchsia::zx::Channel,
3497 crate::DirectoryWatcher,
3498 > as ::fidl_next::Encodable>::COPY_OPTIMIZATION
3499 .is_enabled(),
3500 )
3501 };
3502
3503 type Encoded = WireDirectoryWatchRequest;
3504}
3505
3506unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryWatchRequest
3507where
3508 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
3509
3510 ___E: ::fidl_next::fuchsia::HandleEncoder,
3511{
3512 #[inline]
3513 fn encode(
3514 &mut self,
3515 encoder: &mut ___E,
3516 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3517 ) -> Result<(), ::fidl_next::EncodeError> {
3518 ::fidl_next::munge! {
3519 let Self::Encoded {
3520 mask,
3521 options,
3522 watcher,
3523
3524 } = out;
3525 }
3526
3527 ::fidl_next::Encode::encode(&mut self.mask, encoder, mask)?;
3528
3529 ::fidl_next::Encode::encode(&mut self.options, encoder, options)?;
3530
3531 ::fidl_next::Encode::encode(&mut self.watcher, encoder, watcher)?;
3532
3533 Ok(())
3534 }
3535}
3536
3537impl ::fidl_next::EncodableOption for Box<DirectoryWatchRequest> {
3538 type EncodedOption = ::fidl_next::WireBox<WireDirectoryWatchRequest>;
3539}
3540
3541unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryWatchRequest>
3542where
3543 ___E: ::fidl_next::Encoder + ?Sized,
3544 DirectoryWatchRequest: ::fidl_next::Encode<___E>,
3545{
3546 #[inline]
3547 fn encode_option(
3548 this: Option<&mut Self>,
3549 encoder: &mut ___E,
3550 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
3551 ) -> Result<(), ::fidl_next::EncodeError> {
3552 if let Some(inner) = this {
3553 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
3554 ::fidl_next::WireBox::encode_present(out);
3555 } else {
3556 ::fidl_next::WireBox::encode_absent(out);
3557 }
3558
3559 Ok(())
3560 }
3561}
3562
3563impl ::fidl_next::TakeFrom<WireDirectoryWatchRequest> for DirectoryWatchRequest {
3564 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
3565 ::fidl_next::CopyOptimization::enable_if(
3566 true && <crate::WatchMask as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
3567 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
3568 && <::fidl_next::ServerEnd<
3569 ::fidl_next::fuchsia::zx::Channel,
3570 crate::DirectoryWatcher,
3571 > as ::fidl_next::Encodable>::COPY_OPTIMIZATION
3572 .is_enabled(),
3573 )
3574 };
3575
3576 #[inline]
3577 fn take_from(from: &WireDirectoryWatchRequest) -> Self {
3578 Self {
3579 mask: ::fidl_next::TakeFrom::take_from(&from.mask),
3580
3581 options: ::fidl_next::TakeFrom::take_from(&from.options),
3582
3583 watcher: ::fidl_next::TakeFrom::take_from(&from.watcher),
3584 }
3585 }
3586}
3587
3588#[derive(Debug)]
3590#[repr(C)]
3591pub struct WireDirectoryWatchRequest {
3592 pub mask: crate::WireWatchMask,
3593
3594 pub options: ::fidl_next::WireU32,
3595
3596 pub watcher: ::fidl_next::ServerEnd<::fidl_next::fuchsia::WireChannel, crate::DirectoryWatcher>,
3597}
3598
3599unsafe impl ::fidl_next::ZeroPadding for WireDirectoryWatchRequest {
3600 #[inline]
3601 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
3602}
3603
3604unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryWatchRequest
3605where
3606 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
3607
3608 ___D: ::fidl_next::fuchsia::HandleDecoder,
3609{
3610 fn decode(
3611 slot: ::fidl_next::Slot<'_, Self>,
3612 decoder: &mut ___D,
3613 ) -> Result<(), ::fidl_next::DecodeError> {
3614 ::fidl_next::munge! {
3615 let Self {
3616 mut mask,
3617 mut options,
3618 mut watcher,
3619
3620 } = slot;
3621 }
3622
3623 ::fidl_next::Decode::decode(mask.as_mut(), decoder)?;
3624
3625 ::fidl_next::Decode::decode(options.as_mut(), decoder)?;
3626
3627 ::fidl_next::Decode::decode(watcher.as_mut(), decoder)?;
3628
3629 Ok(())
3630 }
3631}
3632
3633#[derive(Clone, Debug)]
3634#[repr(C)]
3635pub struct DirectoryWatchResponse {
3636 pub s: i32,
3637}
3638
3639impl ::fidl_next::Encodable for DirectoryWatchResponse {
3640 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
3641 ::fidl_next::CopyOptimization::enable_if(
3642 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
3643 )
3644 };
3645
3646 type Encoded = WireDirectoryWatchResponse;
3647}
3648
3649unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryWatchResponse
3650where
3651 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
3652{
3653 #[inline]
3654 fn encode(
3655 &mut self,
3656 encoder: &mut ___E,
3657 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3658 ) -> Result<(), ::fidl_next::EncodeError> {
3659 ::fidl_next::munge! {
3660 let Self::Encoded {
3661 s,
3662
3663 } = out;
3664 }
3665
3666 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
3667
3668 Ok(())
3669 }
3670}
3671
3672impl ::fidl_next::EncodableOption for Box<DirectoryWatchResponse> {
3673 type EncodedOption = ::fidl_next::WireBox<WireDirectoryWatchResponse>;
3674}
3675
3676unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryWatchResponse>
3677where
3678 ___E: ::fidl_next::Encoder + ?Sized,
3679 DirectoryWatchResponse: ::fidl_next::Encode<___E>,
3680{
3681 #[inline]
3682 fn encode_option(
3683 this: Option<&mut Self>,
3684 encoder: &mut ___E,
3685 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
3686 ) -> Result<(), ::fidl_next::EncodeError> {
3687 if let Some(inner) = this {
3688 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
3689 ::fidl_next::WireBox::encode_present(out);
3690 } else {
3691 ::fidl_next::WireBox::encode_absent(out);
3692 }
3693
3694 Ok(())
3695 }
3696}
3697
3698impl ::fidl_next::TakeFrom<WireDirectoryWatchResponse> for DirectoryWatchResponse {
3699 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
3700 ::fidl_next::CopyOptimization::enable_if(
3701 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
3702 )
3703 };
3704
3705 #[inline]
3706 fn take_from(from: &WireDirectoryWatchResponse) -> Self {
3707 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
3708 }
3709}
3710
3711#[derive(Clone, Debug)]
3713#[repr(C)]
3714pub struct WireDirectoryWatchResponse {
3715 pub s: ::fidl_next::WireI32,
3716}
3717
3718unsafe impl ::fidl_next::ZeroPadding for WireDirectoryWatchResponse {
3719 #[inline]
3720 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
3721}
3722
3723unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryWatchResponse
3724where
3725 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
3726{
3727 fn decode(
3728 slot: ::fidl_next::Slot<'_, Self>,
3729 decoder: &mut ___D,
3730 ) -> Result<(), ::fidl_next::DecodeError> {
3731 ::fidl_next::munge! {
3732 let Self {
3733 mut s,
3734
3735 } = slot;
3736 }
3737
3738 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
3739
3740 Ok(())
3741 }
3742}
3743
3744#[derive(Debug)]
3745pub struct NodeOnOpenRequest {
3746 pub s: i32,
3747
3748 pub info: Option<Box<crate::NodeInfoDeprecated>>,
3749}
3750
3751impl ::fidl_next::Encodable for NodeOnOpenRequest {
3752 type Encoded = WireNodeOnOpenRequest;
3753}
3754
3755unsafe impl<___E> ::fidl_next::Encode<___E> for NodeOnOpenRequest
3756where
3757 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
3758
3759 ___E: ::fidl_next::Encoder,
3760
3761 ___E: ::fidl_next::fuchsia::HandleEncoder,
3762{
3763 #[inline]
3764 fn encode(
3765 &mut self,
3766 encoder: &mut ___E,
3767 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3768 ) -> Result<(), ::fidl_next::EncodeError> {
3769 ::fidl_next::munge! {
3770 let Self::Encoded {
3771 s,
3772 info,
3773
3774 } = out;
3775 }
3776
3777 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
3778
3779 ::fidl_next::Encode::encode(&mut self.info, encoder, info)?;
3780
3781 Ok(())
3782 }
3783}
3784
3785impl ::fidl_next::EncodableOption for Box<NodeOnOpenRequest> {
3786 type EncodedOption = ::fidl_next::WireBox<WireNodeOnOpenRequest>;
3787}
3788
3789unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeOnOpenRequest>
3790where
3791 ___E: ::fidl_next::Encoder + ?Sized,
3792 NodeOnOpenRequest: ::fidl_next::Encode<___E>,
3793{
3794 #[inline]
3795 fn encode_option(
3796 this: Option<&mut Self>,
3797 encoder: &mut ___E,
3798 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
3799 ) -> Result<(), ::fidl_next::EncodeError> {
3800 if let Some(inner) = this {
3801 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
3802 ::fidl_next::WireBox::encode_present(out);
3803 } else {
3804 ::fidl_next::WireBox::encode_absent(out);
3805 }
3806
3807 Ok(())
3808 }
3809}
3810
3811impl ::fidl_next::TakeFrom<WireNodeOnOpenRequest> for NodeOnOpenRequest {
3812 #[inline]
3813 fn take_from(from: &WireNodeOnOpenRequest) -> Self {
3814 Self {
3815 s: ::fidl_next::TakeFrom::take_from(&from.s),
3816
3817 info: ::fidl_next::TakeFrom::take_from(&from.info),
3818 }
3819 }
3820}
3821
3822#[derive(Debug)]
3824#[repr(C)]
3825pub struct WireNodeOnOpenRequest {
3826 pub s: ::fidl_next::WireI32,
3827
3828 pub info: crate::WireOptionalNodeInfoDeprecated,
3829}
3830
3831unsafe impl ::fidl_next::ZeroPadding for WireNodeOnOpenRequest {
3832 #[inline]
3833 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
3834 unsafe {
3835 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
3836 }
3837 }
3838}
3839
3840unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeOnOpenRequest
3841where
3842 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
3843
3844 ___D: ::fidl_next::Decoder,
3845
3846 ___D: ::fidl_next::fuchsia::HandleDecoder,
3847{
3848 fn decode(
3849 slot: ::fidl_next::Slot<'_, Self>,
3850 decoder: &mut ___D,
3851 ) -> Result<(), ::fidl_next::DecodeError> {
3852 ::fidl_next::munge! {
3853 let Self {
3854 mut s,
3855 mut info,
3856
3857 } = slot;
3858 }
3859
3860 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
3861
3862 ::fidl_next::Decode::decode(info.as_mut(), decoder)?;
3863
3864 Ok(())
3865 }
3866}
3867
3868pub type SymlinkTarget = Vec<u8>;
3869
3870pub type WireSymlinkTarget = ::fidl_next::WireVector<u8>;
3872
3873#[derive(Debug)]
3874#[repr(C)]
3875pub struct NodeListExtendedAttributesRequest {
3876 pub iterator:
3877 ::fidl_next::ServerEnd<::fidl_next::fuchsia::zx::Channel, crate::ExtendedAttributeIterator>,
3878}
3879
3880impl ::fidl_next::Encodable for NodeListExtendedAttributesRequest {
3881 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
3882 ::fidl_next::CopyOptimization::enable_if(
3883 true && <::fidl_next::ServerEnd<
3884 ::fidl_next::fuchsia::zx::Channel,
3885 crate::ExtendedAttributeIterator,
3886 > as ::fidl_next::Encodable>::COPY_OPTIMIZATION
3887 .is_enabled(),
3888 )
3889 };
3890
3891 type Encoded = WireNodeListExtendedAttributesRequest;
3892}
3893
3894unsafe impl<___E> ::fidl_next::Encode<___E> for NodeListExtendedAttributesRequest
3895where
3896 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
3897
3898 ___E: ::fidl_next::fuchsia::HandleEncoder,
3899{
3900 #[inline]
3901 fn encode(
3902 &mut self,
3903 encoder: &mut ___E,
3904 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
3905 ) -> Result<(), ::fidl_next::EncodeError> {
3906 ::fidl_next::munge! {
3907 let Self::Encoded {
3908 iterator,
3909
3910 } = out;
3911 }
3912
3913 ::fidl_next::Encode::encode(&mut self.iterator, encoder, iterator)?;
3914
3915 Ok(())
3916 }
3917}
3918
3919impl ::fidl_next::EncodableOption for Box<NodeListExtendedAttributesRequest> {
3920 type EncodedOption = ::fidl_next::WireBox<WireNodeListExtendedAttributesRequest>;
3921}
3922
3923unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeListExtendedAttributesRequest>
3924where
3925 ___E: ::fidl_next::Encoder + ?Sized,
3926 NodeListExtendedAttributesRequest: ::fidl_next::Encode<___E>,
3927{
3928 #[inline]
3929 fn encode_option(
3930 this: Option<&mut Self>,
3931 encoder: &mut ___E,
3932 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
3933 ) -> Result<(), ::fidl_next::EncodeError> {
3934 if let Some(inner) = this {
3935 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
3936 ::fidl_next::WireBox::encode_present(out);
3937 } else {
3938 ::fidl_next::WireBox::encode_absent(out);
3939 }
3940
3941 Ok(())
3942 }
3943}
3944
3945impl ::fidl_next::TakeFrom<WireNodeListExtendedAttributesRequest>
3946 for NodeListExtendedAttributesRequest
3947{
3948 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
3949 ::fidl_next::CopyOptimization::enable_if(
3950 true && <::fidl_next::ServerEnd<
3951 ::fidl_next::fuchsia::zx::Channel,
3952 crate::ExtendedAttributeIterator,
3953 > as ::fidl_next::Encodable>::COPY_OPTIMIZATION
3954 .is_enabled(),
3955 )
3956 };
3957
3958 #[inline]
3959 fn take_from(from: &WireNodeListExtendedAttributesRequest) -> Self {
3960 Self { iterator: ::fidl_next::TakeFrom::take_from(&from.iterator) }
3961 }
3962}
3963
3964#[derive(Debug)]
3966#[repr(C)]
3967pub struct WireNodeListExtendedAttributesRequest {
3968 pub iterator:
3969 ::fidl_next::ServerEnd<::fidl_next::fuchsia::WireChannel, crate::ExtendedAttributeIterator>,
3970}
3971
3972unsafe impl ::fidl_next::ZeroPadding for WireNodeListExtendedAttributesRequest {
3973 #[inline]
3974 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
3975}
3976
3977unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeListExtendedAttributesRequest
3978where
3979 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
3980
3981 ___D: ::fidl_next::fuchsia::HandleDecoder,
3982{
3983 fn decode(
3984 slot: ::fidl_next::Slot<'_, Self>,
3985 decoder: &mut ___D,
3986 ) -> Result<(), ::fidl_next::DecodeError> {
3987 ::fidl_next::munge! {
3988 let Self {
3989 mut iterator,
3990
3991 } = slot;
3992 }
3993
3994 ::fidl_next::Decode::decode(iterator.as_mut(), decoder)?;
3995
3996 Ok(())
3997 }
3998}
3999
4000#[doc = " The maximum size for an extended attribute name.\n"]
4001pub const MAX_ATTRIBUTE_NAME: u64 = 255;
4002
4003#[doc = " The name of an extended attribute. It can not contain any null bytes. Other\n than that and the maximum size, no particular structure is imposed on the\n name.\n"]
4004pub type ExtendedAttributeName = Vec<u8>;
4005
4006pub type WireExtendedAttributeName = ::fidl_next::WireVector<u8>;
4008
4009#[derive(Clone, Debug)]
4010pub struct NodeGetExtendedAttributeRequest {
4011 pub name: Vec<u8>,
4012}
4013
4014impl ::fidl_next::Encodable for NodeGetExtendedAttributeRequest {
4015 type Encoded = WireNodeGetExtendedAttributeRequest;
4016}
4017
4018unsafe impl<___E> ::fidl_next::Encode<___E> for NodeGetExtendedAttributeRequest
4019where
4020 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
4021
4022 ___E: ::fidl_next::Encoder,
4023{
4024 #[inline]
4025 fn encode(
4026 &mut self,
4027 encoder: &mut ___E,
4028 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4029 ) -> Result<(), ::fidl_next::EncodeError> {
4030 ::fidl_next::munge! {
4031 let Self::Encoded {
4032 name,
4033
4034 } = out;
4035 }
4036
4037 ::fidl_next::Encode::encode(&mut self.name, encoder, name)?;
4038
4039 Ok(())
4040 }
4041}
4042
4043impl ::fidl_next::EncodableOption for Box<NodeGetExtendedAttributeRequest> {
4044 type EncodedOption = ::fidl_next::WireBox<WireNodeGetExtendedAttributeRequest>;
4045}
4046
4047unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeGetExtendedAttributeRequest>
4048where
4049 ___E: ::fidl_next::Encoder + ?Sized,
4050 NodeGetExtendedAttributeRequest: ::fidl_next::Encode<___E>,
4051{
4052 #[inline]
4053 fn encode_option(
4054 this: Option<&mut Self>,
4055 encoder: &mut ___E,
4056 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
4057 ) -> Result<(), ::fidl_next::EncodeError> {
4058 if let Some(inner) = this {
4059 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
4060 ::fidl_next::WireBox::encode_present(out);
4061 } else {
4062 ::fidl_next::WireBox::encode_absent(out);
4063 }
4064
4065 Ok(())
4066 }
4067}
4068
4069impl ::fidl_next::TakeFrom<WireNodeGetExtendedAttributeRequest>
4070 for NodeGetExtendedAttributeRequest
4071{
4072 #[inline]
4073 fn take_from(from: &WireNodeGetExtendedAttributeRequest) -> Self {
4074 Self { name: ::fidl_next::TakeFrom::take_from(&from.name) }
4075 }
4076}
4077
4078#[derive(Debug)]
4080#[repr(C)]
4081pub struct WireNodeGetExtendedAttributeRequest {
4082 pub name: ::fidl_next::WireVector<u8>,
4083}
4084
4085unsafe impl ::fidl_next::ZeroPadding for WireNodeGetExtendedAttributeRequest {
4086 #[inline]
4087 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
4088}
4089
4090unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeGetExtendedAttributeRequest
4091where
4092 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
4093
4094 ___D: ::fidl_next::Decoder,
4095{
4096 fn decode(
4097 slot: ::fidl_next::Slot<'_, Self>,
4098 decoder: &mut ___D,
4099 ) -> Result<(), ::fidl_next::DecodeError> {
4100 ::fidl_next::munge! {
4101 let Self {
4102 mut name,
4103
4104 } = slot;
4105 }
4106
4107 ::fidl_next::Decode::decode(name.as_mut(), decoder)?;
4108
4109 let name = unsafe { name.deref_unchecked() };
4110
4111 if name.len() > 255 {
4112 return Err(::fidl_next::DecodeError::VectorTooLong {
4113 size: name.len() as u64,
4114 limit: 255,
4115 });
4116 }
4117
4118 Ok(())
4119 }
4120}
4121
4122#[doc = " The maximum size for an extended attribute value to be included inline.\n Values larger than this size are passed in a vmo.\n"]
4123pub const MAX_INLINE_ATTRIBUTE_VALUE: u64 = 32768;
4124
4125#[doc = " The value type for an extended attribute. If the value is less than 32768\n bytes, then it is included inline. Values larger than this size are written\n into a vmo buffer.\n"]
4126#[derive(Debug)]
4127pub enum ExtendedAttributeValue {
4128 Bytes(Vec<u8>),
4129
4130 Buffer(::fidl_next::fuchsia::zx::Handle),
4131
4132 UnknownOrdinal_(u64),
4133}
4134
4135impl ::fidl_next::Encodable for ExtendedAttributeValue {
4136 type Encoded = WireExtendedAttributeValue;
4137}
4138
4139unsafe impl<___E> ::fidl_next::Encode<___E> for ExtendedAttributeValue
4140where
4141 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
4142
4143 ___E: ::fidl_next::Encoder,
4144
4145 ___E: ::fidl_next::fuchsia::HandleEncoder,
4146{
4147 #[inline]
4148 fn encode(
4149 &mut self,
4150 encoder: &mut ___E,
4151 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4152 ) -> Result<(), ::fidl_next::EncodeError> {
4153 ::fidl_next::munge!(let WireExtendedAttributeValue { raw } = out);
4154
4155 match self {
4156 Self::Bytes(value) => {
4157 ::fidl_next::RawWireUnion::encode_as::<___E, Vec<u8>>(value, 1, encoder, raw)?
4158 }
4159
4160 Self::Buffer(value) => ::fidl_next::RawWireUnion::encode_as::<
4161 ___E,
4162 ::fidl_next::fuchsia::zx::Handle,
4163 >(value, 2, encoder, raw)?,
4164
4165 Self::UnknownOrdinal_(ordinal) => {
4166 return Err(::fidl_next::EncodeError::UnknownUnionOrdinal(*ordinal as usize))
4167 }
4168 }
4169
4170 Ok(())
4171 }
4172}
4173
4174impl ::fidl_next::EncodableOption for Box<ExtendedAttributeValue> {
4175 type EncodedOption = WireOptionalExtendedAttributeValue;
4176}
4177
4178unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<ExtendedAttributeValue>
4179where
4180 ___E: ?Sized,
4181 ExtendedAttributeValue: ::fidl_next::Encode<___E>,
4182{
4183 #[inline]
4184 fn encode_option(
4185 this: Option<&mut Self>,
4186 encoder: &mut ___E,
4187 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
4188 ) -> Result<(), ::fidl_next::EncodeError> {
4189 ::fidl_next::munge!(let WireOptionalExtendedAttributeValue { raw } = &mut *out);
4190
4191 if let Some(inner) = this {
4192 let value_out = unsafe { &mut *out.as_mut_ptr().cast() };
4193 ::fidl_next::Encode::encode(&mut **inner, encoder, value_out)?;
4194 } else {
4195 ::fidl_next::RawWireUnion::encode_absent(raw);
4196 }
4197
4198 Ok(())
4199 }
4200}
4201
4202impl ::fidl_next::TakeFrom<WireExtendedAttributeValue> for ExtendedAttributeValue {
4203 #[inline]
4204 fn take_from(from: &WireExtendedAttributeValue) -> Self {
4205 match from.raw.ordinal() {
4206 1 => Self::Bytes(::fidl_next::TakeFrom::take_from(unsafe {
4207 from.raw.get().deref_unchecked::<::fidl_next::WireVector<u8>>()
4208 })),
4209
4210 2 => Self::Buffer(::fidl_next::TakeFrom::take_from(unsafe {
4211 from.raw.get().deref_unchecked::<::fidl_next::fuchsia::WireHandle>()
4212 })),
4213
4214 _ => unsafe { ::core::hint::unreachable_unchecked() },
4215 }
4216 }
4217}
4218
4219impl ::fidl_next::TakeFrom<WireOptionalExtendedAttributeValue>
4220 for Option<Box<ExtendedAttributeValue>>
4221{
4222 #[inline]
4223 fn take_from(from: &WireOptionalExtendedAttributeValue) -> Self {
4224 if let Some(inner) = from.as_ref() {
4225 Some(::fidl_next::TakeFrom::take_from(inner))
4226 } else {
4227 None
4228 }
4229 }
4230}
4231
4232#[repr(transparent)]
4234pub struct WireExtendedAttributeValue {
4235 raw: ::fidl_next::RawWireUnion,
4236}
4237
4238unsafe impl ::fidl_next::ZeroPadding for WireExtendedAttributeValue {
4239 #[inline]
4240 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
4241 ::fidl_next::munge!(let Self { raw } = out);
4242 ::fidl_next::RawWireUnion::zero_padding(raw);
4243 }
4244}
4245
4246pub mod extended_attribute_value {
4247 pub enum Ref<'union> {
4248 Bytes(&'union ::fidl_next::WireVector<u8>),
4249
4250 Buffer(&'union ::fidl_next::fuchsia::WireHandle),
4251
4252 UnknownOrdinal_(u64),
4253 }
4254}
4255
4256impl WireExtendedAttributeValue {
4257 pub fn as_ref(&self) -> crate::extended_attribute_value::Ref<'_> {
4258 match self.raw.ordinal() {
4259 1 => crate::extended_attribute_value::Ref::Bytes(unsafe {
4260 self.raw.get().deref_unchecked::<::fidl_next::WireVector<u8>>()
4261 }),
4262
4263 2 => crate::extended_attribute_value::Ref::Buffer(unsafe {
4264 self.raw.get().deref_unchecked::<::fidl_next::fuchsia::WireHandle>()
4265 }),
4266
4267 unknown => crate::extended_attribute_value::Ref::UnknownOrdinal_(unknown),
4268 }
4269 }
4270}
4271
4272unsafe impl<___D> ::fidl_next::Decode<___D> for WireExtendedAttributeValue
4273where
4274 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
4275
4276 ___D: ::fidl_next::Decoder,
4277
4278 ___D: ::fidl_next::fuchsia::HandleDecoder,
4279{
4280 fn decode(
4281 mut slot: ::fidl_next::Slot<'_, Self>,
4282 decoder: &mut ___D,
4283 ) -> Result<(), ::fidl_next::DecodeError> {
4284 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
4285 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
4286 1 => ::fidl_next::RawWireUnion::decode_as::<___D, ::fidl_next::WireVector<u8>>(
4287 raw, decoder,
4288 )?,
4289
4290 2 => ::fidl_next::RawWireUnion::decode_as::<___D, ::fidl_next::fuchsia::WireHandle>(
4291 raw, decoder,
4292 )?,
4293
4294 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
4295 }
4296
4297 Ok(())
4298 }
4299}
4300
4301impl ::core::fmt::Debug for WireExtendedAttributeValue {
4302 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
4303 match self.raw.ordinal() {
4304 1 => unsafe { self.raw.get().deref_unchecked::<::fidl_next::WireVector<u8>>().fmt(f) },
4305 2 => unsafe {
4306 self.raw.get().deref_unchecked::<::fidl_next::fuchsia::WireHandle>().fmt(f)
4307 },
4308 _ => unsafe { ::core::hint::unreachable_unchecked() },
4309 }
4310 }
4311}
4312
4313#[repr(transparent)]
4314pub struct WireOptionalExtendedAttributeValue {
4315 raw: ::fidl_next::RawWireUnion,
4316}
4317
4318unsafe impl ::fidl_next::ZeroPadding for WireOptionalExtendedAttributeValue {
4319 #[inline]
4320 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
4321 ::fidl_next::munge!(let Self { raw } = out);
4322 ::fidl_next::RawWireUnion::zero_padding(raw);
4323 }
4324}
4325
4326impl WireOptionalExtendedAttributeValue {
4327 pub fn is_some(&self) -> bool {
4328 self.raw.is_some()
4329 }
4330
4331 pub fn is_none(&self) -> bool {
4332 self.raw.is_none()
4333 }
4334
4335 pub fn as_ref(&self) -> Option<&WireExtendedAttributeValue> {
4336 if self.is_some() {
4337 Some(unsafe { &*(self as *const Self).cast() })
4338 } else {
4339 None
4340 }
4341 }
4342}
4343
4344unsafe impl<___D> ::fidl_next::Decode<___D> for WireOptionalExtendedAttributeValue
4345where
4346 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
4347
4348 ___D: ::fidl_next::Decoder,
4349
4350 ___D: ::fidl_next::fuchsia::HandleDecoder,
4351{
4352 fn decode(
4353 mut slot: ::fidl_next::Slot<'_, Self>,
4354 decoder: &mut ___D,
4355 ) -> Result<(), ::fidl_next::DecodeError> {
4356 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
4357 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
4358 1 => ::fidl_next::RawWireUnion::decode_as::<___D, ::fidl_next::WireVector<u8>>(
4359 raw, decoder,
4360 )?,
4361
4362 2 => ::fidl_next::RawWireUnion::decode_as::<___D, ::fidl_next::fuchsia::WireHandle>(
4363 raw, decoder,
4364 )?,
4365
4366 0 => ::fidl_next::RawWireUnion::decode_absent(raw)?,
4367 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
4368 }
4369
4370 Ok(())
4371 }
4372}
4373
4374impl ::core::fmt::Debug for WireOptionalExtendedAttributeValue {
4375 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
4376 self.as_ref().fmt(f)
4377 }
4378}
4379
4380#[derive(Clone, Copy, Debug, PartialEq, Eq)]
4381#[repr(u32)]
4382pub enum SetExtendedAttributeMode {
4383 Set = 1,
4384 Create = 2,
4385 Replace = 3,
4386}
4387
4388impl ::fidl_next::Encodable for SetExtendedAttributeMode {
4389 type Encoded = WireSetExtendedAttributeMode;
4390}
4391
4392unsafe impl<___E> ::fidl_next::Encode<___E> for SetExtendedAttributeMode
4393where
4394 ___E: ?Sized,
4395{
4396 #[inline]
4397 fn encode(
4398 &mut self,
4399 _: &mut ___E,
4400 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4401 ) -> Result<(), ::fidl_next::EncodeError> {
4402 ::fidl_next::munge!(let WireSetExtendedAttributeMode { value } = out);
4403 let _ = value.write(::fidl_next::WireU32::from(match *self {
4404 Self::Set => 1,
4405
4406 Self::Create => 2,
4407
4408 Self::Replace => 3,
4409 }));
4410
4411 Ok(())
4412 }
4413}
4414
4415impl ::core::convert::From<WireSetExtendedAttributeMode> for SetExtendedAttributeMode {
4416 fn from(wire: WireSetExtendedAttributeMode) -> Self {
4417 match u32::from(wire.value) {
4418 1 => Self::Set,
4419
4420 2 => Self::Create,
4421
4422 3 => Self::Replace,
4423
4424 _ => unsafe { ::core::hint::unreachable_unchecked() },
4425 }
4426 }
4427}
4428
4429impl ::fidl_next::TakeFrom<WireSetExtendedAttributeMode> for SetExtendedAttributeMode {
4430 #[inline]
4431 fn take_from(from: &WireSetExtendedAttributeMode) -> Self {
4432 Self::from(*from)
4433 }
4434}
4435
4436#[derive(Clone, Copy, Debug, PartialEq, Eq)]
4438#[repr(transparent)]
4439pub struct WireSetExtendedAttributeMode {
4440 value: ::fidl_next::WireU32,
4441}
4442
4443unsafe impl ::fidl_next::ZeroPadding for WireSetExtendedAttributeMode {
4444 #[inline]
4445 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
4446 }
4448}
4449
4450impl WireSetExtendedAttributeMode {
4451 pub const SET: WireSetExtendedAttributeMode =
4452 WireSetExtendedAttributeMode { value: ::fidl_next::WireU32(1) };
4453
4454 pub const CREATE: WireSetExtendedAttributeMode =
4455 WireSetExtendedAttributeMode { value: ::fidl_next::WireU32(2) };
4456
4457 pub const REPLACE: WireSetExtendedAttributeMode =
4458 WireSetExtendedAttributeMode { value: ::fidl_next::WireU32(3) };
4459}
4460
4461unsafe impl<___D> ::fidl_next::Decode<___D> for WireSetExtendedAttributeMode
4462where
4463 ___D: ?Sized,
4464{
4465 fn decode(
4466 slot: ::fidl_next::Slot<'_, Self>,
4467 _: &mut ___D,
4468 ) -> Result<(), ::fidl_next::DecodeError> {
4469 ::fidl_next::munge!(let Self { value } = slot);
4470
4471 match u32::from(*value) {
4472 1 | 2 | 3 => (),
4473 unknown => return Err(::fidl_next::DecodeError::InvalidEnumOrdinal(unknown as i128)),
4474 }
4475
4476 Ok(())
4477 }
4478}
4479
4480impl ::core::convert::From<SetExtendedAttributeMode> for WireSetExtendedAttributeMode {
4481 fn from(natural: SetExtendedAttributeMode) -> Self {
4482 match natural {
4483 SetExtendedAttributeMode::Set => WireSetExtendedAttributeMode::SET,
4484
4485 SetExtendedAttributeMode::Create => WireSetExtendedAttributeMode::CREATE,
4486
4487 SetExtendedAttributeMode::Replace => WireSetExtendedAttributeMode::REPLACE,
4488 }
4489 }
4490}
4491
4492#[derive(Debug)]
4493pub struct NodeSetExtendedAttributeRequest {
4494 pub name: Vec<u8>,
4495
4496 pub value: crate::ExtendedAttributeValue,
4497
4498 pub mode: crate::SetExtendedAttributeMode,
4499}
4500
4501impl ::fidl_next::Encodable for NodeSetExtendedAttributeRequest {
4502 type Encoded = WireNodeSetExtendedAttributeRequest;
4503}
4504
4505unsafe impl<___E> ::fidl_next::Encode<___E> for NodeSetExtendedAttributeRequest
4506where
4507 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
4508
4509 ___E: ::fidl_next::Encoder,
4510
4511 ___E: ::fidl_next::fuchsia::HandleEncoder,
4512{
4513 #[inline]
4514 fn encode(
4515 &mut self,
4516 encoder: &mut ___E,
4517 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4518 ) -> Result<(), ::fidl_next::EncodeError> {
4519 ::fidl_next::munge! {
4520 let Self::Encoded {
4521 name,
4522 value,
4523 mode,
4524
4525 } = out;
4526 }
4527
4528 ::fidl_next::Encode::encode(&mut self.name, encoder, name)?;
4529
4530 ::fidl_next::Encode::encode(&mut self.value, encoder, value)?;
4531
4532 ::fidl_next::Encode::encode(&mut self.mode, encoder, mode)?;
4533
4534 Ok(())
4535 }
4536}
4537
4538impl ::fidl_next::EncodableOption for Box<NodeSetExtendedAttributeRequest> {
4539 type EncodedOption = ::fidl_next::WireBox<WireNodeSetExtendedAttributeRequest>;
4540}
4541
4542unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeSetExtendedAttributeRequest>
4543where
4544 ___E: ::fidl_next::Encoder + ?Sized,
4545 NodeSetExtendedAttributeRequest: ::fidl_next::Encode<___E>,
4546{
4547 #[inline]
4548 fn encode_option(
4549 this: Option<&mut Self>,
4550 encoder: &mut ___E,
4551 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
4552 ) -> Result<(), ::fidl_next::EncodeError> {
4553 if let Some(inner) = this {
4554 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
4555 ::fidl_next::WireBox::encode_present(out);
4556 } else {
4557 ::fidl_next::WireBox::encode_absent(out);
4558 }
4559
4560 Ok(())
4561 }
4562}
4563
4564impl ::fidl_next::TakeFrom<WireNodeSetExtendedAttributeRequest>
4565 for NodeSetExtendedAttributeRequest
4566{
4567 #[inline]
4568 fn take_from(from: &WireNodeSetExtendedAttributeRequest) -> Self {
4569 Self {
4570 name: ::fidl_next::TakeFrom::take_from(&from.name),
4571
4572 value: ::fidl_next::TakeFrom::take_from(&from.value),
4573
4574 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
4575 }
4576 }
4577}
4578
4579#[derive(Debug)]
4581#[repr(C)]
4582pub struct WireNodeSetExtendedAttributeRequest {
4583 pub name: ::fidl_next::WireVector<u8>,
4584
4585 pub value: crate::WireExtendedAttributeValue,
4586
4587 pub mode: crate::WireSetExtendedAttributeMode,
4588}
4589
4590unsafe impl ::fidl_next::ZeroPadding for WireNodeSetExtendedAttributeRequest {
4591 #[inline]
4592 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
4593 unsafe {
4594 out.as_mut_ptr().cast::<u8>().add(36).write_bytes(0, 4);
4595 }
4596 }
4597}
4598
4599unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeSetExtendedAttributeRequest
4600where
4601 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
4602
4603 ___D: ::fidl_next::Decoder,
4604
4605 ___D: ::fidl_next::fuchsia::HandleDecoder,
4606{
4607 fn decode(
4608 slot: ::fidl_next::Slot<'_, Self>,
4609 decoder: &mut ___D,
4610 ) -> Result<(), ::fidl_next::DecodeError> {
4611 ::fidl_next::munge! {
4612 let Self {
4613 mut name,
4614 mut value,
4615 mut mode,
4616
4617 } = slot;
4618 }
4619
4620 ::fidl_next::Decode::decode(name.as_mut(), decoder)?;
4621
4622 let name = unsafe { name.deref_unchecked() };
4623
4624 if name.len() > 255 {
4625 return Err(::fidl_next::DecodeError::VectorTooLong {
4626 size: name.len() as u64,
4627 limit: 255,
4628 });
4629 }
4630
4631 ::fidl_next::Decode::decode(value.as_mut(), decoder)?;
4632
4633 ::fidl_next::Decode::decode(mode.as_mut(), decoder)?;
4634
4635 Ok(())
4636 }
4637}
4638
4639pub type NodeSetExtendedAttributeResponse = ();
4640
4641pub type WireNodeSetExtendedAttributeResponse = ();
4643
4644#[derive(Clone, Debug)]
4645pub struct NodeRemoveExtendedAttributeRequest {
4646 pub name: Vec<u8>,
4647}
4648
4649impl ::fidl_next::Encodable for NodeRemoveExtendedAttributeRequest {
4650 type Encoded = WireNodeRemoveExtendedAttributeRequest;
4651}
4652
4653unsafe impl<___E> ::fidl_next::Encode<___E> for NodeRemoveExtendedAttributeRequest
4654where
4655 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
4656
4657 ___E: ::fidl_next::Encoder,
4658{
4659 #[inline]
4660 fn encode(
4661 &mut self,
4662 encoder: &mut ___E,
4663 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4664 ) -> Result<(), ::fidl_next::EncodeError> {
4665 ::fidl_next::munge! {
4666 let Self::Encoded {
4667 name,
4668
4669 } = out;
4670 }
4671
4672 ::fidl_next::Encode::encode(&mut self.name, encoder, name)?;
4673
4674 Ok(())
4675 }
4676}
4677
4678impl ::fidl_next::EncodableOption for Box<NodeRemoveExtendedAttributeRequest> {
4679 type EncodedOption = ::fidl_next::WireBox<WireNodeRemoveExtendedAttributeRequest>;
4680}
4681
4682unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeRemoveExtendedAttributeRequest>
4683where
4684 ___E: ::fidl_next::Encoder + ?Sized,
4685 NodeRemoveExtendedAttributeRequest: ::fidl_next::Encode<___E>,
4686{
4687 #[inline]
4688 fn encode_option(
4689 this: Option<&mut Self>,
4690 encoder: &mut ___E,
4691 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
4692 ) -> Result<(), ::fidl_next::EncodeError> {
4693 if let Some(inner) = this {
4694 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
4695 ::fidl_next::WireBox::encode_present(out);
4696 } else {
4697 ::fidl_next::WireBox::encode_absent(out);
4698 }
4699
4700 Ok(())
4701 }
4702}
4703
4704impl ::fidl_next::TakeFrom<WireNodeRemoveExtendedAttributeRequest>
4705 for NodeRemoveExtendedAttributeRequest
4706{
4707 #[inline]
4708 fn take_from(from: &WireNodeRemoveExtendedAttributeRequest) -> Self {
4709 Self { name: ::fidl_next::TakeFrom::take_from(&from.name) }
4710 }
4711}
4712
4713#[derive(Debug)]
4715#[repr(C)]
4716pub struct WireNodeRemoveExtendedAttributeRequest {
4717 pub name: ::fidl_next::WireVector<u8>,
4718}
4719
4720unsafe impl ::fidl_next::ZeroPadding for WireNodeRemoveExtendedAttributeRequest {
4721 #[inline]
4722 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
4723}
4724
4725unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeRemoveExtendedAttributeRequest
4726where
4727 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
4728
4729 ___D: ::fidl_next::Decoder,
4730{
4731 fn decode(
4732 slot: ::fidl_next::Slot<'_, Self>,
4733 decoder: &mut ___D,
4734 ) -> Result<(), ::fidl_next::DecodeError> {
4735 ::fidl_next::munge! {
4736 let Self {
4737 mut name,
4738
4739 } = slot;
4740 }
4741
4742 ::fidl_next::Decode::decode(name.as_mut(), decoder)?;
4743
4744 let name = unsafe { name.deref_unchecked() };
4745
4746 if name.len() > 255 {
4747 return Err(::fidl_next::DecodeError::VectorTooLong {
4748 size: name.len() as u64,
4749 limit: 255,
4750 });
4751 }
4752
4753 Ok(())
4754 }
4755}
4756
4757pub type NodeRemoveExtendedAttributeResponse = ();
4758
4759pub type WireNodeRemoveExtendedAttributeResponse = ();
4761
4762pub type DirectoryCreateSymlinkResponse = ();
4763
4764pub type WireDirectoryCreateSymlinkResponse = ();
4766
4767pub type NodeSetFlagsResponse = ();
4768
4769pub type WireNodeSetFlagsResponse = ();
4771
4772#[derive(Debug)]
4773#[repr(C)]
4774pub struct NodeDeprecatedCloneRequest {
4775 pub flags: crate::OpenFlags,
4776
4777 pub object: ::fidl_next::ServerEnd<::fidl_next::fuchsia::zx::Channel, crate::Node>,
4778}
4779
4780impl ::fidl_next::Encodable for NodeDeprecatedCloneRequest {
4781 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
4782 ::fidl_next::CopyOptimization::enable_if(
4783 true
4784
4785 && <
4786 crate::OpenFlags as ::fidl_next::Encodable
4787 >::COPY_OPTIMIZATION.is_enabled()
4788
4789 && <
4790 ::fidl_next::ServerEnd<::fidl_next::fuchsia::zx::Channel,crate::Node,
4791 > as ::fidl_next::Encodable
4792 >::COPY_OPTIMIZATION.is_enabled()
4793
4794 )
4795 };
4796
4797 type Encoded = WireNodeDeprecatedCloneRequest;
4798}
4799
4800unsafe impl<___E> ::fidl_next::Encode<___E> for NodeDeprecatedCloneRequest
4801where
4802 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
4803
4804 ___E: ::fidl_next::fuchsia::HandleEncoder,
4805{
4806 #[inline]
4807 fn encode(
4808 &mut self,
4809 encoder: &mut ___E,
4810 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4811 ) -> Result<(), ::fidl_next::EncodeError> {
4812 ::fidl_next::munge! {
4813 let Self::Encoded {
4814 flags,
4815 object,
4816
4817 } = out;
4818 }
4819
4820 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
4821
4822 ::fidl_next::Encode::encode(&mut self.object, encoder, object)?;
4823
4824 Ok(())
4825 }
4826}
4827
4828impl ::fidl_next::EncodableOption for Box<NodeDeprecatedCloneRequest> {
4829 type EncodedOption = ::fidl_next::WireBox<WireNodeDeprecatedCloneRequest>;
4830}
4831
4832unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeDeprecatedCloneRequest>
4833where
4834 ___E: ::fidl_next::Encoder + ?Sized,
4835 NodeDeprecatedCloneRequest: ::fidl_next::Encode<___E>,
4836{
4837 #[inline]
4838 fn encode_option(
4839 this: Option<&mut Self>,
4840 encoder: &mut ___E,
4841 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
4842 ) -> Result<(), ::fidl_next::EncodeError> {
4843 if let Some(inner) = this {
4844 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
4845 ::fidl_next::WireBox::encode_present(out);
4846 } else {
4847 ::fidl_next::WireBox::encode_absent(out);
4848 }
4849
4850 Ok(())
4851 }
4852}
4853
4854impl ::fidl_next::TakeFrom<WireNodeDeprecatedCloneRequest> for NodeDeprecatedCloneRequest {
4855 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
4856 ::fidl_next::CopyOptimization::enable_if(
4857 true
4858
4859 && <
4860 crate::OpenFlags as ::fidl_next::Encodable
4861 >::COPY_OPTIMIZATION.is_enabled()
4862
4863 && <
4864 ::fidl_next::ServerEnd<::fidl_next::fuchsia::zx::Channel,crate::Node,
4865 > as ::fidl_next::Encodable
4866 >::COPY_OPTIMIZATION.is_enabled()
4867
4868 )
4869 };
4870
4871 #[inline]
4872 fn take_from(from: &WireNodeDeprecatedCloneRequest) -> Self {
4873 Self {
4874 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
4875
4876 object: ::fidl_next::TakeFrom::take_from(&from.object),
4877 }
4878 }
4879}
4880
4881#[derive(Debug)]
4883#[repr(C)]
4884pub struct WireNodeDeprecatedCloneRequest {
4885 pub flags: crate::WireOpenFlags,
4886
4887 pub object: ::fidl_next::ServerEnd<::fidl_next::fuchsia::WireChannel, crate::Node>,
4888}
4889
4890unsafe impl ::fidl_next::ZeroPadding for WireNodeDeprecatedCloneRequest {
4891 #[inline]
4892 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
4893}
4894
4895unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeDeprecatedCloneRequest
4896where
4897 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
4898
4899 ___D: ::fidl_next::fuchsia::HandleDecoder,
4900{
4901 fn decode(
4902 slot: ::fidl_next::Slot<'_, Self>,
4903 decoder: &mut ___D,
4904 ) -> Result<(), ::fidl_next::DecodeError> {
4905 ::fidl_next::munge! {
4906 let Self {
4907 mut flags,
4908 mut object,
4909
4910 } = slot;
4911 }
4912
4913 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
4914
4915 ::fidl_next::Decode::decode(object.as_mut(), decoder)?;
4916
4917 Ok(())
4918 }
4919}
4920
4921#[derive(Clone, Debug)]
4922#[repr(C)]
4923pub struct NodeDeprecatedGetFlagsResponse {
4924 pub s: i32,
4925
4926 pub flags: crate::OpenFlags,
4927}
4928
4929impl ::fidl_next::Encodable for NodeDeprecatedGetFlagsResponse {
4930 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
4931 ::fidl_next::CopyOptimization::enable_if(
4932 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
4933 && <crate::OpenFlags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
4934 )
4935 };
4936
4937 type Encoded = WireNodeDeprecatedGetFlagsResponse;
4938}
4939
4940unsafe impl<___E> ::fidl_next::Encode<___E> for NodeDeprecatedGetFlagsResponse
4941where
4942 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
4943{
4944 #[inline]
4945 fn encode(
4946 &mut self,
4947 encoder: &mut ___E,
4948 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
4949 ) -> Result<(), ::fidl_next::EncodeError> {
4950 ::fidl_next::munge! {
4951 let Self::Encoded {
4952 s,
4953 flags,
4954
4955 } = out;
4956 }
4957
4958 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
4959
4960 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
4961
4962 Ok(())
4963 }
4964}
4965
4966impl ::fidl_next::EncodableOption for Box<NodeDeprecatedGetFlagsResponse> {
4967 type EncodedOption = ::fidl_next::WireBox<WireNodeDeprecatedGetFlagsResponse>;
4968}
4969
4970unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeDeprecatedGetFlagsResponse>
4971where
4972 ___E: ::fidl_next::Encoder + ?Sized,
4973 NodeDeprecatedGetFlagsResponse: ::fidl_next::Encode<___E>,
4974{
4975 #[inline]
4976 fn encode_option(
4977 this: Option<&mut Self>,
4978 encoder: &mut ___E,
4979 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
4980 ) -> Result<(), ::fidl_next::EncodeError> {
4981 if let Some(inner) = this {
4982 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
4983 ::fidl_next::WireBox::encode_present(out);
4984 } else {
4985 ::fidl_next::WireBox::encode_absent(out);
4986 }
4987
4988 Ok(())
4989 }
4990}
4991
4992impl ::fidl_next::TakeFrom<WireNodeDeprecatedGetFlagsResponse> for NodeDeprecatedGetFlagsResponse {
4993 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
4994 ::fidl_next::CopyOptimization::enable_if(
4995 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
4996 && <crate::OpenFlags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
4997 )
4998 };
4999
5000 #[inline]
5001 fn take_from(from: &WireNodeDeprecatedGetFlagsResponse) -> Self {
5002 Self {
5003 s: ::fidl_next::TakeFrom::take_from(&from.s),
5004
5005 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
5006 }
5007 }
5008}
5009
5010#[derive(Clone, Debug)]
5012#[repr(C)]
5013pub struct WireNodeDeprecatedGetFlagsResponse {
5014 pub s: ::fidl_next::WireI32,
5015
5016 pub flags: crate::WireOpenFlags,
5017}
5018
5019unsafe impl ::fidl_next::ZeroPadding for WireNodeDeprecatedGetFlagsResponse {
5020 #[inline]
5021 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
5022}
5023
5024unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeDeprecatedGetFlagsResponse
5025where
5026 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5027{
5028 fn decode(
5029 slot: ::fidl_next::Slot<'_, Self>,
5030 decoder: &mut ___D,
5031 ) -> Result<(), ::fidl_next::DecodeError> {
5032 ::fidl_next::munge! {
5033 let Self {
5034 mut s,
5035 mut flags,
5036
5037 } = slot;
5038 }
5039
5040 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
5041
5042 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
5043
5044 Ok(())
5045 }
5046}
5047
5048#[derive(Clone, Debug)]
5049#[repr(C)]
5050pub struct NodeDeprecatedSetFlagsRequest {
5051 pub flags: crate::OpenFlags,
5052}
5053
5054impl ::fidl_next::Encodable for NodeDeprecatedSetFlagsRequest {
5055 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5056 ::fidl_next::CopyOptimization::enable_if(
5057 true && <crate::OpenFlags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5058 )
5059 };
5060
5061 type Encoded = WireNodeDeprecatedSetFlagsRequest;
5062}
5063
5064unsafe impl<___E> ::fidl_next::Encode<___E> for NodeDeprecatedSetFlagsRequest
5065where
5066 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
5067{
5068 #[inline]
5069 fn encode(
5070 &mut self,
5071 encoder: &mut ___E,
5072 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5073 ) -> Result<(), ::fidl_next::EncodeError> {
5074 ::fidl_next::munge! {
5075 let Self::Encoded {
5076 flags,
5077
5078 } = out;
5079 }
5080
5081 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
5082
5083 Ok(())
5084 }
5085}
5086
5087impl ::fidl_next::EncodableOption for Box<NodeDeprecatedSetFlagsRequest> {
5088 type EncodedOption = ::fidl_next::WireBox<WireNodeDeprecatedSetFlagsRequest>;
5089}
5090
5091unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeDeprecatedSetFlagsRequest>
5092where
5093 ___E: ::fidl_next::Encoder + ?Sized,
5094 NodeDeprecatedSetFlagsRequest: ::fidl_next::Encode<___E>,
5095{
5096 #[inline]
5097 fn encode_option(
5098 this: Option<&mut Self>,
5099 encoder: &mut ___E,
5100 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
5101 ) -> Result<(), ::fidl_next::EncodeError> {
5102 if let Some(inner) = this {
5103 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
5104 ::fidl_next::WireBox::encode_present(out);
5105 } else {
5106 ::fidl_next::WireBox::encode_absent(out);
5107 }
5108
5109 Ok(())
5110 }
5111}
5112
5113impl ::fidl_next::TakeFrom<WireNodeDeprecatedSetFlagsRequest> for NodeDeprecatedSetFlagsRequest {
5114 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5115 ::fidl_next::CopyOptimization::enable_if(
5116 true && <crate::OpenFlags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5117 )
5118 };
5119
5120 #[inline]
5121 fn take_from(from: &WireNodeDeprecatedSetFlagsRequest) -> Self {
5122 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
5123 }
5124}
5125
5126#[derive(Clone, Debug)]
5128#[repr(C)]
5129pub struct WireNodeDeprecatedSetFlagsRequest {
5130 pub flags: crate::WireOpenFlags,
5131}
5132
5133unsafe impl ::fidl_next::ZeroPadding for WireNodeDeprecatedSetFlagsRequest {
5134 #[inline]
5135 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
5136}
5137
5138unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeDeprecatedSetFlagsRequest
5139where
5140 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5141{
5142 fn decode(
5143 slot: ::fidl_next::Slot<'_, Self>,
5144 decoder: &mut ___D,
5145 ) -> Result<(), ::fidl_next::DecodeError> {
5146 ::fidl_next::munge! {
5147 let Self {
5148 mut flags,
5149
5150 } = slot;
5151 }
5152
5153 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
5154
5155 Ok(())
5156 }
5157}
5158
5159#[derive(Clone, Debug)]
5160#[repr(C)]
5161pub struct NodeDeprecatedSetFlagsResponse {
5162 pub s: i32,
5163}
5164
5165impl ::fidl_next::Encodable for NodeDeprecatedSetFlagsResponse {
5166 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5167 ::fidl_next::CopyOptimization::enable_if(
5168 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5169 )
5170 };
5171
5172 type Encoded = WireNodeDeprecatedSetFlagsResponse;
5173}
5174
5175unsafe impl<___E> ::fidl_next::Encode<___E> for NodeDeprecatedSetFlagsResponse
5176where
5177 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
5178{
5179 #[inline]
5180 fn encode(
5181 &mut self,
5182 encoder: &mut ___E,
5183 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5184 ) -> Result<(), ::fidl_next::EncodeError> {
5185 ::fidl_next::munge! {
5186 let Self::Encoded {
5187 s,
5188
5189 } = out;
5190 }
5191
5192 ::fidl_next::Encode::encode(&mut self.s, encoder, s)?;
5193
5194 Ok(())
5195 }
5196}
5197
5198impl ::fidl_next::EncodableOption for Box<NodeDeprecatedSetFlagsResponse> {
5199 type EncodedOption = ::fidl_next::WireBox<WireNodeDeprecatedSetFlagsResponse>;
5200}
5201
5202unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeDeprecatedSetFlagsResponse>
5203where
5204 ___E: ::fidl_next::Encoder + ?Sized,
5205 NodeDeprecatedSetFlagsResponse: ::fidl_next::Encode<___E>,
5206{
5207 #[inline]
5208 fn encode_option(
5209 this: Option<&mut Self>,
5210 encoder: &mut ___E,
5211 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
5212 ) -> Result<(), ::fidl_next::EncodeError> {
5213 if let Some(inner) = this {
5214 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
5215 ::fidl_next::WireBox::encode_present(out);
5216 } else {
5217 ::fidl_next::WireBox::encode_absent(out);
5218 }
5219
5220 Ok(())
5221 }
5222}
5223
5224impl ::fidl_next::TakeFrom<WireNodeDeprecatedSetFlagsResponse> for NodeDeprecatedSetFlagsResponse {
5225 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5226 ::fidl_next::CopyOptimization::enable_if(
5227 true && <i32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5228 )
5229 };
5230
5231 #[inline]
5232 fn take_from(from: &WireNodeDeprecatedSetFlagsResponse) -> Self {
5233 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
5234 }
5235}
5236
5237#[derive(Clone, Debug)]
5239#[repr(C)]
5240pub struct WireNodeDeprecatedSetFlagsResponse {
5241 pub s: ::fidl_next::WireI32,
5242}
5243
5244unsafe impl ::fidl_next::ZeroPadding for WireNodeDeprecatedSetFlagsResponse {
5245 #[inline]
5246 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
5247}
5248
5249unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeDeprecatedSetFlagsResponse
5250where
5251 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5252{
5253 fn decode(
5254 slot: ::fidl_next::Slot<'_, Self>,
5255 decoder: &mut ___D,
5256 ) -> Result<(), ::fidl_next::DecodeError> {
5257 ::fidl_next::munge! {
5258 let Self {
5259 mut s,
5260
5261 } = slot;
5262 }
5263
5264 ::fidl_next::Decode::decode(s.as_mut(), decoder)?;
5265
5266 Ok(())
5267 }
5268}
5269
5270::fidl_next::bitflags! {
5271 #[doc = " Flags used to specify how a node should be opened. Note that ranges of bits are reserved\n for specific use cases:\n * Bits 1-16: Permission flags `PERM_*` (e.g. [`Flags.PERM_READ`]).\n * Bits 17-32: POSIX compatibile `O_*` flags (e.g. [`Flags.FILE_TRUNCATE`] or `O_TRUNC`).\n * Bits 33-64: Fuchsia-specific flags.\n"]#[derive(
5272 Clone,
5273 Copy,
5274 Debug,
5275 PartialEq,
5276 Eq,
5277 Hash,
5278 )]
5279 pub struct Flags: u64 {
5280 #[doc = " Allows opening child nodes with [`PROTOCOL_SERVICE`].\n"]const PERM_CONNECT = 1;
5281 #[doc = " Read byte contents of a file.\n"]const PERM_READ = 2;
5282 #[doc = " Write byte contents to a file.\n"]const PERM_WRITE = 4;
5283 #[doc = " Execute byte contents of a file.\n"]const PERM_EXECUTE = 8;
5284 #[doc = " Get/query attributes of a node.\n"]const PERM_GET_ATTRIBUTES = 16;
5285 #[doc = " Set/update attributes of a node.\n"]const PERM_SET_ATTRIBUTES = 32;
5286 #[doc = " Enumerate (list) directory entries.\n"]const PERM_ENUMERATE = 64;
5287 #[doc = " Allow opening a child node with a node protocol. Must be specified with PERM_ENUMERATE\n otherwise requests will fail with `ZX_ERR_INVALID_ARGS`.\n"]const PERM_TRAVERSE = 128;
5288 #[doc = " Modify directory entries (create/rename/link/unlink). Must be specified with PERM_ENUMERATE\n otherwise requests will fail with `ZX_ERR_INVALID_ARGS`.\n"]const PERM_MODIFY = 256;
5289 #[doc = " Inherit write permissions when available (PERM_WRITE, PERM_SET_ATTRIBUTES, PERM_MODIFY,\n PERM_ENUMERATE). Servers must ensure this flag is removed if the parent connection lacks any\n of these rights. See [`INHERITED_WRITE_PERMISSIONS`] for the exact set of permissions that\n will be inherited.\n"]const PERM_INHERIT_WRITE = 8192;
5290 #[doc = " Inherit execute permission when available (PERM_EXECUTE).\n Servers must ensure this flag is removed if the parent connection lacks PERM_EXECUTE.\n"]const PERM_INHERIT_EXECUTE = 16384;
5291 #[doc = " Connect to the underlying protocol if this is a service node. The caller must determine the\n correct protocol to use (e.g. based on path). Unless used with [`PROTOCOL_NODE`], specifying\n other flags with the request will fail with `ZX_ERR_INVALID_ARGS`.\n"]const PROTOCOL_SERVICE = 4294967296;
5292 #[doc = " Connect to the underlying node. Takes precedence over other protocols. If other `PROTOCOL_*`\n are specified, they will be used to validate the target node type. Requests will fail with\n `ZX_ERR_INVALID_ARGS` if flags other than `PROTOCOL_*` and [`FLAG_SEND_REPRESENTATION`] are\n specified. Equivalent to POSIX `O_PATH`.\n"]const PROTOCOL_NODE = 4194304;
5293 #[doc = " Caller accepts [`fuchsia.io/Directory`] protocol. Equivalent to POSIX `O_DIRECTORY`.\n"]const PROTOCOL_DIRECTORY = 524288;
5294 #[doc = " Caller accepts [`fuchsia.io/File`] protocol.\n"]const PROTOCOL_FILE = 8589934592;
5295 #[doc = " Caller accepts [`fuchsia.io/Symlink`] protocol.\n"]const PROTOCOL_SYMLINK = 17179869184;
5296 #[doc = " Caller requests a [`fuchsia.io/Node.OnRepresentation`] event on success.\n"]const FLAG_SEND_REPRESENTATION = 1099511627776;
5297 #[doc = " Create a new object if one doesn\'t exist, otherwise open an existing object. If set, a\n single `PROTOCOL_*` flag must be set indicating the type of object to create. Equivalent\n to POSIX `O_CREAT`.\n"]const FLAG_MAYBE_CREATE = 65536;
5298 #[doc = " Create a new object if one doesn\'t exist, otherwise fail the request with\n `ZX_ERR_ALREADY_EXISTS`. If set, a single `PROTOCOL_*` flag must be set indicating the type\n of object to create. Takes precedence over [`FLAG_MAYBE_CREATE`]. Equivalent to POSIX\n `O_EXCL`.\n"]const FLAG_MUST_CREATE = 131072;
5299 #[doc = " Create a new unnamed temporary object. The object is temporary until it is linked to the\n filesystem. If specified with `FLAG_TEMPORARY_AS_NOT_LINKABLE`, then the created object is\n not linkable. If this flag is set:\n * `path` specified in [`fuchsia.io/Directory.Open`] refers to the path of the directory\n which the new object will be created in,\n * A `PROTOCOL_*` flag is set to indicate the type of object to be created. Currently, this\n is only supported when specified with `PROTOCOL_FILE`, in which case, it is equivalent\n to Linux `O_TMPFILE`.\n * `FLAG_MAYBE_CREATE` will be ignored.\n"]const FLAG_CREATE_AS_UNNAMED_TEMPORARY = 34359738368;
5300 #[doc = " Open the file in append mode. The seek pointer will be moved to end-of-file (EOF)\n before all writes. Equivalent to POSIX `O_APPEND`.\n"]const FILE_APPEND = 1048576;
5301 #[doc = " Truncate the file to zero length upon opening it. Equivalent to POSIX `O_TRUNC`.\n"]const FILE_TRUNCATE = 262144;
5302 const _ = !0;
5303 }
5304}
5305
5306impl ::fidl_next::Encodable for Flags {
5307 type Encoded = WireFlags;
5308}
5309
5310unsafe impl<___E> ::fidl_next::Encode<___E> for Flags
5311where
5312 ___E: ?Sized,
5313{
5314 #[inline]
5315 fn encode(
5316 &mut self,
5317 _: &mut ___E,
5318 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5319 ) -> Result<(), ::fidl_next::EncodeError> {
5320 ::fidl_next::munge!(let WireFlags { value } = out);
5321 let _ = value.write(::fidl_next::WireU64::from(self.bits()));
5322 Ok(())
5323 }
5324}
5325
5326impl ::core::convert::From<WireFlags> for Flags {
5327 fn from(wire: WireFlags) -> Self {
5328 Self::from_bits_retain(u64::from(wire.value))
5329 }
5330}
5331
5332impl ::fidl_next::TakeFrom<WireFlags> for Flags {
5333 #[inline]
5334 fn take_from(from: &WireFlags) -> Self {
5335 Self::from(*from)
5336 }
5337}
5338
5339#[derive(Clone, Copy, Debug)]
5341#[repr(transparent)]
5342pub struct WireFlags {
5343 value: ::fidl_next::WireU64,
5344}
5345
5346unsafe impl ::fidl_next::ZeroPadding for WireFlags {
5347 #[inline]
5348 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
5349 }
5351}
5352
5353unsafe impl<___D> ::fidl_next::Decode<___D> for WireFlags
5354where
5355 ___D: ?Sized,
5356{
5357 fn decode(
5358 slot: ::fidl_next::Slot<'_, Self>,
5359 _: &mut ___D,
5360 ) -> Result<(), ::fidl_next::DecodeError> {
5361 Ok(())
5362 }
5363}
5364
5365impl ::core::convert::From<Flags> for WireFlags {
5366 fn from(natural: Flags) -> Self {
5367 Self { value: ::fidl_next::WireU64::from(natural.bits()) }
5368 }
5369}
5370
5371#[derive(Clone, Debug)]
5372#[repr(C)]
5373pub struct NodeGetFlagsResponse {
5374 pub flags: crate::Flags,
5375}
5376
5377impl ::fidl_next::Encodable for NodeGetFlagsResponse {
5378 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5379 ::fidl_next::CopyOptimization::enable_if(
5380 true && <crate::Flags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5381 )
5382 };
5383
5384 type Encoded = WireNodeGetFlagsResponse;
5385}
5386
5387unsafe impl<___E> ::fidl_next::Encode<___E> for NodeGetFlagsResponse
5388where
5389 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
5390{
5391 #[inline]
5392 fn encode(
5393 &mut self,
5394 encoder: &mut ___E,
5395 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5396 ) -> Result<(), ::fidl_next::EncodeError> {
5397 ::fidl_next::munge! {
5398 let Self::Encoded {
5399 flags,
5400
5401 } = out;
5402 }
5403
5404 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
5405
5406 Ok(())
5407 }
5408}
5409
5410impl ::fidl_next::EncodableOption for Box<NodeGetFlagsResponse> {
5411 type EncodedOption = ::fidl_next::WireBox<WireNodeGetFlagsResponse>;
5412}
5413
5414unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeGetFlagsResponse>
5415where
5416 ___E: ::fidl_next::Encoder + ?Sized,
5417 NodeGetFlagsResponse: ::fidl_next::Encode<___E>,
5418{
5419 #[inline]
5420 fn encode_option(
5421 this: Option<&mut Self>,
5422 encoder: &mut ___E,
5423 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
5424 ) -> Result<(), ::fidl_next::EncodeError> {
5425 if let Some(inner) = this {
5426 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
5427 ::fidl_next::WireBox::encode_present(out);
5428 } else {
5429 ::fidl_next::WireBox::encode_absent(out);
5430 }
5431
5432 Ok(())
5433 }
5434}
5435
5436impl ::fidl_next::TakeFrom<WireNodeGetFlagsResponse> for NodeGetFlagsResponse {
5437 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5438 ::fidl_next::CopyOptimization::enable_if(
5439 true && <crate::Flags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5440 )
5441 };
5442
5443 #[inline]
5444 fn take_from(from: &WireNodeGetFlagsResponse) -> Self {
5445 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
5446 }
5447}
5448
5449#[derive(Clone, Debug)]
5451#[repr(C)]
5452pub struct WireNodeGetFlagsResponse {
5453 pub flags: crate::WireFlags,
5454}
5455
5456unsafe impl ::fidl_next::ZeroPadding for WireNodeGetFlagsResponse {
5457 #[inline]
5458 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
5459}
5460
5461unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeGetFlagsResponse
5462where
5463 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5464{
5465 fn decode(
5466 slot: ::fidl_next::Slot<'_, Self>,
5467 decoder: &mut ___D,
5468 ) -> Result<(), ::fidl_next::DecodeError> {
5469 ::fidl_next::munge! {
5470 let Self {
5471 mut flags,
5472
5473 } = slot;
5474 }
5475
5476 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
5477
5478 Ok(())
5479 }
5480}
5481
5482#[derive(Clone, Debug)]
5483#[repr(C)]
5484pub struct NodeSetFlagsRequest {
5485 pub flags: crate::Flags,
5486}
5487
5488impl ::fidl_next::Encodable for NodeSetFlagsRequest {
5489 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5490 ::fidl_next::CopyOptimization::enable_if(
5491 true && <crate::Flags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5492 )
5493 };
5494
5495 type Encoded = WireNodeSetFlagsRequest;
5496}
5497
5498unsafe impl<___E> ::fidl_next::Encode<___E> for NodeSetFlagsRequest
5499where
5500 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
5501{
5502 #[inline]
5503 fn encode(
5504 &mut self,
5505 encoder: &mut ___E,
5506 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5507 ) -> Result<(), ::fidl_next::EncodeError> {
5508 ::fidl_next::munge! {
5509 let Self::Encoded {
5510 flags,
5511
5512 } = out;
5513 }
5514
5515 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
5516
5517 Ok(())
5518 }
5519}
5520
5521impl ::fidl_next::EncodableOption for Box<NodeSetFlagsRequest> {
5522 type EncodedOption = ::fidl_next::WireBox<WireNodeSetFlagsRequest>;
5523}
5524
5525unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeSetFlagsRequest>
5526where
5527 ___E: ::fidl_next::Encoder + ?Sized,
5528 NodeSetFlagsRequest: ::fidl_next::Encode<___E>,
5529{
5530 #[inline]
5531 fn encode_option(
5532 this: Option<&mut Self>,
5533 encoder: &mut ___E,
5534 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
5535 ) -> Result<(), ::fidl_next::EncodeError> {
5536 if let Some(inner) = this {
5537 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
5538 ::fidl_next::WireBox::encode_present(out);
5539 } else {
5540 ::fidl_next::WireBox::encode_absent(out);
5541 }
5542
5543 Ok(())
5544 }
5545}
5546
5547impl ::fidl_next::TakeFrom<WireNodeSetFlagsRequest> for NodeSetFlagsRequest {
5548 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
5549 ::fidl_next::CopyOptimization::enable_if(
5550 true && <crate::Flags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
5551 )
5552 };
5553
5554 #[inline]
5555 fn take_from(from: &WireNodeSetFlagsRequest) -> Self {
5556 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
5557 }
5558}
5559
5560#[derive(Clone, Debug)]
5562#[repr(C)]
5563pub struct WireNodeSetFlagsRequest {
5564 pub flags: crate::WireFlags,
5565}
5566
5567unsafe impl ::fidl_next::ZeroPadding for WireNodeSetFlagsRequest {
5568 #[inline]
5569 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
5570}
5571
5572unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeSetFlagsRequest
5573where
5574 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5575{
5576 fn decode(
5577 slot: ::fidl_next::Slot<'_, Self>,
5578 decoder: &mut ___D,
5579 ) -> Result<(), ::fidl_next::DecodeError> {
5580 ::fidl_next::munge! {
5581 let Self {
5582 mut flags,
5583
5584 } = slot;
5585 }
5586
5587 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
5588
5589 Ok(())
5590 }
5591}
5592
5593#[doc = " The maximum size for passing the SELinux context as an attribute.\n"]
5594pub const MAX_SELINUX_CONTEXT_ATTRIBUTE_LEN: u64 = 256;
5595
5596#[doc = " Used in places where empty structs are needed, such as empty union members, to avoid creating\n new struct types.\n"]
5597#[derive(Clone, Debug)]
5598#[repr(C)]
5599pub struct EmptyStruct {}
5600
5601impl ::fidl_next::Encodable for EmptyStruct {
5602 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> =
5603 unsafe { ::fidl_next::CopyOptimization::enable_if(true) };
5604
5605 type Encoded = WireEmptyStruct;
5606}
5607
5608unsafe impl<___E> ::fidl_next::Encode<___E> for EmptyStruct
5609where
5610 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
5611{
5612 #[inline]
5613 fn encode(
5614 &mut self,
5615 encoder: &mut ___E,
5616 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5617 ) -> Result<(), ::fidl_next::EncodeError> {
5618 ::fidl_next::munge! {
5619 let Self::Encoded {
5620
5621 } = out;
5622 }
5623
5624 Ok(())
5625 }
5626}
5627
5628impl ::fidl_next::EncodableOption for Box<EmptyStruct> {
5629 type EncodedOption = ::fidl_next::WireBox<WireEmptyStruct>;
5630}
5631
5632unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<EmptyStruct>
5633where
5634 ___E: ::fidl_next::Encoder + ?Sized,
5635 EmptyStruct: ::fidl_next::Encode<___E>,
5636{
5637 #[inline]
5638 fn encode_option(
5639 this: Option<&mut Self>,
5640 encoder: &mut ___E,
5641 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
5642 ) -> Result<(), ::fidl_next::EncodeError> {
5643 if let Some(inner) = this {
5644 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
5645 ::fidl_next::WireBox::encode_present(out);
5646 } else {
5647 ::fidl_next::WireBox::encode_absent(out);
5648 }
5649
5650 Ok(())
5651 }
5652}
5653
5654impl ::fidl_next::TakeFrom<WireEmptyStruct> for EmptyStruct {
5655 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> =
5656 unsafe { ::fidl_next::CopyOptimization::enable_if(true) };
5657
5658 #[inline]
5659 fn take_from(from: &WireEmptyStruct) -> Self {
5660 Self {}
5661 }
5662}
5663
5664#[derive(Clone, Debug)]
5666#[repr(C)]
5667pub struct WireEmptyStruct {}
5668
5669unsafe impl ::fidl_next::ZeroPadding for WireEmptyStruct {
5670 #[inline]
5671 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
5672}
5673
5674unsafe impl<___D> ::fidl_next::Decode<___D> for WireEmptyStruct
5675where
5676 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5677{
5678 fn decode(
5679 slot: ::fidl_next::Slot<'_, Self>,
5680 decoder: &mut ___D,
5681 ) -> Result<(), ::fidl_next::DecodeError> {
5682 ::fidl_next::munge! {
5683 let Self {
5684
5685 } = slot;
5686 }
5687
5688 Ok(())
5689 }
5690}
5691
5692#[derive(Clone, Debug)]
5693pub enum SelinuxContext {
5694 Data(Vec<u8>),
5695
5696 UseExtendedAttributes(crate::EmptyStruct),
5697
5698 UnknownOrdinal_(u64),
5699}
5700
5701impl ::fidl_next::Encodable for SelinuxContext {
5702 type Encoded = WireSelinuxContext;
5703}
5704
5705unsafe impl<___E> ::fidl_next::Encode<___E> for SelinuxContext
5706where
5707 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
5708
5709 ___E: ::fidl_next::Encoder,
5710{
5711 #[inline]
5712 fn encode(
5713 &mut self,
5714 encoder: &mut ___E,
5715 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
5716 ) -> Result<(), ::fidl_next::EncodeError> {
5717 ::fidl_next::munge!(let WireSelinuxContext { raw } = out);
5718
5719 match self {
5720 Self::Data(value) => {
5721 ::fidl_next::RawWireUnion::encode_as::<___E, Vec<u8>>(value, 1, encoder, raw)?
5722 }
5723
5724 Self::UseExtendedAttributes(value) => ::fidl_next::RawWireUnion::encode_as::<
5725 ___E,
5726 crate::EmptyStruct,
5727 >(value, 2, encoder, raw)?,
5728
5729 Self::UnknownOrdinal_(ordinal) => {
5730 return Err(::fidl_next::EncodeError::UnknownUnionOrdinal(*ordinal as usize))
5731 }
5732 }
5733
5734 Ok(())
5735 }
5736}
5737
5738impl ::fidl_next::EncodableOption for Box<SelinuxContext> {
5739 type EncodedOption = WireOptionalSelinuxContext;
5740}
5741
5742unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<SelinuxContext>
5743where
5744 ___E: ?Sized,
5745 SelinuxContext: ::fidl_next::Encode<___E>,
5746{
5747 #[inline]
5748 fn encode_option(
5749 this: Option<&mut Self>,
5750 encoder: &mut ___E,
5751 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
5752 ) -> Result<(), ::fidl_next::EncodeError> {
5753 ::fidl_next::munge!(let WireOptionalSelinuxContext { raw } = &mut *out);
5754
5755 if let Some(inner) = this {
5756 let value_out = unsafe { &mut *out.as_mut_ptr().cast() };
5757 ::fidl_next::Encode::encode(&mut **inner, encoder, value_out)?;
5758 } else {
5759 ::fidl_next::RawWireUnion::encode_absent(raw);
5760 }
5761
5762 Ok(())
5763 }
5764}
5765
5766impl ::fidl_next::TakeFrom<WireSelinuxContext> for SelinuxContext {
5767 #[inline]
5768 fn take_from(from: &WireSelinuxContext) -> Self {
5769 match from.raw.ordinal() {
5770 1 => Self::Data(::fidl_next::TakeFrom::take_from(unsafe {
5771 from.raw.get().deref_unchecked::<::fidl_next::WireVector<u8>>()
5772 })),
5773
5774 2 => Self::UseExtendedAttributes(::fidl_next::TakeFrom::take_from(unsafe {
5775 from.raw.get().deref_unchecked::<crate::WireEmptyStruct>()
5776 })),
5777
5778 _ => unsafe { ::core::hint::unreachable_unchecked() },
5779 }
5780 }
5781}
5782
5783impl ::fidl_next::TakeFrom<WireOptionalSelinuxContext> for Option<Box<SelinuxContext>> {
5784 #[inline]
5785 fn take_from(from: &WireOptionalSelinuxContext) -> Self {
5786 if let Some(inner) = from.as_ref() {
5787 Some(::fidl_next::TakeFrom::take_from(inner))
5788 } else {
5789 None
5790 }
5791 }
5792}
5793
5794#[repr(transparent)]
5796pub struct WireSelinuxContext {
5797 raw: ::fidl_next::RawWireUnion,
5798}
5799
5800unsafe impl ::fidl_next::ZeroPadding for WireSelinuxContext {
5801 #[inline]
5802 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
5803 ::fidl_next::munge!(let Self { raw } = out);
5804 ::fidl_next::RawWireUnion::zero_padding(raw);
5805 }
5806}
5807
5808pub mod selinux_context {
5809 pub enum Ref<'union> {
5810 Data(&'union ::fidl_next::WireVector<u8>),
5811
5812 UseExtendedAttributes(&'union crate::WireEmptyStruct),
5813
5814 UnknownOrdinal_(u64),
5815 }
5816}
5817
5818impl WireSelinuxContext {
5819 pub fn as_ref(&self) -> crate::selinux_context::Ref<'_> {
5820 match self.raw.ordinal() {
5821 1 => crate::selinux_context::Ref::Data(unsafe {
5822 self.raw.get().deref_unchecked::<::fidl_next::WireVector<u8>>()
5823 }),
5824
5825 2 => crate::selinux_context::Ref::UseExtendedAttributes(unsafe {
5826 self.raw.get().deref_unchecked::<crate::WireEmptyStruct>()
5827 }),
5828
5829 unknown => crate::selinux_context::Ref::UnknownOrdinal_(unknown),
5830 }
5831 }
5832}
5833
5834unsafe impl<___D> ::fidl_next::Decode<___D> for WireSelinuxContext
5835where
5836 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5837
5838 ___D: ::fidl_next::Decoder,
5839{
5840 fn decode(
5841 mut slot: ::fidl_next::Slot<'_, Self>,
5842 decoder: &mut ___D,
5843 ) -> Result<(), ::fidl_next::DecodeError> {
5844 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
5845 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
5846 1 => ::fidl_next::RawWireUnion::decode_as::<___D, ::fidl_next::WireVector<u8>>(
5847 raw, decoder,
5848 )?,
5849
5850 2 => {
5851 ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireEmptyStruct>(raw, decoder)?
5852 }
5853
5854 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
5855 }
5856
5857 Ok(())
5858 }
5859}
5860
5861impl ::core::fmt::Debug for WireSelinuxContext {
5862 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
5863 match self.raw.ordinal() {
5864 1 => unsafe { self.raw.get().deref_unchecked::<::fidl_next::WireVector<u8>>().fmt(f) },
5865 2 => unsafe { self.raw.get().deref_unchecked::<crate::WireEmptyStruct>().fmt(f) },
5866 _ => unsafe { ::core::hint::unreachable_unchecked() },
5867 }
5868 }
5869}
5870
5871#[repr(transparent)]
5872pub struct WireOptionalSelinuxContext {
5873 raw: ::fidl_next::RawWireUnion,
5874}
5875
5876unsafe impl ::fidl_next::ZeroPadding for WireOptionalSelinuxContext {
5877 #[inline]
5878 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
5879 ::fidl_next::munge!(let Self { raw } = out);
5880 ::fidl_next::RawWireUnion::zero_padding(raw);
5881 }
5882}
5883
5884impl WireOptionalSelinuxContext {
5885 pub fn is_some(&self) -> bool {
5886 self.raw.is_some()
5887 }
5888
5889 pub fn is_none(&self) -> bool {
5890 self.raw.is_none()
5891 }
5892
5893 pub fn as_ref(&self) -> Option<&WireSelinuxContext> {
5894 if self.is_some() {
5895 Some(unsafe { &*(self as *const Self).cast() })
5896 } else {
5897 None
5898 }
5899 }
5900}
5901
5902unsafe impl<___D> ::fidl_next::Decode<___D> for WireOptionalSelinuxContext
5903where
5904 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
5905
5906 ___D: ::fidl_next::Decoder,
5907{
5908 fn decode(
5909 mut slot: ::fidl_next::Slot<'_, Self>,
5910 decoder: &mut ___D,
5911 ) -> Result<(), ::fidl_next::DecodeError> {
5912 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
5913 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
5914 1 => ::fidl_next::RawWireUnion::decode_as::<___D, ::fidl_next::WireVector<u8>>(
5915 raw, decoder,
5916 )?,
5917
5918 2 => {
5919 ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireEmptyStruct>(raw, decoder)?
5920 }
5921
5922 0 => ::fidl_next::RawWireUnion::decode_absent(raw)?,
5923 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
5924 }
5925
5926 Ok(())
5927 }
5928}
5929
5930impl ::core::fmt::Debug for WireOptionalSelinuxContext {
5931 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
5932 self.as_ref().fmt(f)
5933 }
5934}
5935
5936#[derive(Clone, Debug)]
5937pub struct MutableNodeAttributes {
5938 pub creation_time: Option<u64>,
5939
5940 pub modification_time: Option<u64>,
5941
5942 pub mode: Option<u32>,
5943
5944 pub uid: Option<u32>,
5945
5946 pub gid: Option<u32>,
5947
5948 pub rdev: Option<u64>,
5949
5950 pub access_time: Option<u64>,
5951
5952 pub casefold: Option<bool>,
5953
5954 pub selinux_context: Option<crate::SelinuxContext>,
5955
5956 pub wrapping_key_id: Option<[u8; 16]>,
5957}
5958
5959impl MutableNodeAttributes {
5960 fn __max_ordinal(&self) -> usize {
5961 if self.creation_time.is_some() {
5962 return 1;
5963 }
5964
5965 if self.modification_time.is_some() {
5966 return 2;
5967 }
5968
5969 if self.mode.is_some() {
5970 return 3;
5971 }
5972
5973 if self.uid.is_some() {
5974 return 4;
5975 }
5976
5977 if self.gid.is_some() {
5978 return 5;
5979 }
5980
5981 if self.rdev.is_some() {
5982 return 6;
5983 }
5984
5985 if self.access_time.is_some() {
5986 return 7;
5987 }
5988
5989 if self.casefold.is_some() {
5990 return 8;
5991 }
5992
5993 if self.selinux_context.is_some() {
5994 return 9;
5995 }
5996
5997 if self.wrapping_key_id.is_some() {
5998 return 10;
5999 }
6000
6001 0
6002 }
6003}
6004
6005impl ::fidl_next::Encodable for MutableNodeAttributes {
6006 type Encoded = WireMutableNodeAttributes;
6007}
6008
6009unsafe impl<___E> ::fidl_next::Encode<___E> for MutableNodeAttributes
6010where
6011 ___E: ::fidl_next::Encoder + ?Sized,
6012{
6013 #[inline]
6014 fn encode(
6015 &mut self,
6016 encoder: &mut ___E,
6017 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
6018 ) -> Result<(), ::fidl_next::EncodeError> {
6019 ::fidl_next::munge!(let WireMutableNodeAttributes { table } = out);
6020
6021 let max_ord = self.__max_ordinal();
6022
6023 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
6024 ::fidl_next::ZeroPadding::zero_padding(&mut out);
6025
6026 let mut preallocated =
6027 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
6028
6029 for i in 1..=max_ord {
6030 match i {
6031 10 => {
6032 if let Some(wrapping_key_id) = &mut self.wrapping_key_id {
6033 ::fidl_next::WireEnvelope::encode_value(
6034 wrapping_key_id,
6035 preallocated.encoder,
6036 &mut out,
6037 )?;
6038 } else {
6039 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6040 }
6041 }
6042
6043 9 => {
6044 if let Some(selinux_context) = &mut self.selinux_context {
6045 ::fidl_next::WireEnvelope::encode_value(
6046 selinux_context,
6047 preallocated.encoder,
6048 &mut out,
6049 )?;
6050 } else {
6051 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6052 }
6053 }
6054
6055 8 => {
6056 if let Some(casefold) = &mut self.casefold {
6057 ::fidl_next::WireEnvelope::encode_value(
6058 casefold,
6059 preallocated.encoder,
6060 &mut out,
6061 )?;
6062 } else {
6063 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6064 }
6065 }
6066
6067 7 => {
6068 if let Some(access_time) = &mut self.access_time {
6069 ::fidl_next::WireEnvelope::encode_value(
6070 access_time,
6071 preallocated.encoder,
6072 &mut out,
6073 )?;
6074 } else {
6075 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6076 }
6077 }
6078
6079 6 => {
6080 if let Some(rdev) = &mut self.rdev {
6081 ::fidl_next::WireEnvelope::encode_value(
6082 rdev,
6083 preallocated.encoder,
6084 &mut out,
6085 )?;
6086 } else {
6087 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6088 }
6089 }
6090
6091 5 => {
6092 if let Some(gid) = &mut self.gid {
6093 ::fidl_next::WireEnvelope::encode_value(
6094 gid,
6095 preallocated.encoder,
6096 &mut out,
6097 )?;
6098 } else {
6099 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6100 }
6101 }
6102
6103 4 => {
6104 if let Some(uid) = &mut self.uid {
6105 ::fidl_next::WireEnvelope::encode_value(
6106 uid,
6107 preallocated.encoder,
6108 &mut out,
6109 )?;
6110 } else {
6111 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6112 }
6113 }
6114
6115 3 => {
6116 if let Some(mode) = &mut self.mode {
6117 ::fidl_next::WireEnvelope::encode_value(
6118 mode,
6119 preallocated.encoder,
6120 &mut out,
6121 )?;
6122 } else {
6123 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6124 }
6125 }
6126
6127 2 => {
6128 if let Some(modification_time) = &mut self.modification_time {
6129 ::fidl_next::WireEnvelope::encode_value(
6130 modification_time,
6131 preallocated.encoder,
6132 &mut out,
6133 )?;
6134 } else {
6135 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6136 }
6137 }
6138
6139 1 => {
6140 if let Some(creation_time) = &mut self.creation_time {
6141 ::fidl_next::WireEnvelope::encode_value(
6142 creation_time,
6143 preallocated.encoder,
6144 &mut out,
6145 )?;
6146 } else {
6147 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6148 }
6149 }
6150
6151 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
6152 }
6153 unsafe {
6154 preallocated.write_next(out.assume_init_ref());
6155 }
6156 }
6157
6158 ::fidl_next::WireTable::encode_len(table, max_ord);
6159
6160 Ok(())
6161 }
6162}
6163
6164impl ::fidl_next::TakeFrom<WireMutableNodeAttributes> for MutableNodeAttributes {
6165 #[inline]
6166 fn take_from(from: &WireMutableNodeAttributes) -> Self {
6167 Self {
6168 creation_time: from.creation_time().map(::fidl_next::TakeFrom::take_from),
6169
6170 modification_time: from.modification_time().map(::fidl_next::TakeFrom::take_from),
6171
6172 mode: from.mode().map(::fidl_next::TakeFrom::take_from),
6173
6174 uid: from.uid().map(::fidl_next::TakeFrom::take_from),
6175
6176 gid: from.gid().map(::fidl_next::TakeFrom::take_from),
6177
6178 rdev: from.rdev().map(::fidl_next::TakeFrom::take_from),
6179
6180 access_time: from.access_time().map(::fidl_next::TakeFrom::take_from),
6181
6182 casefold: from.casefold().map(::fidl_next::TakeFrom::take_from),
6183
6184 selinux_context: from.selinux_context().map(::fidl_next::TakeFrom::take_from),
6185
6186 wrapping_key_id: from.wrapping_key_id().map(::fidl_next::TakeFrom::take_from),
6187 }
6188 }
6189}
6190
6191#[repr(C)]
6193pub struct WireMutableNodeAttributes {
6194 table: ::fidl_next::WireTable,
6195}
6196
6197unsafe impl ::fidl_next::ZeroPadding for WireMutableNodeAttributes {
6198 #[inline]
6199 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
6200 ::fidl_next::munge!(let Self { table } = out);
6201 ::fidl_next::WireTable::zero_padding(table);
6202 }
6203}
6204
6205unsafe impl<___D> ::fidl_next::Decode<___D> for WireMutableNodeAttributes
6206where
6207 ___D: ::fidl_next::Decoder + ?Sized,
6208{
6209 fn decode(
6210 slot: ::fidl_next::Slot<'_, Self>,
6211 decoder: &mut ___D,
6212 ) -> Result<(), ::fidl_next::DecodeError> {
6213 ::fidl_next::munge!(let Self { table } = slot);
6214
6215 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
6216 match ordinal {
6217 0 => unsafe { ::core::hint::unreachable_unchecked() },
6218
6219 1 => {
6220 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
6221 slot.as_mut(),
6222 decoder,
6223 )?;
6224
6225 Ok(())
6226 }
6227
6228 2 => {
6229 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
6230 slot.as_mut(),
6231 decoder,
6232 )?;
6233
6234 Ok(())
6235 }
6236
6237 3 => {
6238 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU32>(
6239 slot.as_mut(),
6240 decoder,
6241 )?;
6242
6243 Ok(())
6244 }
6245
6246 4 => {
6247 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU32>(
6248 slot.as_mut(),
6249 decoder,
6250 )?;
6251
6252 Ok(())
6253 }
6254
6255 5 => {
6256 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU32>(
6257 slot.as_mut(),
6258 decoder,
6259 )?;
6260
6261 Ok(())
6262 }
6263
6264 6 => {
6265 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
6266 slot.as_mut(),
6267 decoder,
6268 )?;
6269
6270 Ok(())
6271 }
6272
6273 7 => {
6274 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
6275 slot.as_mut(),
6276 decoder,
6277 )?;
6278
6279 Ok(())
6280 }
6281
6282 8 => {
6283 ::fidl_next::WireEnvelope::decode_as::<___D, bool>(slot.as_mut(), decoder)?;
6284
6285 Ok(())
6286 }
6287
6288 9 => {
6289 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireSelinuxContext>(
6290 slot.as_mut(),
6291 decoder,
6292 )?;
6293
6294 Ok(())
6295 }
6296
6297 10 => {
6298 ::fidl_next::WireEnvelope::decode_as::<___D, [u8; 16]>(slot.as_mut(), decoder)?;
6299
6300 Ok(())
6301 }
6302
6303 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
6304 }
6305 })
6306 }
6307}
6308
6309impl WireMutableNodeAttributes {
6310 pub fn creation_time(&self) -> Option<&::fidl_next::WireU64> {
6311 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
6312 }
6313
6314 pub fn modification_time(&self) -> Option<&::fidl_next::WireU64> {
6315 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
6316 }
6317
6318 pub fn mode(&self) -> Option<&::fidl_next::WireU32> {
6319 unsafe { Some(self.table.get(3)?.deref_unchecked()) }
6320 }
6321
6322 pub fn uid(&self) -> Option<&::fidl_next::WireU32> {
6323 unsafe { Some(self.table.get(4)?.deref_unchecked()) }
6324 }
6325
6326 pub fn gid(&self) -> Option<&::fidl_next::WireU32> {
6327 unsafe { Some(self.table.get(5)?.deref_unchecked()) }
6328 }
6329
6330 pub fn rdev(&self) -> Option<&::fidl_next::WireU64> {
6331 unsafe { Some(self.table.get(6)?.deref_unchecked()) }
6332 }
6333
6334 pub fn access_time(&self) -> Option<&::fidl_next::WireU64> {
6335 unsafe { Some(self.table.get(7)?.deref_unchecked()) }
6336 }
6337
6338 pub fn casefold(&self) -> Option<&bool> {
6339 unsafe { Some(self.table.get(8)?.deref_unchecked()) }
6340 }
6341
6342 pub fn selinux_context(&self) -> Option<&crate::WireSelinuxContext> {
6343 unsafe { Some(self.table.get(9)?.deref_unchecked()) }
6344 }
6345
6346 pub fn wrapping_key_id(&self) -> Option<&[u8; 16]> {
6347 unsafe { Some(self.table.get(10)?.deref_unchecked()) }
6348 }
6349}
6350
6351impl ::core::fmt::Debug for WireMutableNodeAttributes {
6352 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
6353 f.debug_struct("MutableNodeAttributes")
6354 .field("creation_time", &self.creation_time())
6355 .field("modification_time", &self.modification_time())
6356 .field("mode", &self.mode())
6357 .field("uid", &self.uid())
6358 .field("gid", &self.gid())
6359 .field("rdev", &self.rdev())
6360 .field("access_time", &self.access_time())
6361 .field("casefold", &self.casefold())
6362 .field("selinux_context", &self.selinux_context())
6363 .field("wrapping_key_id", &self.wrapping_key_id())
6364 .finish()
6365 }
6366}
6367
6368::fidl_next::bitflags! {
6369 #[doc = " A node may have multiple supported representations when opening, even though\n it may have a fixed underlying identity.\n\n Today, a file is accessed via the [`File`] protocol, and sends a\n [`Representation.FileInfo`] when opened with `GET_REPRESENTATION`. However,\n in the future we might introduce a more sophisticated `FileV2` protocol, or\n a more efficient `SuperFastFile` backed by a specialized kernel object. New\n clients can request the more advanced representations by specifying the\n corresponding bits in [`NodeProtocolKinds`], whereas existing clients would\n continue to talk to the node via the old representation.\n\n [`NodeProtocolKinds`] enables forward-compatibility through a form of protocol\n negotiation.\n\n The elements have one-to-one correspondence with the members of\n [`Representation`].\n"]#[derive(
6370 Clone,
6371 Copy,
6372 Debug,
6373 PartialEq,
6374 Eq,
6375 Hash,
6376 )]
6377 pub struct NodeProtocolKinds: u64 {
6378 #[doc = " The connector representation of a node.\n\n The connection will speak either [`Node`] or the target protocol,\n depending on the flags used during opening.\n"]const CONNECTOR = 1;
6379 #[doc = " The directory representation of a node.\n\n The connection will speak the [`Directory`] protocol.\n"]const DIRECTORY = 2;
6380 #[doc = " The file representation of a node.\n\n The connection will speak the [`File`] protocol.\n"]const FILE = 4;
6381 #[doc = " The symlink representation of a node.\n\n The connection will speak the [`Symlink`] protocol.\n"]const SYMLINK = 8;
6382 const _ = !0;
6383 }
6384}
6385
6386impl ::fidl_next::Encodable for NodeProtocolKinds {
6387 type Encoded = WireNodeProtocolKinds;
6388}
6389
6390unsafe impl<___E> ::fidl_next::Encode<___E> for NodeProtocolKinds
6391where
6392 ___E: ?Sized,
6393{
6394 #[inline]
6395 fn encode(
6396 &mut self,
6397 _: &mut ___E,
6398 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
6399 ) -> Result<(), ::fidl_next::EncodeError> {
6400 ::fidl_next::munge!(let WireNodeProtocolKinds { value } = out);
6401 let _ = value.write(::fidl_next::WireU64::from(self.bits()));
6402 Ok(())
6403 }
6404}
6405
6406impl ::core::convert::From<WireNodeProtocolKinds> for NodeProtocolKinds {
6407 fn from(wire: WireNodeProtocolKinds) -> Self {
6408 Self::from_bits_retain(u64::from(wire.value))
6409 }
6410}
6411
6412impl ::fidl_next::TakeFrom<WireNodeProtocolKinds> for NodeProtocolKinds {
6413 #[inline]
6414 fn take_from(from: &WireNodeProtocolKinds) -> Self {
6415 Self::from(*from)
6416 }
6417}
6418
6419#[derive(Clone, Copy, Debug)]
6421#[repr(transparent)]
6422pub struct WireNodeProtocolKinds {
6423 value: ::fidl_next::WireU64,
6424}
6425
6426unsafe impl ::fidl_next::ZeroPadding for WireNodeProtocolKinds {
6427 #[inline]
6428 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
6429 }
6431}
6432
6433unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeProtocolKinds
6434where
6435 ___D: ?Sized,
6436{
6437 fn decode(
6438 slot: ::fidl_next::Slot<'_, Self>,
6439 _: &mut ___D,
6440 ) -> Result<(), ::fidl_next::DecodeError> {
6441 Ok(())
6442 }
6443}
6444
6445impl ::core::convert::From<NodeProtocolKinds> for WireNodeProtocolKinds {
6446 fn from(natural: NodeProtocolKinds) -> Self {
6447 Self { value: ::fidl_next::WireU64::from(natural.bits()) }
6448 }
6449}
6450
6451#[doc = " Denotes which hash algorithm is used to build the merkle tree for\n fsverity-enabled files.\n"]
6452#[derive(Clone, Copy, Debug, PartialEq, Eq)]
6453#[repr(u8)]
6454pub enum HashAlgorithm {
6455 Sha256 = 1,
6456 Sha512 = 2,
6457 UnknownOrdinal_(u8),
6458}
6459
6460impl ::fidl_next::Encodable for HashAlgorithm {
6461 type Encoded = WireHashAlgorithm;
6462}
6463
6464unsafe impl<___E> ::fidl_next::Encode<___E> for HashAlgorithm
6465where
6466 ___E: ?Sized,
6467{
6468 #[inline]
6469 fn encode(
6470 &mut self,
6471 _: &mut ___E,
6472 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
6473 ) -> Result<(), ::fidl_next::EncodeError> {
6474 ::fidl_next::munge!(let WireHashAlgorithm { value } = out);
6475 let _ = value.write(u8::from(match *self {
6476 Self::Sha256 => 1,
6477
6478 Self::Sha512 => 2,
6479
6480 Self::UnknownOrdinal_(value) => value,
6481 }));
6482
6483 Ok(())
6484 }
6485}
6486
6487impl ::core::convert::From<WireHashAlgorithm> for HashAlgorithm {
6488 fn from(wire: WireHashAlgorithm) -> Self {
6489 match u8::from(wire.value) {
6490 1 => Self::Sha256,
6491
6492 2 => Self::Sha512,
6493
6494 value => Self::UnknownOrdinal_(value),
6495 }
6496 }
6497}
6498
6499impl ::fidl_next::TakeFrom<WireHashAlgorithm> for HashAlgorithm {
6500 #[inline]
6501 fn take_from(from: &WireHashAlgorithm) -> Self {
6502 Self::from(*from)
6503 }
6504}
6505
6506#[derive(Clone, Copy, Debug, PartialEq, Eq)]
6508#[repr(transparent)]
6509pub struct WireHashAlgorithm {
6510 value: u8,
6511}
6512
6513unsafe impl ::fidl_next::ZeroPadding for WireHashAlgorithm {
6514 #[inline]
6515 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
6516 }
6518}
6519
6520impl WireHashAlgorithm {
6521 pub const SHA256: WireHashAlgorithm = WireHashAlgorithm { value: 1 };
6522
6523 pub const SHA512: WireHashAlgorithm = WireHashAlgorithm { value: 2 };
6524}
6525
6526unsafe impl<___D> ::fidl_next::Decode<___D> for WireHashAlgorithm
6527where
6528 ___D: ?Sized,
6529{
6530 fn decode(
6531 slot: ::fidl_next::Slot<'_, Self>,
6532 _: &mut ___D,
6533 ) -> Result<(), ::fidl_next::DecodeError> {
6534 Ok(())
6535 }
6536}
6537
6538impl ::core::convert::From<HashAlgorithm> for WireHashAlgorithm {
6539 fn from(natural: HashAlgorithm) -> Self {
6540 match natural {
6541 HashAlgorithm::Sha256 => WireHashAlgorithm::SHA256,
6542
6543 HashAlgorithm::Sha512 => WireHashAlgorithm::SHA512,
6544
6545 HashAlgorithm::UnknownOrdinal_(value) => WireHashAlgorithm { value: u8::from(value) },
6546 }
6547 }
6548}
6549
6550#[doc = " Set of options used to enable verity on a file.\n"]
6551#[derive(Clone, Debug)]
6552pub struct VerificationOptions {
6553 pub hash_algorithm: Option<crate::HashAlgorithm>,
6554
6555 pub salt: Option<Vec<u8>>,
6556}
6557
6558impl VerificationOptions {
6559 fn __max_ordinal(&self) -> usize {
6560 if self.hash_algorithm.is_some() {
6561 return 1;
6562 }
6563
6564 if self.salt.is_some() {
6565 return 2;
6566 }
6567
6568 0
6569 }
6570}
6571
6572impl ::fidl_next::Encodable for VerificationOptions {
6573 type Encoded = WireVerificationOptions;
6574}
6575
6576unsafe impl<___E> ::fidl_next::Encode<___E> for VerificationOptions
6577where
6578 ___E: ::fidl_next::Encoder + ?Sized,
6579{
6580 #[inline]
6581 fn encode(
6582 &mut self,
6583 encoder: &mut ___E,
6584 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
6585 ) -> Result<(), ::fidl_next::EncodeError> {
6586 ::fidl_next::munge!(let WireVerificationOptions { table } = out);
6587
6588 let max_ord = self.__max_ordinal();
6589
6590 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
6591 ::fidl_next::ZeroPadding::zero_padding(&mut out);
6592
6593 let mut preallocated =
6594 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
6595
6596 for i in 1..=max_ord {
6597 match i {
6598 2 => {
6599 if let Some(salt) = &mut self.salt {
6600 ::fidl_next::WireEnvelope::encode_value(
6601 salt,
6602 preallocated.encoder,
6603 &mut out,
6604 )?;
6605 } else {
6606 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6607 }
6608 }
6609
6610 1 => {
6611 if let Some(hash_algorithm) = &mut self.hash_algorithm {
6612 ::fidl_next::WireEnvelope::encode_value(
6613 hash_algorithm,
6614 preallocated.encoder,
6615 &mut out,
6616 )?;
6617 } else {
6618 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6619 }
6620 }
6621
6622 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
6623 }
6624 unsafe {
6625 preallocated.write_next(out.assume_init_ref());
6626 }
6627 }
6628
6629 ::fidl_next::WireTable::encode_len(table, max_ord);
6630
6631 Ok(())
6632 }
6633}
6634
6635impl ::fidl_next::TakeFrom<WireVerificationOptions> for VerificationOptions {
6636 #[inline]
6637 fn take_from(from: &WireVerificationOptions) -> Self {
6638 Self {
6639 hash_algorithm: from.hash_algorithm().map(::fidl_next::TakeFrom::take_from),
6640
6641 salt: from.salt().map(::fidl_next::TakeFrom::take_from),
6642 }
6643 }
6644}
6645
6646#[repr(C)]
6648pub struct WireVerificationOptions {
6649 table: ::fidl_next::WireTable,
6650}
6651
6652unsafe impl ::fidl_next::ZeroPadding for WireVerificationOptions {
6653 #[inline]
6654 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
6655 ::fidl_next::munge!(let Self { table } = out);
6656 ::fidl_next::WireTable::zero_padding(table);
6657 }
6658}
6659
6660unsafe impl<___D> ::fidl_next::Decode<___D> for WireVerificationOptions
6661where
6662 ___D: ::fidl_next::Decoder + ?Sized,
6663{
6664 fn decode(
6665 slot: ::fidl_next::Slot<'_, Self>,
6666 decoder: &mut ___D,
6667 ) -> Result<(), ::fidl_next::DecodeError> {
6668 ::fidl_next::munge!(let Self { table } = slot);
6669
6670 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
6671 match ordinal {
6672 0 => unsafe { ::core::hint::unreachable_unchecked() },
6673
6674 1 => {
6675 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireHashAlgorithm>(
6676 slot.as_mut(),
6677 decoder,
6678 )?;
6679
6680 Ok(())
6681 }
6682
6683 2 => {
6684 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireVector<u8>>(
6685 slot.as_mut(),
6686 decoder,
6687 )?;
6688
6689 let salt = unsafe {
6690 slot.deref_unchecked().deref_unchecked::<::fidl_next::WireVector<u8>>()
6691 };
6692
6693 if salt.len() > 32 {
6694 return Err(::fidl_next::DecodeError::VectorTooLong {
6695 size: salt.len() as u64,
6696 limit: 32,
6697 });
6698 }
6699
6700 Ok(())
6701 }
6702
6703 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
6704 }
6705 })
6706 }
6707}
6708
6709impl WireVerificationOptions {
6710 pub fn hash_algorithm(&self) -> Option<&crate::WireHashAlgorithm> {
6711 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
6712 }
6713
6714 pub fn salt(&self) -> Option<&::fidl_next::WireVector<u8>> {
6715 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
6716 }
6717}
6718
6719impl ::core::fmt::Debug for WireVerificationOptions {
6720 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
6721 f.debug_struct("VerificationOptions")
6722 .field("hash_algorithm", &self.hash_algorithm())
6723 .field("salt", &self.salt())
6724 .finish()
6725 }
6726}
6727
6728#[derive(Clone, Debug)]
6729pub struct ImmutableNodeAttributes {
6730 pub protocols: Option<crate::NodeProtocolKinds>,
6731
6732 pub abilities: Option<crate::Operations>,
6733
6734 pub content_size: Option<u64>,
6735
6736 pub storage_size: Option<u64>,
6737
6738 pub link_count: Option<u64>,
6739
6740 pub id: Option<u64>,
6741
6742 pub change_time: Option<u64>,
6743
6744 pub options: Option<crate::VerificationOptions>,
6745
6746 pub root_hash: Option<Vec<u8>>,
6747
6748 pub verity_enabled: Option<bool>,
6749}
6750
6751impl ImmutableNodeAttributes {
6752 fn __max_ordinal(&self) -> usize {
6753 if self.protocols.is_some() {
6754 return 1;
6755 }
6756
6757 if self.abilities.is_some() {
6758 return 2;
6759 }
6760
6761 if self.content_size.is_some() {
6762 return 3;
6763 }
6764
6765 if self.storage_size.is_some() {
6766 return 4;
6767 }
6768
6769 if self.link_count.is_some() {
6770 return 5;
6771 }
6772
6773 if self.id.is_some() {
6774 return 6;
6775 }
6776
6777 if self.change_time.is_some() {
6778 return 7;
6779 }
6780
6781 if self.options.is_some() {
6782 return 8;
6783 }
6784
6785 if self.root_hash.is_some() {
6786 return 9;
6787 }
6788
6789 if self.verity_enabled.is_some() {
6790 return 10;
6791 }
6792
6793 0
6794 }
6795}
6796
6797impl ::fidl_next::Encodable for ImmutableNodeAttributes {
6798 type Encoded = WireImmutableNodeAttributes;
6799}
6800
6801unsafe impl<___E> ::fidl_next::Encode<___E> for ImmutableNodeAttributes
6802where
6803 ___E: ::fidl_next::Encoder + ?Sized,
6804{
6805 #[inline]
6806 fn encode(
6807 &mut self,
6808 encoder: &mut ___E,
6809 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
6810 ) -> Result<(), ::fidl_next::EncodeError> {
6811 ::fidl_next::munge!(let WireImmutableNodeAttributes { table } = out);
6812
6813 let max_ord = self.__max_ordinal();
6814
6815 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
6816 ::fidl_next::ZeroPadding::zero_padding(&mut out);
6817
6818 let mut preallocated =
6819 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
6820
6821 for i in 1..=max_ord {
6822 match i {
6823 10 => {
6824 if let Some(verity_enabled) = &mut self.verity_enabled {
6825 ::fidl_next::WireEnvelope::encode_value(
6826 verity_enabled,
6827 preallocated.encoder,
6828 &mut out,
6829 )?;
6830 } else {
6831 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6832 }
6833 }
6834
6835 9 => {
6836 if let Some(root_hash) = &mut self.root_hash {
6837 ::fidl_next::WireEnvelope::encode_value(
6838 root_hash,
6839 preallocated.encoder,
6840 &mut out,
6841 )?;
6842 } else {
6843 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6844 }
6845 }
6846
6847 8 => {
6848 if let Some(options) = &mut self.options {
6849 ::fidl_next::WireEnvelope::encode_value(
6850 options,
6851 preallocated.encoder,
6852 &mut out,
6853 )?;
6854 } else {
6855 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6856 }
6857 }
6858
6859 7 => {
6860 if let Some(change_time) = &mut self.change_time {
6861 ::fidl_next::WireEnvelope::encode_value(
6862 change_time,
6863 preallocated.encoder,
6864 &mut out,
6865 )?;
6866 } else {
6867 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6868 }
6869 }
6870
6871 6 => {
6872 if let Some(id) = &mut self.id {
6873 ::fidl_next::WireEnvelope::encode_value(
6874 id,
6875 preallocated.encoder,
6876 &mut out,
6877 )?;
6878 } else {
6879 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6880 }
6881 }
6882
6883 5 => {
6884 if let Some(link_count) = &mut self.link_count {
6885 ::fidl_next::WireEnvelope::encode_value(
6886 link_count,
6887 preallocated.encoder,
6888 &mut out,
6889 )?;
6890 } else {
6891 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6892 }
6893 }
6894
6895 4 => {
6896 if let Some(storage_size) = &mut self.storage_size {
6897 ::fidl_next::WireEnvelope::encode_value(
6898 storage_size,
6899 preallocated.encoder,
6900 &mut out,
6901 )?;
6902 } else {
6903 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6904 }
6905 }
6906
6907 3 => {
6908 if let Some(content_size) = &mut self.content_size {
6909 ::fidl_next::WireEnvelope::encode_value(
6910 content_size,
6911 preallocated.encoder,
6912 &mut out,
6913 )?;
6914 } else {
6915 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6916 }
6917 }
6918
6919 2 => {
6920 if let Some(abilities) = &mut self.abilities {
6921 ::fidl_next::WireEnvelope::encode_value(
6922 abilities,
6923 preallocated.encoder,
6924 &mut out,
6925 )?;
6926 } else {
6927 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6928 }
6929 }
6930
6931 1 => {
6932 if let Some(protocols) = &mut self.protocols {
6933 ::fidl_next::WireEnvelope::encode_value(
6934 protocols,
6935 preallocated.encoder,
6936 &mut out,
6937 )?;
6938 } else {
6939 ::fidl_next::WireEnvelope::encode_zero(&mut out)
6940 }
6941 }
6942
6943 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
6944 }
6945 unsafe {
6946 preallocated.write_next(out.assume_init_ref());
6947 }
6948 }
6949
6950 ::fidl_next::WireTable::encode_len(table, max_ord);
6951
6952 Ok(())
6953 }
6954}
6955
6956impl ::fidl_next::TakeFrom<WireImmutableNodeAttributes> for ImmutableNodeAttributes {
6957 #[inline]
6958 fn take_from(from: &WireImmutableNodeAttributes) -> Self {
6959 Self {
6960 protocols: from.protocols().map(::fidl_next::TakeFrom::take_from),
6961
6962 abilities: from.abilities().map(::fidl_next::TakeFrom::take_from),
6963
6964 content_size: from.content_size().map(::fidl_next::TakeFrom::take_from),
6965
6966 storage_size: from.storage_size().map(::fidl_next::TakeFrom::take_from),
6967
6968 link_count: from.link_count().map(::fidl_next::TakeFrom::take_from),
6969
6970 id: from.id().map(::fidl_next::TakeFrom::take_from),
6971
6972 change_time: from.change_time().map(::fidl_next::TakeFrom::take_from),
6973
6974 options: from.options().map(::fidl_next::TakeFrom::take_from),
6975
6976 root_hash: from.root_hash().map(::fidl_next::TakeFrom::take_from),
6977
6978 verity_enabled: from.verity_enabled().map(::fidl_next::TakeFrom::take_from),
6979 }
6980 }
6981}
6982
6983#[repr(C)]
6985pub struct WireImmutableNodeAttributes {
6986 table: ::fidl_next::WireTable,
6987}
6988
6989unsafe impl ::fidl_next::ZeroPadding for WireImmutableNodeAttributes {
6990 #[inline]
6991 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
6992 ::fidl_next::munge!(let Self { table } = out);
6993 ::fidl_next::WireTable::zero_padding(table);
6994 }
6995}
6996
6997unsafe impl<___D> ::fidl_next::Decode<___D> for WireImmutableNodeAttributes
6998where
6999 ___D: ::fidl_next::Decoder + ?Sized,
7000{
7001 fn decode(
7002 slot: ::fidl_next::Slot<'_, Self>,
7003 decoder: &mut ___D,
7004 ) -> Result<(), ::fidl_next::DecodeError> {
7005 ::fidl_next::munge!(let Self { table } = slot);
7006
7007 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
7008 match ordinal {
7009 0 => unsafe { ::core::hint::unreachable_unchecked() },
7010
7011 1 => {
7012 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireNodeProtocolKinds>(
7013 slot.as_mut(),
7014 decoder,
7015 )?;
7016
7017 Ok(())
7018 }
7019
7020 2 => {
7021 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireOperations>(
7022 slot.as_mut(),
7023 decoder,
7024 )?;
7025
7026 Ok(())
7027 }
7028
7029 3 => {
7030 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
7031 slot.as_mut(),
7032 decoder,
7033 )?;
7034
7035 Ok(())
7036 }
7037
7038 4 => {
7039 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
7040 slot.as_mut(),
7041 decoder,
7042 )?;
7043
7044 Ok(())
7045 }
7046
7047 5 => {
7048 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
7049 slot.as_mut(),
7050 decoder,
7051 )?;
7052
7053 Ok(())
7054 }
7055
7056 6 => {
7057 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
7058 slot.as_mut(),
7059 decoder,
7060 )?;
7061
7062 Ok(())
7063 }
7064
7065 7 => {
7066 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireU64>(
7067 slot.as_mut(),
7068 decoder,
7069 )?;
7070
7071 Ok(())
7072 }
7073
7074 8 => {
7075 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireVerificationOptions>(
7076 slot.as_mut(),
7077 decoder,
7078 )?;
7079
7080 Ok(())
7081 }
7082
7083 9 => {
7084 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireVector<u8>>(
7085 slot.as_mut(),
7086 decoder,
7087 )?;
7088
7089 let root_hash = unsafe {
7090 slot.deref_unchecked().deref_unchecked::<::fidl_next::WireVector<u8>>()
7091 };
7092
7093 if root_hash.len() > 64 {
7094 return Err(::fidl_next::DecodeError::VectorTooLong {
7095 size: root_hash.len() as u64,
7096 limit: 64,
7097 });
7098 }
7099
7100 Ok(())
7101 }
7102
7103 10 => {
7104 ::fidl_next::WireEnvelope::decode_as::<___D, bool>(slot.as_mut(), decoder)?;
7105
7106 Ok(())
7107 }
7108
7109 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
7110 }
7111 })
7112 }
7113}
7114
7115impl WireImmutableNodeAttributes {
7116 pub fn protocols(&self) -> Option<&crate::WireNodeProtocolKinds> {
7117 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
7118 }
7119
7120 pub fn abilities(&self) -> Option<&crate::WireOperations> {
7121 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
7122 }
7123
7124 pub fn content_size(&self) -> Option<&::fidl_next::WireU64> {
7125 unsafe { Some(self.table.get(3)?.deref_unchecked()) }
7126 }
7127
7128 pub fn storage_size(&self) -> Option<&::fidl_next::WireU64> {
7129 unsafe { Some(self.table.get(4)?.deref_unchecked()) }
7130 }
7131
7132 pub fn link_count(&self) -> Option<&::fidl_next::WireU64> {
7133 unsafe { Some(self.table.get(5)?.deref_unchecked()) }
7134 }
7135
7136 pub fn id(&self) -> Option<&::fidl_next::WireU64> {
7137 unsafe { Some(self.table.get(6)?.deref_unchecked()) }
7138 }
7139
7140 pub fn change_time(&self) -> Option<&::fidl_next::WireU64> {
7141 unsafe { Some(self.table.get(7)?.deref_unchecked()) }
7142 }
7143
7144 pub fn options(&self) -> Option<&crate::WireVerificationOptions> {
7145 unsafe { Some(self.table.get(8)?.deref_unchecked()) }
7146 }
7147
7148 pub fn root_hash(&self) -> Option<&::fidl_next::WireVector<u8>> {
7149 unsafe { Some(self.table.get(9)?.deref_unchecked()) }
7150 }
7151
7152 pub fn verity_enabled(&self) -> Option<&bool> {
7153 unsafe { Some(self.table.get(10)?.deref_unchecked()) }
7154 }
7155}
7156
7157impl ::core::fmt::Debug for WireImmutableNodeAttributes {
7158 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
7159 f.debug_struct("ImmutableNodeAttributes")
7160 .field("protocols", &self.protocols())
7161 .field("abilities", &self.abilities())
7162 .field("content_size", &self.content_size())
7163 .field("storage_size", &self.storage_size())
7164 .field("link_count", &self.link_count())
7165 .field("id", &self.id())
7166 .field("change_time", &self.change_time())
7167 .field("options", &self.options())
7168 .field("root_hash", &self.root_hash())
7169 .field("verity_enabled", &self.verity_enabled())
7170 .finish()
7171 }
7172}
7173
7174#[derive(Clone, Debug)]
7175pub struct NodeAttributes2 {
7176 pub mutable_attributes: crate::MutableNodeAttributes,
7177
7178 pub immutable_attributes: crate::ImmutableNodeAttributes,
7179}
7180
7181impl ::fidl_next::Encodable for NodeAttributes2 {
7182 type Encoded = WireNodeAttributes2;
7183}
7184
7185unsafe impl<___E> ::fidl_next::Encode<___E> for NodeAttributes2
7186where
7187 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
7188
7189 ___E: ::fidl_next::Encoder,
7190{
7191 #[inline]
7192 fn encode(
7193 &mut self,
7194 encoder: &mut ___E,
7195 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
7196 ) -> Result<(), ::fidl_next::EncodeError> {
7197 ::fidl_next::munge! {
7198 let Self::Encoded {
7199 mutable_attributes,
7200 immutable_attributes,
7201
7202 } = out;
7203 }
7204
7205 ::fidl_next::Encode::encode(&mut self.mutable_attributes, encoder, mutable_attributes)?;
7206
7207 ::fidl_next::Encode::encode(&mut self.immutable_attributes, encoder, immutable_attributes)?;
7208
7209 Ok(())
7210 }
7211}
7212
7213impl ::fidl_next::EncodableOption for Box<NodeAttributes2> {
7214 type EncodedOption = ::fidl_next::WireBox<WireNodeAttributes2>;
7215}
7216
7217unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeAttributes2>
7218where
7219 ___E: ::fidl_next::Encoder + ?Sized,
7220 NodeAttributes2: ::fidl_next::Encode<___E>,
7221{
7222 #[inline]
7223 fn encode_option(
7224 this: Option<&mut Self>,
7225 encoder: &mut ___E,
7226 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
7227 ) -> Result<(), ::fidl_next::EncodeError> {
7228 if let Some(inner) = this {
7229 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
7230 ::fidl_next::WireBox::encode_present(out);
7231 } else {
7232 ::fidl_next::WireBox::encode_absent(out);
7233 }
7234
7235 Ok(())
7236 }
7237}
7238
7239impl ::fidl_next::TakeFrom<WireNodeAttributes2> for NodeAttributes2 {
7240 #[inline]
7241 fn take_from(from: &WireNodeAttributes2) -> Self {
7242 Self {
7243 mutable_attributes: ::fidl_next::TakeFrom::take_from(&from.mutable_attributes),
7244
7245 immutable_attributes: ::fidl_next::TakeFrom::take_from(&from.immutable_attributes),
7246 }
7247 }
7248}
7249
7250#[derive(Debug)]
7252#[repr(C)]
7253pub struct WireNodeAttributes2 {
7254 pub mutable_attributes: crate::WireMutableNodeAttributes,
7255
7256 pub immutable_attributes: crate::WireImmutableNodeAttributes,
7257}
7258
7259unsafe impl ::fidl_next::ZeroPadding for WireNodeAttributes2 {
7260 #[inline]
7261 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
7262}
7263
7264unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeAttributes2
7265where
7266 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
7267
7268 ___D: ::fidl_next::Decoder,
7269{
7270 fn decode(
7271 slot: ::fidl_next::Slot<'_, Self>,
7272 decoder: &mut ___D,
7273 ) -> Result<(), ::fidl_next::DecodeError> {
7274 ::fidl_next::munge! {
7275 let Self {
7276 mut mutable_attributes,
7277 mut immutable_attributes,
7278
7279 } = slot;
7280 }
7281
7282 ::fidl_next::Decode::decode(mutable_attributes.as_mut(), decoder)?;
7283
7284 ::fidl_next::Decode::decode(immutable_attributes.as_mut(), decoder)?;
7285
7286 Ok(())
7287 }
7288}
7289
7290#[doc = " Information that describes the target node.\n"]
7291#[derive(Clone, Debug)]
7292pub struct NodeInfo {
7293 pub attributes: Option<crate::NodeAttributes2>,
7294}
7295
7296impl NodeInfo {
7297 fn __max_ordinal(&self) -> usize {
7298 if self.attributes.is_some() {
7299 return 1;
7300 }
7301
7302 0
7303 }
7304}
7305
7306impl ::fidl_next::Encodable for NodeInfo {
7307 type Encoded = WireNodeInfo;
7308}
7309
7310unsafe impl<___E> ::fidl_next::Encode<___E> for NodeInfo
7311where
7312 ___E: ::fidl_next::Encoder + ?Sized,
7313{
7314 #[inline]
7315 fn encode(
7316 &mut self,
7317 encoder: &mut ___E,
7318 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
7319 ) -> Result<(), ::fidl_next::EncodeError> {
7320 ::fidl_next::munge!(let WireNodeInfo { table } = out);
7321
7322 let max_ord = self.__max_ordinal();
7323
7324 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
7325 ::fidl_next::ZeroPadding::zero_padding(&mut out);
7326
7327 let mut preallocated =
7328 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
7329
7330 for i in 1..=max_ord {
7331 match i {
7332 1 => {
7333 if let Some(attributes) = &mut self.attributes {
7334 ::fidl_next::WireEnvelope::encode_value(
7335 attributes,
7336 preallocated.encoder,
7337 &mut out,
7338 )?;
7339 } else {
7340 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7341 }
7342 }
7343
7344 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
7345 }
7346 unsafe {
7347 preallocated.write_next(out.assume_init_ref());
7348 }
7349 }
7350
7351 ::fidl_next::WireTable::encode_len(table, max_ord);
7352
7353 Ok(())
7354 }
7355}
7356
7357impl ::fidl_next::TakeFrom<WireNodeInfo> for NodeInfo {
7358 #[inline]
7359 fn take_from(from: &WireNodeInfo) -> Self {
7360 Self { attributes: from.attributes().map(::fidl_next::TakeFrom::take_from) }
7361 }
7362}
7363
7364#[repr(C)]
7366pub struct WireNodeInfo {
7367 table: ::fidl_next::WireTable,
7368}
7369
7370unsafe impl ::fidl_next::ZeroPadding for WireNodeInfo {
7371 #[inline]
7372 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
7373 ::fidl_next::munge!(let Self { table } = out);
7374 ::fidl_next::WireTable::zero_padding(table);
7375 }
7376}
7377
7378unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeInfo
7379where
7380 ___D: ::fidl_next::Decoder + ?Sized,
7381{
7382 fn decode(
7383 slot: ::fidl_next::Slot<'_, Self>,
7384 decoder: &mut ___D,
7385 ) -> Result<(), ::fidl_next::DecodeError> {
7386 ::fidl_next::munge!(let Self { table } = slot);
7387
7388 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
7389 match ordinal {
7390 0 => unsafe { ::core::hint::unreachable_unchecked() },
7391
7392 1 => {
7393 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireNodeAttributes2>(
7394 slot.as_mut(),
7395 decoder,
7396 )?;
7397
7398 Ok(())
7399 }
7400
7401 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
7402 }
7403 })
7404 }
7405}
7406
7407impl WireNodeInfo {
7408 pub fn attributes(&self) -> Option<&crate::WireNodeAttributes2> {
7409 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
7410 }
7411}
7412
7413impl ::core::fmt::Debug for WireNodeInfo {
7414 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
7415 f.debug_struct("NodeInfo").field("attributes", &self.attributes()).finish()
7416 }
7417}
7418
7419#[derive(Clone, Debug)]
7420pub struct DirectoryInfo {
7421 pub attributes: Option<crate::NodeAttributes2>,
7422}
7423
7424impl DirectoryInfo {
7425 fn __max_ordinal(&self) -> usize {
7426 if self.attributes.is_some() {
7427 return 1;
7428 }
7429
7430 0
7431 }
7432}
7433
7434impl ::fidl_next::Encodable for DirectoryInfo {
7435 type Encoded = WireDirectoryInfo;
7436}
7437
7438unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryInfo
7439where
7440 ___E: ::fidl_next::Encoder + ?Sized,
7441{
7442 #[inline]
7443 fn encode(
7444 &mut self,
7445 encoder: &mut ___E,
7446 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
7447 ) -> Result<(), ::fidl_next::EncodeError> {
7448 ::fidl_next::munge!(let WireDirectoryInfo { table } = out);
7449
7450 let max_ord = self.__max_ordinal();
7451
7452 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
7453 ::fidl_next::ZeroPadding::zero_padding(&mut out);
7454
7455 let mut preallocated =
7456 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
7457
7458 for i in 1..=max_ord {
7459 match i {
7460 1 => {
7461 if let Some(attributes) = &mut self.attributes {
7462 ::fidl_next::WireEnvelope::encode_value(
7463 attributes,
7464 preallocated.encoder,
7465 &mut out,
7466 )?;
7467 } else {
7468 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7469 }
7470 }
7471
7472 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
7473 }
7474 unsafe {
7475 preallocated.write_next(out.assume_init_ref());
7476 }
7477 }
7478
7479 ::fidl_next::WireTable::encode_len(table, max_ord);
7480
7481 Ok(())
7482 }
7483}
7484
7485impl ::fidl_next::TakeFrom<WireDirectoryInfo> for DirectoryInfo {
7486 #[inline]
7487 fn take_from(from: &WireDirectoryInfo) -> Self {
7488 Self { attributes: from.attributes().map(::fidl_next::TakeFrom::take_from) }
7489 }
7490}
7491
7492#[repr(C)]
7494pub struct WireDirectoryInfo {
7495 table: ::fidl_next::WireTable,
7496}
7497
7498unsafe impl ::fidl_next::ZeroPadding for WireDirectoryInfo {
7499 #[inline]
7500 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
7501 ::fidl_next::munge!(let Self { table } = out);
7502 ::fidl_next::WireTable::zero_padding(table);
7503 }
7504}
7505
7506unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryInfo
7507where
7508 ___D: ::fidl_next::Decoder + ?Sized,
7509{
7510 fn decode(
7511 slot: ::fidl_next::Slot<'_, Self>,
7512 decoder: &mut ___D,
7513 ) -> Result<(), ::fidl_next::DecodeError> {
7514 ::fidl_next::munge!(let Self { table } = slot);
7515
7516 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
7517 match ordinal {
7518 0 => unsafe { ::core::hint::unreachable_unchecked() },
7519
7520 1 => {
7521 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireNodeAttributes2>(
7522 slot.as_mut(),
7523 decoder,
7524 )?;
7525
7526 Ok(())
7527 }
7528
7529 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
7530 }
7531 })
7532 }
7533}
7534
7535impl WireDirectoryInfo {
7536 pub fn attributes(&self) -> Option<&crate::WireNodeAttributes2> {
7537 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
7538 }
7539}
7540
7541impl ::core::fmt::Debug for WireDirectoryInfo {
7542 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
7543 f.debug_struct("DirectoryInfo").field("attributes", &self.attributes()).finish()
7544 }
7545}
7546
7547#[doc = " Auxiliary data for the file representation of a node.\n"]
7548#[derive(Debug)]
7549pub struct FileInfo {
7550 pub is_append: Option<bool>,
7551
7552 pub observer: Option<::fidl_next::fuchsia::zx::Handle>,
7553
7554 pub stream: Option<::fidl_next::fuchsia::zx::Handle>,
7555
7556 pub attributes: Option<crate::NodeAttributes2>,
7557}
7558
7559impl FileInfo {
7560 fn __max_ordinal(&self) -> usize {
7561 if self.is_append.is_some() {
7562 return 1;
7563 }
7564
7565 if self.observer.is_some() {
7566 return 2;
7567 }
7568
7569 if self.stream.is_some() {
7570 return 3;
7571 }
7572
7573 if self.attributes.is_some() {
7574 return 4;
7575 }
7576
7577 0
7578 }
7579}
7580
7581impl ::fidl_next::Encodable for FileInfo {
7582 type Encoded = WireFileInfo;
7583}
7584
7585unsafe impl<___E> ::fidl_next::Encode<___E> for FileInfo
7586where
7587 ___E: ::fidl_next::Encoder + ?Sized,
7588
7589 ___E: ::fidl_next::fuchsia::HandleEncoder,
7590{
7591 #[inline]
7592 fn encode(
7593 &mut self,
7594 encoder: &mut ___E,
7595 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
7596 ) -> Result<(), ::fidl_next::EncodeError> {
7597 ::fidl_next::munge!(let WireFileInfo { table } = out);
7598
7599 let max_ord = self.__max_ordinal();
7600
7601 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
7602 ::fidl_next::ZeroPadding::zero_padding(&mut out);
7603
7604 let mut preallocated =
7605 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
7606
7607 for i in 1..=max_ord {
7608 match i {
7609 4 => {
7610 if let Some(attributes) = &mut self.attributes {
7611 ::fidl_next::WireEnvelope::encode_value(
7612 attributes,
7613 preallocated.encoder,
7614 &mut out,
7615 )?;
7616 } else {
7617 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7618 }
7619 }
7620
7621 3 => {
7622 if let Some(stream) = &mut self.stream {
7623 ::fidl_next::WireEnvelope::encode_value(
7624 stream,
7625 preallocated.encoder,
7626 &mut out,
7627 )?;
7628 } else {
7629 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7630 }
7631 }
7632
7633 2 => {
7634 if let Some(observer) = &mut self.observer {
7635 ::fidl_next::WireEnvelope::encode_value(
7636 observer,
7637 preallocated.encoder,
7638 &mut out,
7639 )?;
7640 } else {
7641 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7642 }
7643 }
7644
7645 1 => {
7646 if let Some(is_append) = &mut self.is_append {
7647 ::fidl_next::WireEnvelope::encode_value(
7648 is_append,
7649 preallocated.encoder,
7650 &mut out,
7651 )?;
7652 } else {
7653 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7654 }
7655 }
7656
7657 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
7658 }
7659 unsafe {
7660 preallocated.write_next(out.assume_init_ref());
7661 }
7662 }
7663
7664 ::fidl_next::WireTable::encode_len(table, max_ord);
7665
7666 Ok(())
7667 }
7668}
7669
7670impl ::fidl_next::TakeFrom<WireFileInfo> for FileInfo {
7671 #[inline]
7672 fn take_from(from: &WireFileInfo) -> Self {
7673 Self {
7674 is_append: from.is_append().map(::fidl_next::TakeFrom::take_from),
7675
7676 observer: from.observer().map(::fidl_next::TakeFrom::take_from),
7677
7678 stream: from.stream().map(::fidl_next::TakeFrom::take_from),
7679
7680 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
7681 }
7682 }
7683}
7684
7685#[repr(C)]
7687pub struct WireFileInfo {
7688 table: ::fidl_next::WireTable,
7689}
7690
7691unsafe impl ::fidl_next::ZeroPadding for WireFileInfo {
7692 #[inline]
7693 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
7694 ::fidl_next::munge!(let Self { table } = out);
7695 ::fidl_next::WireTable::zero_padding(table);
7696 }
7697}
7698
7699unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileInfo
7700where
7701 ___D: ::fidl_next::Decoder + ?Sized,
7702
7703 ___D: ::fidl_next::fuchsia::HandleDecoder,
7704{
7705 fn decode(
7706 slot: ::fidl_next::Slot<'_, Self>,
7707 decoder: &mut ___D,
7708 ) -> Result<(), ::fidl_next::DecodeError> {
7709 ::fidl_next::munge!(let Self { table } = slot);
7710
7711 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
7712 match ordinal {
7713 0 => unsafe { ::core::hint::unreachable_unchecked() },
7714
7715 1 => {
7716 ::fidl_next::WireEnvelope::decode_as::<___D, bool>(slot.as_mut(), decoder)?;
7717
7718 Ok(())
7719 }
7720
7721 2 => {
7722 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::fuchsia::WireHandle>(
7723 slot.as_mut(),
7724 decoder,
7725 )?;
7726
7727 Ok(())
7728 }
7729
7730 3 => {
7731 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::fuchsia::WireHandle>(
7732 slot.as_mut(),
7733 decoder,
7734 )?;
7735
7736 Ok(())
7737 }
7738
7739 4 => {
7740 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireNodeAttributes2>(
7741 slot.as_mut(),
7742 decoder,
7743 )?;
7744
7745 Ok(())
7746 }
7747
7748 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
7749 }
7750 })
7751 }
7752}
7753
7754impl WireFileInfo {
7755 pub fn is_append(&self) -> Option<&bool> {
7756 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
7757 }
7758
7759 pub fn observer(&self) -> Option<&::fidl_next::fuchsia::WireHandle> {
7760 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
7761 }
7762
7763 pub fn stream(&self) -> Option<&::fidl_next::fuchsia::WireHandle> {
7764 unsafe { Some(self.table.get(3)?.deref_unchecked()) }
7765 }
7766
7767 pub fn attributes(&self) -> Option<&crate::WireNodeAttributes2> {
7768 unsafe { Some(self.table.get(4)?.deref_unchecked()) }
7769 }
7770}
7771
7772impl ::core::fmt::Debug for WireFileInfo {
7773 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
7774 f.debug_struct("FileInfo")
7775 .field("is_append", &self.is_append())
7776 .field("observer", &self.observer())
7777 .field("stream", &self.stream())
7778 .field("attributes", &self.attributes())
7779 .finish()
7780 }
7781}
7782
7783#[derive(Clone, Debug)]
7784pub struct SymlinkInfo {
7785 pub target: Option<Vec<u8>>,
7786
7787 pub attributes: Option<crate::NodeAttributes2>,
7788}
7789
7790impl SymlinkInfo {
7791 fn __max_ordinal(&self) -> usize {
7792 if self.target.is_some() {
7793 return 1;
7794 }
7795
7796 if self.attributes.is_some() {
7797 return 2;
7798 }
7799
7800 0
7801 }
7802}
7803
7804impl ::fidl_next::Encodable for SymlinkInfo {
7805 type Encoded = WireSymlinkInfo;
7806}
7807
7808unsafe impl<___E> ::fidl_next::Encode<___E> for SymlinkInfo
7809where
7810 ___E: ::fidl_next::Encoder + ?Sized,
7811{
7812 #[inline]
7813 fn encode(
7814 &mut self,
7815 encoder: &mut ___E,
7816 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
7817 ) -> Result<(), ::fidl_next::EncodeError> {
7818 ::fidl_next::munge!(let WireSymlinkInfo { table } = out);
7819
7820 let max_ord = self.__max_ordinal();
7821
7822 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
7823 ::fidl_next::ZeroPadding::zero_padding(&mut out);
7824
7825 let mut preallocated =
7826 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
7827
7828 for i in 1..=max_ord {
7829 match i {
7830 2 => {
7831 if let Some(attributes) = &mut self.attributes {
7832 ::fidl_next::WireEnvelope::encode_value(
7833 attributes,
7834 preallocated.encoder,
7835 &mut out,
7836 )?;
7837 } else {
7838 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7839 }
7840 }
7841
7842 1 => {
7843 if let Some(target) = &mut self.target {
7844 ::fidl_next::WireEnvelope::encode_value(
7845 target,
7846 preallocated.encoder,
7847 &mut out,
7848 )?;
7849 } else {
7850 ::fidl_next::WireEnvelope::encode_zero(&mut out)
7851 }
7852 }
7853
7854 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
7855 }
7856 unsafe {
7857 preallocated.write_next(out.assume_init_ref());
7858 }
7859 }
7860
7861 ::fidl_next::WireTable::encode_len(table, max_ord);
7862
7863 Ok(())
7864 }
7865}
7866
7867impl ::fidl_next::TakeFrom<WireSymlinkInfo> for SymlinkInfo {
7868 #[inline]
7869 fn take_from(from: &WireSymlinkInfo) -> Self {
7870 Self {
7871 target: from.target().map(::fidl_next::TakeFrom::take_from),
7872
7873 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
7874 }
7875 }
7876}
7877
7878#[repr(C)]
7880pub struct WireSymlinkInfo {
7881 table: ::fidl_next::WireTable,
7882}
7883
7884unsafe impl ::fidl_next::ZeroPadding for WireSymlinkInfo {
7885 #[inline]
7886 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
7887 ::fidl_next::munge!(let Self { table } = out);
7888 ::fidl_next::WireTable::zero_padding(table);
7889 }
7890}
7891
7892unsafe impl<___D> ::fidl_next::Decode<___D> for WireSymlinkInfo
7893where
7894 ___D: ::fidl_next::Decoder + ?Sized,
7895{
7896 fn decode(
7897 slot: ::fidl_next::Slot<'_, Self>,
7898 decoder: &mut ___D,
7899 ) -> Result<(), ::fidl_next::DecodeError> {
7900 ::fidl_next::munge!(let Self { table } = slot);
7901
7902 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
7903 match ordinal {
7904 0 => unsafe { ::core::hint::unreachable_unchecked() },
7905
7906 1 => {
7907 ::fidl_next::WireEnvelope::decode_as::<___D, ::fidl_next::WireVector<u8>>(
7908 slot.as_mut(),
7909 decoder,
7910 )?;
7911
7912 let target = unsafe {
7913 slot.deref_unchecked().deref_unchecked::<::fidl_next::WireVector<u8>>()
7914 };
7915
7916 if target.len() > 4095 {
7917 return Err(::fidl_next::DecodeError::VectorTooLong {
7918 size: target.len() as u64,
7919 limit: 4095,
7920 });
7921 }
7922
7923 Ok(())
7924 }
7925
7926 2 => {
7927 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireNodeAttributes2>(
7928 slot.as_mut(),
7929 decoder,
7930 )?;
7931
7932 Ok(())
7933 }
7934
7935 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
7936 }
7937 })
7938 }
7939}
7940
7941impl WireSymlinkInfo {
7942 pub fn target(&self) -> Option<&::fidl_next::WireVector<u8>> {
7943 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
7944 }
7945
7946 pub fn attributes(&self) -> Option<&crate::WireNodeAttributes2> {
7947 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
7948 }
7949}
7950
7951impl ::core::fmt::Debug for WireSymlinkInfo {
7952 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
7953 f.debug_struct("SymlinkInfo")
7954 .field("target", &self.target())
7955 .field("attributes", &self.attributes())
7956 .finish()
7957 }
7958}
7959
7960#[derive(Debug)]
7961pub enum Representation {
7962 Node(crate::NodeInfo),
7963
7964 Directory(crate::DirectoryInfo),
7965
7966 File(crate::FileInfo),
7967
7968 Symlink(crate::SymlinkInfo),
7969
7970 UnknownOrdinal_(u64),
7971}
7972
7973impl ::fidl_next::Encodable for Representation {
7974 type Encoded = WireRepresentation;
7975}
7976
7977unsafe impl<___E> ::fidl_next::Encode<___E> for Representation
7978where
7979 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
7980
7981 ___E: ::fidl_next::Encoder,
7982
7983 ___E: ::fidl_next::fuchsia::HandleEncoder,
7984{
7985 #[inline]
7986 fn encode(
7987 &mut self,
7988 encoder: &mut ___E,
7989 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
7990 ) -> Result<(), ::fidl_next::EncodeError> {
7991 ::fidl_next::munge!(let WireRepresentation { raw } = out);
7992
7993 match self {
7994 Self::Node(value) => ::fidl_next::RawWireUnion::encode_as::<___E, crate::NodeInfo>(
7995 value, 1, encoder, raw,
7996 )?,
7997
7998 Self::Directory(value) => ::fidl_next::RawWireUnion::encode_as::<
7999 ___E,
8000 crate::DirectoryInfo,
8001 >(value, 2, encoder, raw)?,
8002
8003 Self::File(value) => ::fidl_next::RawWireUnion::encode_as::<___E, crate::FileInfo>(
8004 value, 3, encoder, raw,
8005 )?,
8006
8007 Self::Symlink(value) => {
8008 ::fidl_next::RawWireUnion::encode_as::<___E, crate::SymlinkInfo>(
8009 value, 4, encoder, raw,
8010 )?
8011 }
8012
8013 Self::UnknownOrdinal_(ordinal) => {
8014 return Err(::fidl_next::EncodeError::UnknownUnionOrdinal(*ordinal as usize))
8015 }
8016 }
8017
8018 Ok(())
8019 }
8020}
8021
8022impl ::fidl_next::EncodableOption for Box<Representation> {
8023 type EncodedOption = WireOptionalRepresentation;
8024}
8025
8026unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<Representation>
8027where
8028 ___E: ?Sized,
8029 Representation: ::fidl_next::Encode<___E>,
8030{
8031 #[inline]
8032 fn encode_option(
8033 this: Option<&mut Self>,
8034 encoder: &mut ___E,
8035 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
8036 ) -> Result<(), ::fidl_next::EncodeError> {
8037 ::fidl_next::munge!(let WireOptionalRepresentation { raw } = &mut *out);
8038
8039 if let Some(inner) = this {
8040 let value_out = unsafe { &mut *out.as_mut_ptr().cast() };
8041 ::fidl_next::Encode::encode(&mut **inner, encoder, value_out)?;
8042 } else {
8043 ::fidl_next::RawWireUnion::encode_absent(raw);
8044 }
8045
8046 Ok(())
8047 }
8048}
8049
8050impl ::fidl_next::TakeFrom<WireRepresentation> for Representation {
8051 #[inline]
8052 fn take_from(from: &WireRepresentation) -> Self {
8053 match from.raw.ordinal() {
8054 1 => Self::Node(::fidl_next::TakeFrom::take_from(unsafe {
8055 from.raw.get().deref_unchecked::<crate::WireNodeInfo>()
8056 })),
8057
8058 2 => Self::Directory(::fidl_next::TakeFrom::take_from(unsafe {
8059 from.raw.get().deref_unchecked::<crate::WireDirectoryInfo>()
8060 })),
8061
8062 3 => Self::File(::fidl_next::TakeFrom::take_from(unsafe {
8063 from.raw.get().deref_unchecked::<crate::WireFileInfo>()
8064 })),
8065
8066 4 => Self::Symlink(::fidl_next::TakeFrom::take_from(unsafe {
8067 from.raw.get().deref_unchecked::<crate::WireSymlinkInfo>()
8068 })),
8069
8070 _ => unsafe { ::core::hint::unreachable_unchecked() },
8071 }
8072 }
8073}
8074
8075impl ::fidl_next::TakeFrom<WireOptionalRepresentation> for Option<Box<Representation>> {
8076 #[inline]
8077 fn take_from(from: &WireOptionalRepresentation) -> Self {
8078 if let Some(inner) = from.as_ref() {
8079 Some(::fidl_next::TakeFrom::take_from(inner))
8080 } else {
8081 None
8082 }
8083 }
8084}
8085
8086#[repr(transparent)]
8088pub struct WireRepresentation {
8089 raw: ::fidl_next::RawWireUnion,
8090}
8091
8092unsafe impl ::fidl_next::ZeroPadding for WireRepresentation {
8093 #[inline]
8094 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
8095 ::fidl_next::munge!(let Self { raw } = out);
8096 ::fidl_next::RawWireUnion::zero_padding(raw);
8097 }
8098}
8099
8100pub mod representation {
8101 pub enum Ref<'union> {
8102 Node(&'union crate::WireNodeInfo),
8103
8104 Directory(&'union crate::WireDirectoryInfo),
8105
8106 File(&'union crate::WireFileInfo),
8107
8108 Symlink(&'union crate::WireSymlinkInfo),
8109
8110 UnknownOrdinal_(u64),
8111 }
8112}
8113
8114impl WireRepresentation {
8115 pub fn as_ref(&self) -> crate::representation::Ref<'_> {
8116 match self.raw.ordinal() {
8117 1 => crate::representation::Ref::Node(unsafe {
8118 self.raw.get().deref_unchecked::<crate::WireNodeInfo>()
8119 }),
8120
8121 2 => crate::representation::Ref::Directory(unsafe {
8122 self.raw.get().deref_unchecked::<crate::WireDirectoryInfo>()
8123 }),
8124
8125 3 => crate::representation::Ref::File(unsafe {
8126 self.raw.get().deref_unchecked::<crate::WireFileInfo>()
8127 }),
8128
8129 4 => crate::representation::Ref::Symlink(unsafe {
8130 self.raw.get().deref_unchecked::<crate::WireSymlinkInfo>()
8131 }),
8132
8133 unknown => crate::representation::Ref::UnknownOrdinal_(unknown),
8134 }
8135 }
8136}
8137
8138unsafe impl<___D> ::fidl_next::Decode<___D> for WireRepresentation
8139where
8140 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
8141
8142 ___D: ::fidl_next::Decoder,
8143
8144 ___D: ::fidl_next::fuchsia::HandleDecoder,
8145{
8146 fn decode(
8147 mut slot: ::fidl_next::Slot<'_, Self>,
8148 decoder: &mut ___D,
8149 ) -> Result<(), ::fidl_next::DecodeError> {
8150 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
8151 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
8152 1 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireNodeInfo>(raw, decoder)?,
8153
8154 2 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireDirectoryInfo>(
8155 raw, decoder,
8156 )?,
8157
8158 3 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireFileInfo>(raw, decoder)?,
8159
8160 4 => {
8161 ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireSymlinkInfo>(raw, decoder)?
8162 }
8163
8164 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
8165 }
8166
8167 Ok(())
8168 }
8169}
8170
8171impl ::core::fmt::Debug for WireRepresentation {
8172 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
8173 match self.raw.ordinal() {
8174 1 => unsafe { self.raw.get().deref_unchecked::<crate::WireNodeInfo>().fmt(f) },
8175 2 => unsafe { self.raw.get().deref_unchecked::<crate::WireDirectoryInfo>().fmt(f) },
8176 3 => unsafe { self.raw.get().deref_unchecked::<crate::WireFileInfo>().fmt(f) },
8177 4 => unsafe { self.raw.get().deref_unchecked::<crate::WireSymlinkInfo>().fmt(f) },
8178 _ => unsafe { ::core::hint::unreachable_unchecked() },
8179 }
8180 }
8181}
8182
8183#[repr(transparent)]
8184pub struct WireOptionalRepresentation {
8185 raw: ::fidl_next::RawWireUnion,
8186}
8187
8188unsafe impl ::fidl_next::ZeroPadding for WireOptionalRepresentation {
8189 #[inline]
8190 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
8191 ::fidl_next::munge!(let Self { raw } = out);
8192 ::fidl_next::RawWireUnion::zero_padding(raw);
8193 }
8194}
8195
8196impl WireOptionalRepresentation {
8197 pub fn is_some(&self) -> bool {
8198 self.raw.is_some()
8199 }
8200
8201 pub fn is_none(&self) -> bool {
8202 self.raw.is_none()
8203 }
8204
8205 pub fn as_ref(&self) -> Option<&WireRepresentation> {
8206 if self.is_some() {
8207 Some(unsafe { &*(self as *const Self).cast() })
8208 } else {
8209 None
8210 }
8211 }
8212}
8213
8214unsafe impl<___D> ::fidl_next::Decode<___D> for WireOptionalRepresentation
8215where
8216 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
8217
8218 ___D: ::fidl_next::Decoder,
8219
8220 ___D: ::fidl_next::fuchsia::HandleDecoder,
8221{
8222 fn decode(
8223 mut slot: ::fidl_next::Slot<'_, Self>,
8224 decoder: &mut ___D,
8225 ) -> Result<(), ::fidl_next::DecodeError> {
8226 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
8227 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
8228 1 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireNodeInfo>(raw, decoder)?,
8229
8230 2 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireDirectoryInfo>(
8231 raw, decoder,
8232 )?,
8233
8234 3 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireFileInfo>(raw, decoder)?,
8235
8236 4 => {
8237 ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireSymlinkInfo>(raw, decoder)?
8238 }
8239
8240 0 => ::fidl_next::RawWireUnion::decode_absent(raw)?,
8241 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
8242 }
8243
8244 Ok(())
8245 }
8246}
8247
8248impl ::core::fmt::Debug for WireOptionalRepresentation {
8249 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
8250 self.as_ref().fmt(f)
8251 }
8252}
8253
8254::fidl_next::bitflags! {
8255 #[derive(
8256 Clone,
8257 Copy,
8258 Debug,
8259 PartialEq,
8260 Eq,
8261 Hash,
8262 )]
8263 pub struct NodeAttributesQuery: u64 {
8264 #[doc = " Requests [`NodeAttributes.protocols`].\n"]const PROTOCOLS = 1;
8265 #[doc = " Requests [`NodeAttributes.abilities`].\n"]const ABILITIES = 2;
8266 #[doc = " Requests [`NodeAttributes.content_size`].\n"]const CONTENT_SIZE = 4;
8267 #[doc = " Requests [`NodeAttributes.storage_size`].\n"]const STORAGE_SIZE = 8;
8268 #[doc = " Requests [`NodeAttributes.link_count`].\n"]const LINK_COUNT = 16;
8269 #[doc = " Requests [`NodeAttributes.id`].\n"]const ID = 32;
8270 #[doc = " Requests [`NodeAttributes.creation_time`].\n"]const CREATION_TIME = 64;
8271 #[doc = " Requests [`NodeAttributes.modification_time`].\n"]const MODIFICATION_TIME = 128;
8272 #[doc = " Posix attributes.\n"]const MODE = 256;
8273 const UID = 512;
8274 const GID = 1024;
8275 const RDEV = 2048;
8276 const ACCESS_TIME = 4096;
8277 const CHANGE_TIME = 8192;
8278 #[doc = " Verity attributes.\n"]const OPTIONS = 16384;
8279 const ROOT_HASH = 32768;
8280 const VERITY_ENABLED = 65536;
8281 #[doc = " Casefold (case-insensitive filename) support.\n When true, file lookups will be case-insensitive but case-preserving. i.e. \"Foo\" will\n be stored verbatim but can be opened as \"foo\", \"fOO\", etc. Casefolding is done in\n accordance to the Unicode 12 NFD normalization and casefolding standard.\n"]const CASEFOLD = 131072;
8282 #[doc = " Requests [`MutableNodeAttributes.selinux_context`]. See that field for more detail.\n"]const SELINUX_CONTEXT = 262144;
8283 #[doc = " fscrypt attribute.\n"]const WRAPPING_KEY_ID = 524288;
8284 #[doc = " When this is queried in [`fuchsia.io/Node.GetAttributes`], it indicates to the filesystem\n that this node has been accessed and is pending an access time update given that any one of\n the following conditions are met:\n * current_access_time <= current_modification_time\n * current_access_time <= current_change_time\n * current_access_time < current_time - duration(1 day)\n\n If any of the above conditions are met, `access_time` is updated to the current time before\n any queried node attributes are returned.\n\n This is compatible with Linux relatime mount.\n\n The rationale behind adding this `NodeAttributesQuery` is that some filesystems, e.g. Fxfs,\n are unable to identify when a file access has occured and thus update the access time. We\n allow for clients to communicate to the underlying filesystem that a file access has\n occurred and that it awaits for an update to access time.\n\n WARNING: If this is queried without a prior file access, as long as the above conditions\n are met, the node\'s access time will be updated. Not all filesystems will support this. The\n query will be ignored if the filesystem does not support this.\n"]const PENDING_ACCESS_TIME_UPDATE = 1048576;
8285 const _ = !0;
8286 }
8287}
8288
8289impl ::fidl_next::Encodable for NodeAttributesQuery {
8290 type Encoded = WireNodeAttributesQuery;
8291}
8292
8293unsafe impl<___E> ::fidl_next::Encode<___E> for NodeAttributesQuery
8294where
8295 ___E: ?Sized,
8296{
8297 #[inline]
8298 fn encode(
8299 &mut self,
8300 _: &mut ___E,
8301 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
8302 ) -> Result<(), ::fidl_next::EncodeError> {
8303 ::fidl_next::munge!(let WireNodeAttributesQuery { value } = out);
8304 let _ = value.write(::fidl_next::WireU64::from(self.bits()));
8305 Ok(())
8306 }
8307}
8308
8309impl ::core::convert::From<WireNodeAttributesQuery> for NodeAttributesQuery {
8310 fn from(wire: WireNodeAttributesQuery) -> Self {
8311 Self::from_bits_retain(u64::from(wire.value))
8312 }
8313}
8314
8315impl ::fidl_next::TakeFrom<WireNodeAttributesQuery> for NodeAttributesQuery {
8316 #[inline]
8317 fn take_from(from: &WireNodeAttributesQuery) -> Self {
8318 Self::from(*from)
8319 }
8320}
8321
8322#[derive(Clone, Copy, Debug)]
8324#[repr(transparent)]
8325pub struct WireNodeAttributesQuery {
8326 value: ::fidl_next::WireU64,
8327}
8328
8329unsafe impl ::fidl_next::ZeroPadding for WireNodeAttributesQuery {
8330 #[inline]
8331 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
8332 }
8334}
8335
8336unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeAttributesQuery
8337where
8338 ___D: ?Sized,
8339{
8340 fn decode(
8341 slot: ::fidl_next::Slot<'_, Self>,
8342 _: &mut ___D,
8343 ) -> Result<(), ::fidl_next::DecodeError> {
8344 Ok(())
8345 }
8346}
8347
8348impl ::core::convert::From<NodeAttributesQuery> for WireNodeAttributesQuery {
8349 fn from(natural: NodeAttributesQuery) -> Self {
8350 Self { value: ::fidl_next::WireU64::from(natural.bits()) }
8351 }
8352}
8353
8354#[derive(Clone, Debug)]
8355#[repr(C)]
8356pub struct NodeGetAttributesRequest {
8357 pub query: crate::NodeAttributesQuery,
8358}
8359
8360impl ::fidl_next::Encodable for NodeGetAttributesRequest {
8361 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
8362 ::fidl_next::CopyOptimization::enable_if(
8363 true && <crate::NodeAttributesQuery as ::fidl_next::Encodable>::COPY_OPTIMIZATION
8364 .is_enabled(),
8365 )
8366 };
8367
8368 type Encoded = WireNodeGetAttributesRequest;
8369}
8370
8371unsafe impl<___E> ::fidl_next::Encode<___E> for NodeGetAttributesRequest
8372where
8373 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
8374{
8375 #[inline]
8376 fn encode(
8377 &mut self,
8378 encoder: &mut ___E,
8379 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
8380 ) -> Result<(), ::fidl_next::EncodeError> {
8381 ::fidl_next::munge! {
8382 let Self::Encoded {
8383 query,
8384
8385 } = out;
8386 }
8387
8388 ::fidl_next::Encode::encode(&mut self.query, encoder, query)?;
8389
8390 Ok(())
8391 }
8392}
8393
8394impl ::fidl_next::EncodableOption for Box<NodeGetAttributesRequest> {
8395 type EncodedOption = ::fidl_next::WireBox<WireNodeGetAttributesRequest>;
8396}
8397
8398unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeGetAttributesRequest>
8399where
8400 ___E: ::fidl_next::Encoder + ?Sized,
8401 NodeGetAttributesRequest: ::fidl_next::Encode<___E>,
8402{
8403 #[inline]
8404 fn encode_option(
8405 this: Option<&mut Self>,
8406 encoder: &mut ___E,
8407 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
8408 ) -> Result<(), ::fidl_next::EncodeError> {
8409 if let Some(inner) = this {
8410 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
8411 ::fidl_next::WireBox::encode_present(out);
8412 } else {
8413 ::fidl_next::WireBox::encode_absent(out);
8414 }
8415
8416 Ok(())
8417 }
8418}
8419
8420impl ::fidl_next::TakeFrom<WireNodeGetAttributesRequest> for NodeGetAttributesRequest {
8421 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
8422 ::fidl_next::CopyOptimization::enable_if(
8423 true && <crate::NodeAttributesQuery as ::fidl_next::Encodable>::COPY_OPTIMIZATION
8424 .is_enabled(),
8425 )
8426 };
8427
8428 #[inline]
8429 fn take_from(from: &WireNodeGetAttributesRequest) -> Self {
8430 Self { query: ::fidl_next::TakeFrom::take_from(&from.query) }
8431 }
8432}
8433
8434#[derive(Clone, Debug)]
8436#[repr(C)]
8437pub struct WireNodeGetAttributesRequest {
8438 pub query: crate::WireNodeAttributesQuery,
8439}
8440
8441unsafe impl ::fidl_next::ZeroPadding for WireNodeGetAttributesRequest {
8442 #[inline]
8443 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
8444}
8445
8446unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeGetAttributesRequest
8447where
8448 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
8449{
8450 fn decode(
8451 slot: ::fidl_next::Slot<'_, Self>,
8452 decoder: &mut ___D,
8453 ) -> Result<(), ::fidl_next::DecodeError> {
8454 ::fidl_next::munge! {
8455 let Self {
8456 mut query,
8457
8458 } = slot;
8459 }
8460
8461 ::fidl_next::Decode::decode(query.as_mut(), decoder)?;
8462
8463 Ok(())
8464 }
8465}
8466
8467#[doc = " Node defines the minimal interface for entities which can be accessed in a filesystem.\n"]
8469#[derive(Debug)]
8470pub struct Node;
8471
8472impl ::fidl_next::Discoverable for Node {
8473 const PROTOCOL_NAME: &'static str = "node";
8474}
8475
8476pub mod node {
8477 pub mod prelude {
8478 pub use crate::{
8479 node, Node, NodeClientHandler, NodeClientSender, NodeServerHandler, NodeServerSender,
8480 };
8481
8482 pub use crate::ConnectionInfo;
8483
8484 pub use crate::ExtendedAttributeValue;
8485
8486 pub use crate::MutableNodeAttributes;
8487
8488 pub use crate::NodeAttributes2;
8489
8490 pub use crate::NodeDeprecatedCloneRequest;
8491
8492 pub use crate::NodeDeprecatedGetFlagsResponse;
8493
8494 pub use crate::NodeDeprecatedSetFlagsRequest;
8495
8496 pub use crate::NodeDeprecatedSetFlagsResponse;
8497
8498 pub use crate::NodeGetAttrResponse;
8499
8500 pub use crate::NodeGetAttributesRequest;
8501
8502 pub use crate::NodeGetExtendedAttributeRequest;
8503
8504 pub use crate::NodeListExtendedAttributesRequest;
8505
8506 pub use crate::NodeOnOpenRequest;
8507
8508 pub use crate::NodeQueryFilesystemResponse;
8509
8510 pub use crate::NodeRemoveExtendedAttributeRequest;
8511
8512 pub use crate::NodeSetAttrRequest;
8513
8514 pub use crate::NodeSetAttrResponse;
8515
8516 pub use crate::NodeSetExtendedAttributeRequest;
8517
8518 pub use crate::NodeSetFlagsRequest;
8519
8520 pub use crate::NodeGetFlagsResponse;
8521
8522 pub use crate::NodeRemoveExtendedAttributeResponse;
8523
8524 pub use crate::NodeSetExtendedAttributeResponse;
8525
8526 pub use crate::NodeSetFlagsResponse;
8527
8528 pub use crate::NodeSyncResponse;
8529
8530 pub use crate::NodeUpdateAttributesResponse;
8531
8532 pub use crate::Representation;
8533
8534 pub use ::fidl_next_fuchsia_unknown::CloneableCloneRequest;
8535
8536 pub use ::fidl_next_fuchsia_unknown::CloseableCloseResponse;
8537
8538 pub use ::fidl_next_fuchsia_unknown::QueryableQueryResponse;
8539 }
8540
8541 pub struct Clone;
8542
8543 impl ::fidl_next::Method for Clone {
8544 const ORDINAL: u64 = 2366825959783828089;
8545
8546 type Protocol = crate::Node;
8547
8548 type Request = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest;
8549
8550 type Response = ::fidl_next::Never;
8551 }
8552
8553 pub struct Close;
8554
8555 impl ::fidl_next::Method for Close {
8556 const ORDINAL: u64 = 6540867515453498750;
8557
8558 type Protocol = crate::Node;
8559
8560 type Request = ();
8561
8562 type Response = ::fidl_next::WireResult<
8563 ::fidl_next_fuchsia_unknown::WireCloseableCloseResponse,
8564 ::fidl_next::WireI32,
8565 >;
8566 }
8567
8568 pub struct Query;
8569
8570 impl ::fidl_next::Method for Query {
8571 const ORDINAL: u64 = 2763219980499352582;
8572
8573 type Protocol = crate::Node;
8574
8575 type Request = ();
8576
8577 type Response = ::fidl_next_fuchsia_unknown::WireQueryableQueryResponse;
8578 }
8579
8580 pub struct DeprecatedClone;
8581
8582 impl ::fidl_next::Method for DeprecatedClone {
8583 const ORDINAL: u64 = 6512600400724287855;
8584
8585 type Protocol = crate::Node;
8586
8587 type Request = crate::WireNodeDeprecatedCloneRequest;
8588
8589 type Response = ::fidl_next::Never;
8590 }
8591
8592 pub struct OnOpen;
8593
8594 impl ::fidl_next::Method for OnOpen {
8595 const ORDINAL: u64 = 9207534335756671346;
8596
8597 type Protocol = crate::Node;
8598
8599 type Request = ::fidl_next::Never;
8600
8601 type Response = crate::WireNodeOnOpenRequest;
8602 }
8603
8604 pub struct GetAttr;
8605
8606 impl ::fidl_next::Method for GetAttr {
8607 const ORDINAL: u64 = 8689798978500614909;
8608
8609 type Protocol = crate::Node;
8610
8611 type Request = ();
8612
8613 type Response = crate::WireNodeGetAttrResponse;
8614 }
8615
8616 pub struct SetAttr;
8617
8618 impl ::fidl_next::Method for SetAttr {
8619 const ORDINAL: u64 = 4721673413776871238;
8620
8621 type Protocol = crate::Node;
8622
8623 type Request = crate::WireNodeSetAttrRequest;
8624
8625 type Response = crate::WireNodeSetAttrResponse;
8626 }
8627
8628 pub struct DeprecatedGetFlags;
8629
8630 impl ::fidl_next::Method for DeprecatedGetFlags {
8631 const ORDINAL: u64 = 6595803110182632097;
8632
8633 type Protocol = crate::Node;
8634
8635 type Request = ();
8636
8637 type Response = crate::WireNodeDeprecatedGetFlagsResponse;
8638 }
8639
8640 pub struct DeprecatedSetFlags;
8641
8642 impl ::fidl_next::Method for DeprecatedSetFlags {
8643 const ORDINAL: u64 = 5950864159036794675;
8644
8645 type Protocol = crate::Node;
8646
8647 type Request = crate::WireNodeDeprecatedSetFlagsRequest;
8648
8649 type Response = crate::WireNodeDeprecatedSetFlagsResponse;
8650 }
8651
8652 pub struct GetFlags;
8653
8654 impl ::fidl_next::Method for GetFlags {
8655 const ORDINAL: u64 = 105530239381466147;
8656
8657 type Protocol = crate::Node;
8658
8659 type Request = ();
8660
8661 type Response =
8662 ::fidl_next::WireFlexibleResult<crate::WireNodeGetFlagsResponse, ::fidl_next::WireI32>;
8663 }
8664
8665 pub struct SetFlags;
8666
8667 impl ::fidl_next::Method for SetFlags {
8668 const ORDINAL: u64 = 6172186066099445416;
8669
8670 type Protocol = crate::Node;
8671
8672 type Request = crate::WireNodeSetFlagsRequest;
8673
8674 type Response =
8675 ::fidl_next::WireFlexibleResult<crate::WireNodeSetFlagsResponse, ::fidl_next::WireI32>;
8676 }
8677
8678 pub struct QueryFilesystem;
8679
8680 impl ::fidl_next::Method for QueryFilesystem {
8681 const ORDINAL: u64 = 8013111122914313744;
8682
8683 type Protocol = crate::Node;
8684
8685 type Request = ();
8686
8687 type Response = crate::WireNodeQueryFilesystemResponse;
8688 }
8689
8690 pub struct OnRepresentation;
8691
8692 impl ::fidl_next::Method for OnRepresentation {
8693 const ORDINAL: u64 = 6679970090861613324;
8694
8695 type Protocol = crate::Node;
8696
8697 type Request = ::fidl_next::Never;
8698
8699 type Response = crate::WireRepresentation;
8700 }
8701
8702 pub struct GetConnectionInfo;
8703
8704 impl ::fidl_next::Method for GetConnectionInfo {
8705 const ORDINAL: u64 = 6362521381364198667;
8706
8707 type Protocol = crate::Node;
8708
8709 type Request = ();
8710
8711 type Response = crate::WireConnectionInfo;
8712 }
8713
8714 pub struct GetAttributes;
8715
8716 impl ::fidl_next::Method for GetAttributes {
8717 const ORDINAL: u64 = 4414537700416816443;
8718
8719 type Protocol = crate::Node;
8720
8721 type Request = crate::WireNodeGetAttributesRequest;
8722
8723 type Response = ::fidl_next::WireResult<crate::WireNodeAttributes2, ::fidl_next::WireI32>;
8724 }
8725
8726 pub struct UpdateAttributes;
8727
8728 impl ::fidl_next::Method for UpdateAttributes {
8729 const ORDINAL: u64 = 3677402239314018056;
8730
8731 type Protocol = crate::Node;
8732
8733 type Request = crate::WireMutableNodeAttributes;
8734
8735 type Response =
8736 ::fidl_next::WireResult<crate::WireNodeUpdateAttributesResponse, ::fidl_next::WireI32>;
8737 }
8738
8739 pub struct Sync;
8740
8741 impl ::fidl_next::Method for Sync {
8742 const ORDINAL: u64 = 3196473584242777161;
8743
8744 type Protocol = crate::Node;
8745
8746 type Request = ();
8747
8748 type Response = ::fidl_next::WireResult<crate::WireNodeSyncResponse, ::fidl_next::WireI32>;
8749 }
8750
8751 pub struct ListExtendedAttributes;
8752
8753 impl ::fidl_next::Method for ListExtendedAttributes {
8754 const ORDINAL: u64 = 5431626189872037072;
8755
8756 type Protocol = crate::Node;
8757
8758 type Request = crate::WireNodeListExtendedAttributesRequest;
8759
8760 type Response = ::fidl_next::Never;
8761 }
8762
8763 pub struct GetExtendedAttribute;
8764
8765 impl ::fidl_next::Method for GetExtendedAttribute {
8766 const ORDINAL: u64 = 5043930208506967771;
8767
8768 type Protocol = crate::Node;
8769
8770 type Request = crate::WireNodeGetExtendedAttributeRequest;
8771
8772 type Response =
8773 ::fidl_next::WireResult<crate::WireExtendedAttributeValue, ::fidl_next::WireI32>;
8774 }
8775
8776 pub struct SetExtendedAttribute;
8777
8778 impl ::fidl_next::Method for SetExtendedAttribute {
8779 const ORDINAL: u64 = 5374223046099989052;
8780
8781 type Protocol = crate::Node;
8782
8783 type Request = crate::WireNodeSetExtendedAttributeRequest;
8784
8785 type Response = ::fidl_next::WireResult<
8786 crate::WireNodeSetExtendedAttributeResponse,
8787 ::fidl_next::WireI32,
8788 >;
8789 }
8790
8791 pub struct RemoveExtendedAttribute;
8792
8793 impl ::fidl_next::Method for RemoveExtendedAttribute {
8794 const ORDINAL: u64 = 8794297771444732717;
8795
8796 type Protocol = crate::Node;
8797
8798 type Request = crate::WireNodeRemoveExtendedAttributeRequest;
8799
8800 type Response = ::fidl_next::WireResult<
8801 crate::WireNodeRemoveExtendedAttributeResponse,
8802 ::fidl_next::WireI32,
8803 >;
8804 }
8805}
8806
8807pub trait NodeClientSender {
8809 type Transport: ::fidl_next::Transport;
8810
8811 fn clone<___R>(
8812 &self,
8813 request: &mut ___R,
8814 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
8815 where
8816 ___R: ::fidl_next::Encode<
8817 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8818 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
8819 >;
8820
8821 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
8822 fn close(
8823 &self,
8824 ) -> Result<
8825 ::fidl_next::ResponseFuture<'_, Self::Transport, node::Close>,
8826 ::fidl_next::EncodeError,
8827 >;
8828
8829 fn query(
8830 &self,
8831 ) -> Result<
8832 ::fidl_next::ResponseFuture<'_, Self::Transport, node::Query>,
8833 ::fidl_next::EncodeError,
8834 >;
8835
8836 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
8837 fn deprecated_clone<___R>(
8838 &self,
8839 request: &mut ___R,
8840 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
8841 where
8842 ___R: ::fidl_next::Encode<
8843 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8844 Encoded = crate::WireNodeDeprecatedCloneRequest,
8845 >;
8846
8847 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
8848 fn get_attr(
8849 &self,
8850 ) -> Result<
8851 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetAttr>,
8852 ::fidl_next::EncodeError,
8853 >;
8854
8855 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
8856 fn set_attr<___R>(
8857 &self,
8858 request: &mut ___R,
8859 ) -> Result<
8860 ::fidl_next::ResponseFuture<'_, Self::Transport, node::SetAttr>,
8861 ::fidl_next::EncodeError,
8862 >
8863 where
8864 ___R: ::fidl_next::Encode<
8865 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8866 Encoded = crate::WireNodeSetAttrRequest,
8867 >;
8868
8869 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
8870 fn deprecated_get_flags(
8871 &self,
8872 ) -> Result<
8873 ::fidl_next::ResponseFuture<'_, Self::Transport, node::DeprecatedGetFlags>,
8874 ::fidl_next::EncodeError,
8875 >;
8876
8877 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
8878 fn deprecated_set_flags<___R>(
8879 &self,
8880 request: &mut ___R,
8881 ) -> Result<
8882 ::fidl_next::ResponseFuture<'_, Self::Transport, node::DeprecatedSetFlags>,
8883 ::fidl_next::EncodeError,
8884 >
8885 where
8886 ___R: ::fidl_next::Encode<
8887 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8888 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
8889 >;
8890
8891 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
8892 fn get_flags(
8893 &self,
8894 ) -> Result<
8895 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetFlags>,
8896 ::fidl_next::EncodeError,
8897 >;
8898
8899 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
8900 fn set_flags<___R>(
8901 &self,
8902 request: &mut ___R,
8903 ) -> Result<
8904 ::fidl_next::ResponseFuture<'_, Self::Transport, node::SetFlags>,
8905 ::fidl_next::EncodeError,
8906 >
8907 where
8908 ___R: ::fidl_next::Encode<
8909 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8910 Encoded = crate::WireNodeSetFlagsRequest,
8911 >;
8912
8913 #[doc = " Query the filesystem for filesystem-specific information.\n"]
8914 fn query_filesystem(
8915 &self,
8916 ) -> Result<
8917 ::fidl_next::ResponseFuture<'_, Self::Transport, node::QueryFilesystem>,
8918 ::fidl_next::EncodeError,
8919 >;
8920
8921 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
8922 fn get_connection_info(
8923 &self,
8924 ) -> Result<
8925 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetConnectionInfo>,
8926 ::fidl_next::EncodeError,
8927 >;
8928
8929 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
8930 fn get_attributes<___R>(
8931 &self,
8932 request: &mut ___R,
8933 ) -> Result<
8934 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetAttributes>,
8935 ::fidl_next::EncodeError,
8936 >
8937 where
8938 ___R: ::fidl_next::Encode<
8939 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8940 Encoded = crate::WireNodeGetAttributesRequest,
8941 >;
8942
8943 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
8944 fn update_attributes<___R>(
8945 &self,
8946 request: &mut ___R,
8947 ) -> Result<
8948 ::fidl_next::ResponseFuture<'_, Self::Transport, node::UpdateAttributes>,
8949 ::fidl_next::EncodeError,
8950 >
8951 where
8952 ___R: ::fidl_next::Encode<
8953 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8954 Encoded = crate::WireMutableNodeAttributes,
8955 >;
8956
8957 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
8958 fn sync(
8959 &self,
8960 ) -> Result<
8961 ::fidl_next::ResponseFuture<'_, Self::Transport, node::Sync>,
8962 ::fidl_next::EncodeError,
8963 >;
8964
8965 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
8966 fn list_extended_attributes<___R>(
8967 &self,
8968 request: &mut ___R,
8969 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
8970 where
8971 ___R: ::fidl_next::Encode<
8972 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8973 Encoded = crate::WireNodeListExtendedAttributesRequest,
8974 >;
8975
8976 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
8977 fn get_extended_attribute<___R>(
8978 &self,
8979 request: &mut ___R,
8980 ) -> Result<
8981 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetExtendedAttribute>,
8982 ::fidl_next::EncodeError,
8983 >
8984 where
8985 ___R: ::fidl_next::Encode<
8986 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
8987 Encoded = crate::WireNodeGetExtendedAttributeRequest,
8988 >;
8989
8990 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
8991 fn set_extended_attribute<___R>(
8992 &self,
8993 request: &mut ___R,
8994 ) -> Result<
8995 ::fidl_next::ResponseFuture<'_, Self::Transport, node::SetExtendedAttribute>,
8996 ::fidl_next::EncodeError,
8997 >
8998 where
8999 ___R: ::fidl_next::Encode<
9000 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9001 Encoded = crate::WireNodeSetExtendedAttributeRequest,
9002 >;
9003
9004 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9005 fn remove_extended_attribute<___R>(
9006 &self,
9007 request: &mut ___R,
9008 ) -> Result<
9009 ::fidl_next::ResponseFuture<'_, Self::Transport, node::RemoveExtendedAttribute>,
9010 ::fidl_next::EncodeError,
9011 >
9012 where
9013 ___R: ::fidl_next::Encode<
9014 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9015 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
9016 >;
9017}
9018
9019impl<___T> NodeClientSender for ::fidl_next::ClientSender<___T, Node>
9020where
9021 ___T: ::fidl_next::Transport,
9022{
9023 type Transport = ___T;
9024
9025 fn clone<___R>(
9026 &self,
9027 request: &mut ___R,
9028 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9029 where
9030 ___R: ::fidl_next::Encode<
9031 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9032 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
9033 >,
9034 {
9035 self.as_untyped().send_one_way(2366825959783828089, request)
9036 }
9037
9038 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
9039 fn close(
9040 &self,
9041 ) -> Result<
9042 ::fidl_next::ResponseFuture<'_, Self::Transport, node::Close>,
9043 ::fidl_next::EncodeError,
9044 > {
9045 self.as_untyped()
9046 .send_two_way(6540867515453498750, &mut ())
9047 .map(::fidl_next::ResponseFuture::from_untyped)
9048 }
9049
9050 fn query(
9051 &self,
9052 ) -> Result<
9053 ::fidl_next::ResponseFuture<'_, Self::Transport, node::Query>,
9054 ::fidl_next::EncodeError,
9055 > {
9056 self.as_untyped()
9057 .send_two_way(2763219980499352582, &mut ())
9058 .map(::fidl_next::ResponseFuture::from_untyped)
9059 }
9060
9061 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
9062 fn deprecated_clone<___R>(
9063 &self,
9064 request: &mut ___R,
9065 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9066 where
9067 ___R: ::fidl_next::Encode<
9068 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9069 Encoded = crate::WireNodeDeprecatedCloneRequest,
9070 >,
9071 {
9072 self.as_untyped().send_one_way(6512600400724287855, request)
9073 }
9074
9075 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
9076 fn get_attr(
9077 &self,
9078 ) -> Result<
9079 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetAttr>,
9080 ::fidl_next::EncodeError,
9081 > {
9082 self.as_untyped()
9083 .send_two_way(8689798978500614909, &mut ())
9084 .map(::fidl_next::ResponseFuture::from_untyped)
9085 }
9086
9087 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
9088 fn set_attr<___R>(
9089 &self,
9090 request: &mut ___R,
9091 ) -> Result<
9092 ::fidl_next::ResponseFuture<'_, Self::Transport, node::SetAttr>,
9093 ::fidl_next::EncodeError,
9094 >
9095 where
9096 ___R: ::fidl_next::Encode<
9097 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9098 Encoded = crate::WireNodeSetAttrRequest,
9099 >,
9100 {
9101 self.as_untyped()
9102 .send_two_way(4721673413776871238, request)
9103 .map(::fidl_next::ResponseFuture::from_untyped)
9104 }
9105
9106 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
9107 fn deprecated_get_flags(
9108 &self,
9109 ) -> Result<
9110 ::fidl_next::ResponseFuture<'_, Self::Transport, node::DeprecatedGetFlags>,
9111 ::fidl_next::EncodeError,
9112 > {
9113 self.as_untyped()
9114 .send_two_way(6595803110182632097, &mut ())
9115 .map(::fidl_next::ResponseFuture::from_untyped)
9116 }
9117
9118 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
9119 fn deprecated_set_flags<___R>(
9120 &self,
9121 request: &mut ___R,
9122 ) -> Result<
9123 ::fidl_next::ResponseFuture<'_, Self::Transport, node::DeprecatedSetFlags>,
9124 ::fidl_next::EncodeError,
9125 >
9126 where
9127 ___R: ::fidl_next::Encode<
9128 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9129 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
9130 >,
9131 {
9132 self.as_untyped()
9133 .send_two_way(5950864159036794675, request)
9134 .map(::fidl_next::ResponseFuture::from_untyped)
9135 }
9136
9137 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
9138 fn get_flags(
9139 &self,
9140 ) -> Result<
9141 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetFlags>,
9142 ::fidl_next::EncodeError,
9143 > {
9144 self.as_untyped()
9145 .send_two_way(105530239381466147, &mut ())
9146 .map(::fidl_next::ResponseFuture::from_untyped)
9147 }
9148
9149 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
9150 fn set_flags<___R>(
9151 &self,
9152 request: &mut ___R,
9153 ) -> Result<
9154 ::fidl_next::ResponseFuture<'_, Self::Transport, node::SetFlags>,
9155 ::fidl_next::EncodeError,
9156 >
9157 where
9158 ___R: ::fidl_next::Encode<
9159 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9160 Encoded = crate::WireNodeSetFlagsRequest,
9161 >,
9162 {
9163 self.as_untyped()
9164 .send_two_way(6172186066099445416, request)
9165 .map(::fidl_next::ResponseFuture::from_untyped)
9166 }
9167
9168 #[doc = " Query the filesystem for filesystem-specific information.\n"]
9169 fn query_filesystem(
9170 &self,
9171 ) -> Result<
9172 ::fidl_next::ResponseFuture<'_, Self::Transport, node::QueryFilesystem>,
9173 ::fidl_next::EncodeError,
9174 > {
9175 self.as_untyped()
9176 .send_two_way(8013111122914313744, &mut ())
9177 .map(::fidl_next::ResponseFuture::from_untyped)
9178 }
9179
9180 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
9181 fn get_connection_info(
9182 &self,
9183 ) -> Result<
9184 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetConnectionInfo>,
9185 ::fidl_next::EncodeError,
9186 > {
9187 self.as_untyped()
9188 .send_two_way(6362521381364198667, &mut ())
9189 .map(::fidl_next::ResponseFuture::from_untyped)
9190 }
9191
9192 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
9193 fn get_attributes<___R>(
9194 &self,
9195 request: &mut ___R,
9196 ) -> Result<
9197 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetAttributes>,
9198 ::fidl_next::EncodeError,
9199 >
9200 where
9201 ___R: ::fidl_next::Encode<
9202 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9203 Encoded = crate::WireNodeGetAttributesRequest,
9204 >,
9205 {
9206 self.as_untyped()
9207 .send_two_way(4414537700416816443, request)
9208 .map(::fidl_next::ResponseFuture::from_untyped)
9209 }
9210
9211 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9212 fn update_attributes<___R>(
9213 &self,
9214 request: &mut ___R,
9215 ) -> Result<
9216 ::fidl_next::ResponseFuture<'_, Self::Transport, node::UpdateAttributes>,
9217 ::fidl_next::EncodeError,
9218 >
9219 where
9220 ___R: ::fidl_next::Encode<
9221 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9222 Encoded = crate::WireMutableNodeAttributes,
9223 >,
9224 {
9225 self.as_untyped()
9226 .send_two_way(3677402239314018056, request)
9227 .map(::fidl_next::ResponseFuture::from_untyped)
9228 }
9229
9230 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
9231 fn sync(
9232 &self,
9233 ) -> Result<
9234 ::fidl_next::ResponseFuture<'_, Self::Transport, node::Sync>,
9235 ::fidl_next::EncodeError,
9236 > {
9237 self.as_untyped()
9238 .send_two_way(3196473584242777161, &mut ())
9239 .map(::fidl_next::ResponseFuture::from_untyped)
9240 }
9241
9242 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
9243 fn list_extended_attributes<___R>(
9244 &self,
9245 request: &mut ___R,
9246 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9247 where
9248 ___R: ::fidl_next::Encode<
9249 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9250 Encoded = crate::WireNodeListExtendedAttributesRequest,
9251 >,
9252 {
9253 self.as_untyped().send_one_way(5431626189872037072, request)
9254 }
9255
9256 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
9257 fn get_extended_attribute<___R>(
9258 &self,
9259 request: &mut ___R,
9260 ) -> Result<
9261 ::fidl_next::ResponseFuture<'_, Self::Transport, node::GetExtendedAttribute>,
9262 ::fidl_next::EncodeError,
9263 >
9264 where
9265 ___R: ::fidl_next::Encode<
9266 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9267 Encoded = crate::WireNodeGetExtendedAttributeRequest,
9268 >,
9269 {
9270 self.as_untyped()
9271 .send_two_way(5043930208506967771, request)
9272 .map(::fidl_next::ResponseFuture::from_untyped)
9273 }
9274
9275 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9276 fn set_extended_attribute<___R>(
9277 &self,
9278 request: &mut ___R,
9279 ) -> Result<
9280 ::fidl_next::ResponseFuture<'_, Self::Transport, node::SetExtendedAttribute>,
9281 ::fidl_next::EncodeError,
9282 >
9283 where
9284 ___R: ::fidl_next::Encode<
9285 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9286 Encoded = crate::WireNodeSetExtendedAttributeRequest,
9287 >,
9288 {
9289 self.as_untyped()
9290 .send_two_way(5374223046099989052, request)
9291 .map(::fidl_next::ResponseFuture::from_untyped)
9292 }
9293
9294 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9295 fn remove_extended_attribute<___R>(
9296 &self,
9297 request: &mut ___R,
9298 ) -> Result<
9299 ::fidl_next::ResponseFuture<'_, Self::Transport, node::RemoveExtendedAttribute>,
9300 ::fidl_next::EncodeError,
9301 >
9302 where
9303 ___R: ::fidl_next::Encode<
9304 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9305 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
9306 >,
9307 {
9308 self.as_untyped()
9309 .send_two_way(8794297771444732717, request)
9310 .map(::fidl_next::ResponseFuture::from_untyped)
9311 }
9312}
9313
9314pub trait NodeClientHandler<___T: ::fidl_next::Transport> {
9318 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
9319 fn on_open(
9320 &mut self,
9321 sender: &::fidl_next::ClientSender<___T, Node>,
9322
9323 message: ::fidl_next::ResponseBuffer<___T, node::OnOpen>,
9324 );
9325
9326 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
9327 fn on_representation(
9328 &mut self,
9329 sender: &::fidl_next::ClientSender<___T, Node>,
9330
9331 message: ::fidl_next::ResponseBuffer<___T, node::OnRepresentation>,
9332 );
9333
9334 fn on_unknown_interaction(
9335 &mut self,
9336 sender: &::fidl_next::ClientSender<___T, Node>,
9337 ordinal: u64,
9338 ) {
9339 sender.close();
9340 }
9341}
9342
9343impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for Node
9344where
9345 ___T: ::fidl_next::Transport,
9346 ___H: NodeClientHandler<___T>,
9347
9348 <node::Close as ::fidl_next::Method>::Response:
9349 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9350
9351 <node::Query as ::fidl_next::Method>::Response:
9352 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9353
9354 <node::OnOpen as ::fidl_next::Method>::Response:
9355 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9356
9357 <node::GetAttr as ::fidl_next::Method>::Response:
9358 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9359
9360 <node::SetAttr as ::fidl_next::Method>::Response:
9361 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9362
9363 <node::DeprecatedGetFlags as ::fidl_next::Method>::Response:
9364 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9365
9366 <node::DeprecatedSetFlags as ::fidl_next::Method>::Response:
9367 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9368
9369 <node::GetFlags as ::fidl_next::Method>::Response:
9370 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9371
9372 <node::SetFlags as ::fidl_next::Method>::Response:
9373 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9374
9375 <node::QueryFilesystem as ::fidl_next::Method>::Response:
9376 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9377
9378 <node::OnRepresentation as ::fidl_next::Method>::Response:
9379 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9380
9381 <node::GetConnectionInfo as ::fidl_next::Method>::Response:
9382 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9383
9384 <node::GetAttributes as ::fidl_next::Method>::Response:
9385 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9386
9387 <node::UpdateAttributes as ::fidl_next::Method>::Response:
9388 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9389
9390 <node::Sync as ::fidl_next::Method>::Response:
9391 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9392
9393 <node::GetExtendedAttribute as ::fidl_next::Method>::Response:
9394 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9395
9396 <node::SetExtendedAttribute as ::fidl_next::Method>::Response:
9397 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9398
9399 <node::RemoveExtendedAttribute as ::fidl_next::Method>::Response:
9400 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9401{
9402 fn on_event(
9403 handler: &mut ___H,
9404 sender: &::fidl_next::ClientSender<___T, Self>,
9405 ordinal: u64,
9406 buffer: ___T::RecvBuffer,
9407 ) {
9408 match ordinal {
9409 9207534335756671346 => {
9410 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
9411 handler.on_open(sender, buffer);
9412 }
9413
9414 6679970090861613324 => {
9415 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
9416 handler.on_representation(sender, buffer);
9417 }
9418
9419 ordinal => handler.on_unknown_interaction(sender, ordinal),
9420 }
9421 }
9422}
9423
9424pub trait NodeServerSender {
9426 type Transport: ::fidl_next::Transport;
9427
9428 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
9429
9430 fn on_open<___R>(
9431 &self,
9432 request: &mut ___R,
9433 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9434 where
9435 ___R: ::fidl_next::Encode<
9436 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9437 Encoded = <node::OnOpen as ::fidl_next::Method>::Response,
9438 >;
9439
9440 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
9441
9442 fn on_representation<___R>(
9443 &self,
9444 request: &mut ___R,
9445 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9446 where
9447 ___R: ::fidl_next::Encode<
9448 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9449 Encoded = <node::OnRepresentation as ::fidl_next::Method>::Response,
9450 >;
9451}
9452
9453impl<___T> NodeServerSender for ::fidl_next::ServerSender<___T, Node>
9454where
9455 ___T: ::fidl_next::Transport,
9456{
9457 type Transport = ___T;
9458
9459 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
9460
9461 fn on_open<___R>(
9462 &self,
9463 request: &mut ___R,
9464 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9465 where
9466 ___R: ::fidl_next::Encode<
9467 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9468 Encoded = <node::OnOpen as ::fidl_next::Method>::Response,
9469 >,
9470 {
9471 self.as_untyped().send_event(9207534335756671346, request)
9472 }
9473
9474 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
9475
9476 fn on_representation<___R>(
9477 &self,
9478 request: &mut ___R,
9479 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
9480 where
9481 ___R: ::fidl_next::Encode<
9482 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
9483 Encoded = <node::OnRepresentation as ::fidl_next::Method>::Response,
9484 >,
9485 {
9486 self.as_untyped().send_event(6679970090861613324, request)
9487 }
9488}
9489
9490pub trait NodeServerHandler<___T: ::fidl_next::Transport> {
9494 fn clone(
9495 &mut self,
9496 sender: &::fidl_next::ServerSender<___T, Node>,
9497
9498 request: ::fidl_next::RequestBuffer<___T, node::Clone>,
9499 );
9500
9501 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
9502 fn close(
9503 &mut self,
9504 sender: &::fidl_next::ServerSender<___T, Node>,
9505
9506 responder: ::fidl_next::Responder<node::Close>,
9507 );
9508
9509 fn query(
9510 &mut self,
9511 sender: &::fidl_next::ServerSender<___T, Node>,
9512
9513 responder: ::fidl_next::Responder<node::Query>,
9514 );
9515
9516 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
9517 fn deprecated_clone(
9518 &mut self,
9519 sender: &::fidl_next::ServerSender<___T, Node>,
9520
9521 request: ::fidl_next::RequestBuffer<___T, node::DeprecatedClone>,
9522 );
9523
9524 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
9525 fn get_attr(
9526 &mut self,
9527 sender: &::fidl_next::ServerSender<___T, Node>,
9528
9529 responder: ::fidl_next::Responder<node::GetAttr>,
9530 );
9531
9532 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
9533 fn set_attr(
9534 &mut self,
9535 sender: &::fidl_next::ServerSender<___T, Node>,
9536
9537 request: ::fidl_next::RequestBuffer<___T, node::SetAttr>,
9538
9539 responder: ::fidl_next::Responder<node::SetAttr>,
9540 );
9541
9542 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
9543 fn deprecated_get_flags(
9544 &mut self,
9545 sender: &::fidl_next::ServerSender<___T, Node>,
9546
9547 responder: ::fidl_next::Responder<node::DeprecatedGetFlags>,
9548 );
9549
9550 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
9551 fn deprecated_set_flags(
9552 &mut self,
9553 sender: &::fidl_next::ServerSender<___T, Node>,
9554
9555 request: ::fidl_next::RequestBuffer<___T, node::DeprecatedSetFlags>,
9556
9557 responder: ::fidl_next::Responder<node::DeprecatedSetFlags>,
9558 );
9559
9560 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
9561 fn get_flags(
9562 &mut self,
9563 sender: &::fidl_next::ServerSender<___T, Node>,
9564
9565 responder: ::fidl_next::Responder<node::GetFlags>,
9566 );
9567
9568 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
9569 fn set_flags(
9570 &mut self,
9571 sender: &::fidl_next::ServerSender<___T, Node>,
9572
9573 request: ::fidl_next::RequestBuffer<___T, node::SetFlags>,
9574
9575 responder: ::fidl_next::Responder<node::SetFlags>,
9576 );
9577
9578 #[doc = " Query the filesystem for filesystem-specific information.\n"]
9579 fn query_filesystem(
9580 &mut self,
9581 sender: &::fidl_next::ServerSender<___T, Node>,
9582
9583 responder: ::fidl_next::Responder<node::QueryFilesystem>,
9584 );
9585
9586 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
9587 fn get_connection_info(
9588 &mut self,
9589 sender: &::fidl_next::ServerSender<___T, Node>,
9590
9591 responder: ::fidl_next::Responder<node::GetConnectionInfo>,
9592 );
9593
9594 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
9595 fn get_attributes(
9596 &mut self,
9597 sender: &::fidl_next::ServerSender<___T, Node>,
9598
9599 request: ::fidl_next::RequestBuffer<___T, node::GetAttributes>,
9600
9601 responder: ::fidl_next::Responder<node::GetAttributes>,
9602 );
9603
9604 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9605 fn update_attributes(
9606 &mut self,
9607 sender: &::fidl_next::ServerSender<___T, Node>,
9608
9609 request: ::fidl_next::RequestBuffer<___T, node::UpdateAttributes>,
9610
9611 responder: ::fidl_next::Responder<node::UpdateAttributes>,
9612 );
9613
9614 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
9615 fn sync(
9616 &mut self,
9617 sender: &::fidl_next::ServerSender<___T, Node>,
9618
9619 responder: ::fidl_next::Responder<node::Sync>,
9620 );
9621
9622 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
9623 fn list_extended_attributes(
9624 &mut self,
9625 sender: &::fidl_next::ServerSender<___T, Node>,
9626
9627 request: ::fidl_next::RequestBuffer<___T, node::ListExtendedAttributes>,
9628 );
9629
9630 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
9631 fn get_extended_attribute(
9632 &mut self,
9633 sender: &::fidl_next::ServerSender<___T, Node>,
9634
9635 request: ::fidl_next::RequestBuffer<___T, node::GetExtendedAttribute>,
9636
9637 responder: ::fidl_next::Responder<node::GetExtendedAttribute>,
9638 );
9639
9640 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9641 fn set_extended_attribute(
9642 &mut self,
9643 sender: &::fidl_next::ServerSender<___T, Node>,
9644
9645 request: ::fidl_next::RequestBuffer<___T, node::SetExtendedAttribute>,
9646
9647 responder: ::fidl_next::Responder<node::SetExtendedAttribute>,
9648 );
9649
9650 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
9651 fn remove_extended_attribute(
9652 &mut self,
9653 sender: &::fidl_next::ServerSender<___T, Node>,
9654
9655 request: ::fidl_next::RequestBuffer<___T, node::RemoveExtendedAttribute>,
9656
9657 responder: ::fidl_next::Responder<node::RemoveExtendedAttribute>,
9658 );
9659
9660 fn on_unknown_interaction(
9661 &mut self,
9662 sender: &::fidl_next::ServerSender<___T, Node>,
9663 ordinal: u64,
9664 ) {
9665 sender.close();
9666 }
9667}
9668
9669impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for Node
9670where
9671 ___T: ::fidl_next::Transport,
9672 ___H: NodeServerHandler<___T>,
9673
9674 ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest:
9675 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9676
9677 crate::WireNodeDeprecatedCloneRequest:
9678 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9679
9680 crate::WireNodeSetAttrRequest:
9681 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9682
9683 crate::WireNodeDeprecatedSetFlagsRequest:
9684 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9685
9686 crate::WireNodeSetFlagsRequest:
9687 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9688
9689 crate::WireNodeGetAttributesRequest:
9690 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9691
9692 crate::WireMutableNodeAttributes:
9693 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9694
9695 crate::WireNodeListExtendedAttributesRequest:
9696 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9697
9698 crate::WireNodeGetExtendedAttributeRequest:
9699 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9700
9701 crate::WireNodeSetExtendedAttributeRequest:
9702 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9703
9704 crate::WireNodeRemoveExtendedAttributeRequest:
9705 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
9706{
9707 fn on_one_way(
9708 handler: &mut ___H,
9709 sender: &::fidl_next::ServerSender<___T, Self>,
9710 ordinal: u64,
9711 buffer: ___T::RecvBuffer,
9712 ) {
9713 match ordinal {
9714 2366825959783828089 => {
9715 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9716 handler.clone(sender, buffer);
9717 }
9718
9719 6512600400724287855 => {
9720 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9721 handler.deprecated_clone(sender, buffer);
9722 }
9723
9724 5431626189872037072 => {
9725 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9726 handler.list_extended_attributes(sender, buffer);
9727 }
9728
9729 ordinal => handler.on_unknown_interaction(sender, ordinal),
9730 }
9731 }
9732
9733 fn on_two_way(
9734 handler: &mut ___H,
9735 sender: &::fidl_next::ServerSender<___T, Self>,
9736 ordinal: u64,
9737 buffer: ___T::RecvBuffer,
9738 responder: ::fidl_next::protocol::Responder,
9739 ) {
9740 match ordinal {
9741 6540867515453498750 => {
9742 let responder = ::fidl_next::Responder::from_untyped(responder);
9743
9744 handler.close(sender, responder);
9745 }
9746
9747 2763219980499352582 => {
9748 let responder = ::fidl_next::Responder::from_untyped(responder);
9749
9750 handler.query(sender, responder);
9751 }
9752
9753 8689798978500614909 => {
9754 let responder = ::fidl_next::Responder::from_untyped(responder);
9755
9756 handler.get_attr(sender, responder);
9757 }
9758
9759 4721673413776871238 => {
9760 let responder = ::fidl_next::Responder::from_untyped(responder);
9761
9762 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9763 handler.set_attr(sender, buffer, responder);
9764 }
9765
9766 6595803110182632097 => {
9767 let responder = ::fidl_next::Responder::from_untyped(responder);
9768
9769 handler.deprecated_get_flags(sender, responder);
9770 }
9771
9772 5950864159036794675 => {
9773 let responder = ::fidl_next::Responder::from_untyped(responder);
9774
9775 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9776 handler.deprecated_set_flags(sender, buffer, responder);
9777 }
9778
9779 105530239381466147 => {
9780 let responder = ::fidl_next::Responder::from_untyped(responder);
9781
9782 handler.get_flags(sender, responder);
9783 }
9784
9785 6172186066099445416 => {
9786 let responder = ::fidl_next::Responder::from_untyped(responder);
9787
9788 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9789 handler.set_flags(sender, buffer, responder);
9790 }
9791
9792 8013111122914313744 => {
9793 let responder = ::fidl_next::Responder::from_untyped(responder);
9794
9795 handler.query_filesystem(sender, responder);
9796 }
9797
9798 6362521381364198667 => {
9799 let responder = ::fidl_next::Responder::from_untyped(responder);
9800
9801 handler.get_connection_info(sender, responder);
9802 }
9803
9804 4414537700416816443 => {
9805 let responder = ::fidl_next::Responder::from_untyped(responder);
9806
9807 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9808 handler.get_attributes(sender, buffer, responder);
9809 }
9810
9811 3677402239314018056 => {
9812 let responder = ::fidl_next::Responder::from_untyped(responder);
9813
9814 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9815 handler.update_attributes(sender, buffer, responder);
9816 }
9817
9818 3196473584242777161 => {
9819 let responder = ::fidl_next::Responder::from_untyped(responder);
9820
9821 handler.sync(sender, responder);
9822 }
9823
9824 5043930208506967771 => {
9825 let responder = ::fidl_next::Responder::from_untyped(responder);
9826
9827 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9828 handler.get_extended_attribute(sender, buffer, responder);
9829 }
9830
9831 5374223046099989052 => {
9832 let responder = ::fidl_next::Responder::from_untyped(responder);
9833
9834 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9835 handler.set_extended_attribute(sender, buffer, responder);
9836 }
9837
9838 8794297771444732717 => {
9839 let responder = ::fidl_next::Responder::from_untyped(responder);
9840
9841 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
9842 handler.remove_extended_attribute(sender, buffer, responder);
9843 }
9844
9845 ordinal => handler.on_unknown_interaction(sender, ordinal),
9846 }
9847 }
9848}
9849
9850#[derive(Debug)]
9851pub struct DirectoryDeprecatedOpenRequest {
9852 pub flags: crate::OpenFlags,
9853
9854 pub mode: crate::ModeType,
9855
9856 pub path: String,
9857
9858 pub object: ::fidl_next::ServerEnd<::fidl_next::fuchsia::zx::Channel, crate::Node>,
9859}
9860
9861impl ::fidl_next::Encodable for DirectoryDeprecatedOpenRequest {
9862 type Encoded = WireDirectoryDeprecatedOpenRequest;
9863}
9864
9865unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryDeprecatedOpenRequest
9866where
9867 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
9868
9869 ___E: ::fidl_next::Encoder,
9870
9871 ___E: ::fidl_next::fuchsia::HandleEncoder,
9872{
9873 #[inline]
9874 fn encode(
9875 &mut self,
9876 encoder: &mut ___E,
9877 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
9878 ) -> Result<(), ::fidl_next::EncodeError> {
9879 ::fidl_next::munge! {
9880 let Self::Encoded {
9881 flags,
9882 mode,
9883 path,
9884 object,
9885
9886 } = out;
9887 }
9888
9889 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
9890
9891 ::fidl_next::Encode::encode(&mut self.mode, encoder, mode)?;
9892
9893 ::fidl_next::Encode::encode(&mut self.path, encoder, path)?;
9894
9895 ::fidl_next::Encode::encode(&mut self.object, encoder, object)?;
9896
9897 Ok(())
9898 }
9899}
9900
9901impl ::fidl_next::EncodableOption for Box<DirectoryDeprecatedOpenRequest> {
9902 type EncodedOption = ::fidl_next::WireBox<WireDirectoryDeprecatedOpenRequest>;
9903}
9904
9905unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryDeprecatedOpenRequest>
9906where
9907 ___E: ::fidl_next::Encoder + ?Sized,
9908 DirectoryDeprecatedOpenRequest: ::fidl_next::Encode<___E>,
9909{
9910 #[inline]
9911 fn encode_option(
9912 this: Option<&mut Self>,
9913 encoder: &mut ___E,
9914 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
9915 ) -> Result<(), ::fidl_next::EncodeError> {
9916 if let Some(inner) = this {
9917 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
9918 ::fidl_next::WireBox::encode_present(out);
9919 } else {
9920 ::fidl_next::WireBox::encode_absent(out);
9921 }
9922
9923 Ok(())
9924 }
9925}
9926
9927impl ::fidl_next::TakeFrom<WireDirectoryDeprecatedOpenRequest> for DirectoryDeprecatedOpenRequest {
9928 #[inline]
9929 fn take_from(from: &WireDirectoryDeprecatedOpenRequest) -> Self {
9930 Self {
9931 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
9932
9933 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
9934
9935 path: ::fidl_next::TakeFrom::take_from(&from.path),
9936
9937 object: ::fidl_next::TakeFrom::take_from(&from.object),
9938 }
9939 }
9940}
9941
9942#[derive(Debug)]
9944#[repr(C)]
9945pub struct WireDirectoryDeprecatedOpenRequest {
9946 pub flags: crate::WireOpenFlags,
9947
9948 pub mode: crate::WireModeType,
9949
9950 pub path: ::fidl_next::WireString,
9951
9952 pub object: ::fidl_next::ServerEnd<::fidl_next::fuchsia::WireChannel, crate::Node>,
9953}
9954
9955unsafe impl ::fidl_next::ZeroPadding for WireDirectoryDeprecatedOpenRequest {
9956 #[inline]
9957 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
9958 unsafe {
9959 out.as_mut_ptr().cast::<u8>().add(28).write_bytes(0, 4);
9960 }
9961 }
9962}
9963
9964unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryDeprecatedOpenRequest
9965where
9966 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
9967
9968 ___D: ::fidl_next::Decoder,
9969
9970 ___D: ::fidl_next::fuchsia::HandleDecoder,
9971{
9972 fn decode(
9973 slot: ::fidl_next::Slot<'_, Self>,
9974 decoder: &mut ___D,
9975 ) -> Result<(), ::fidl_next::DecodeError> {
9976 ::fidl_next::munge! {
9977 let Self {
9978 mut flags,
9979 mut mode,
9980 mut path,
9981 mut object,
9982
9983 } = slot;
9984 }
9985
9986 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
9987
9988 ::fidl_next::Decode::decode(mode.as_mut(), decoder)?;
9989
9990 ::fidl_next::Decode::decode(path.as_mut(), decoder)?;
9991
9992 let path = unsafe { path.deref_unchecked() };
9993
9994 if path.len() > 4095 {
9995 return Err(::fidl_next::DecodeError::VectorTooLong {
9996 size: path.len() as u64,
9997 limit: 4095,
9998 });
9999 }
10000
10001 ::fidl_next::Decode::decode(object.as_mut(), decoder)?;
10002
10003 Ok(())
10004 }
10005}
10006
10007#[doc = " Options which can be used when opening nodes. Unlike [`Flags`], these options are designed for\n specific use cases (e.g. to reduce round-trip latency when requesting attributes).\n"]
10008#[derive(Clone, Debug)]
10009pub struct Options {
10010 pub attributes: Option<crate::NodeAttributesQuery>,
10011
10012 pub create_attributes: Option<crate::MutableNodeAttributes>,
10013}
10014
10015impl Options {
10016 fn __max_ordinal(&self) -> usize {
10017 if self.attributes.is_some() {
10018 return 1;
10019 }
10020
10021 if self.create_attributes.is_some() {
10022 return 2;
10023 }
10024
10025 0
10026 }
10027}
10028
10029impl ::fidl_next::Encodable for Options {
10030 type Encoded = WireOptions;
10031}
10032
10033unsafe impl<___E> ::fidl_next::Encode<___E> for Options
10034where
10035 ___E: ::fidl_next::Encoder + ?Sized,
10036{
10037 #[inline]
10038 fn encode(
10039 &mut self,
10040 encoder: &mut ___E,
10041 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
10042 ) -> Result<(), ::fidl_next::EncodeError> {
10043 ::fidl_next::munge!(let WireOptions { table } = out);
10044
10045 let max_ord = self.__max_ordinal();
10046
10047 let mut out = ::core::mem::MaybeUninit::<::fidl_next::WireEnvelope>::uninit();
10048 ::fidl_next::ZeroPadding::zero_padding(&mut out);
10049
10050 let mut preallocated =
10051 ::fidl_next::EncoderExt::preallocate::<::fidl_next::WireEnvelope>(encoder, max_ord);
10052
10053 for i in 1..=max_ord {
10054 match i {
10055 2 => {
10056 if let Some(create_attributes) = &mut self.create_attributes {
10057 ::fidl_next::WireEnvelope::encode_value(
10058 create_attributes,
10059 preallocated.encoder,
10060 &mut out,
10061 )?;
10062 } else {
10063 ::fidl_next::WireEnvelope::encode_zero(&mut out)
10064 }
10065 }
10066
10067 1 => {
10068 if let Some(attributes) = &mut self.attributes {
10069 ::fidl_next::WireEnvelope::encode_value(
10070 attributes,
10071 preallocated.encoder,
10072 &mut out,
10073 )?;
10074 } else {
10075 ::fidl_next::WireEnvelope::encode_zero(&mut out)
10076 }
10077 }
10078
10079 _ => ::fidl_next::WireEnvelope::encode_zero(&mut out),
10080 }
10081 unsafe {
10082 preallocated.write_next(out.assume_init_ref());
10083 }
10084 }
10085
10086 ::fidl_next::WireTable::encode_len(table, max_ord);
10087
10088 Ok(())
10089 }
10090}
10091
10092impl ::fidl_next::TakeFrom<WireOptions> for Options {
10093 #[inline]
10094 fn take_from(from: &WireOptions) -> Self {
10095 Self {
10096 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
10097
10098 create_attributes: from.create_attributes().map(::fidl_next::TakeFrom::take_from),
10099 }
10100 }
10101}
10102
10103#[repr(C)]
10105pub struct WireOptions {
10106 table: ::fidl_next::WireTable,
10107}
10108
10109unsafe impl ::fidl_next::ZeroPadding for WireOptions {
10110 #[inline]
10111 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
10112 ::fidl_next::munge!(let Self { table } = out);
10113 ::fidl_next::WireTable::zero_padding(table);
10114 }
10115}
10116
10117unsafe impl<___D> ::fidl_next::Decode<___D> for WireOptions
10118where
10119 ___D: ::fidl_next::Decoder + ?Sized,
10120{
10121 fn decode(
10122 slot: ::fidl_next::Slot<'_, Self>,
10123 decoder: &mut ___D,
10124 ) -> Result<(), ::fidl_next::DecodeError> {
10125 ::fidl_next::munge!(let Self { table } = slot);
10126
10127 ::fidl_next::WireTable::decode_with(table, decoder, |ordinal, mut slot, decoder| {
10128 match ordinal {
10129 0 => unsafe { ::core::hint::unreachable_unchecked() },
10130
10131 1 => {
10132 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireNodeAttributesQuery>(
10133 slot.as_mut(),
10134 decoder,
10135 )?;
10136
10137 Ok(())
10138 }
10139
10140 2 => {
10141 ::fidl_next::WireEnvelope::decode_as::<___D, crate::WireMutableNodeAttributes>(
10142 slot.as_mut(),
10143 decoder,
10144 )?;
10145
10146 Ok(())
10147 }
10148
10149 _ => ::fidl_next::WireEnvelope::decode_unknown(slot, decoder),
10150 }
10151 })
10152 }
10153}
10154
10155impl WireOptions {
10156 pub fn attributes(&self) -> Option<&crate::WireNodeAttributesQuery> {
10157 unsafe { Some(self.table.get(1)?.deref_unchecked()) }
10158 }
10159
10160 pub fn create_attributes(&self) -> Option<&crate::WireMutableNodeAttributes> {
10161 unsafe { Some(self.table.get(2)?.deref_unchecked()) }
10162 }
10163}
10164
10165impl ::core::fmt::Debug for WireOptions {
10166 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> Result<(), ::core::fmt::Error> {
10167 f.debug_struct("Options")
10168 .field("attributes", &self.attributes())
10169 .field("create_attributes", &self.create_attributes())
10170 .finish()
10171 }
10172}
10173
10174#[derive(Debug)]
10175pub struct DirectoryOpenRequest {
10176 pub path: String,
10177
10178 pub flags: crate::Flags,
10179
10180 pub options: crate::Options,
10181
10182 pub object: ::fidl_next::fuchsia::zx::Handle,
10183}
10184
10185impl ::fidl_next::Encodable for DirectoryOpenRequest {
10186 type Encoded = WireDirectoryOpenRequest;
10187}
10188
10189unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryOpenRequest
10190where
10191 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
10192
10193 ___E: ::fidl_next::Encoder,
10194
10195 ___E: ::fidl_next::fuchsia::HandleEncoder,
10196{
10197 #[inline]
10198 fn encode(
10199 &mut self,
10200 encoder: &mut ___E,
10201 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
10202 ) -> Result<(), ::fidl_next::EncodeError> {
10203 ::fidl_next::munge! {
10204 let Self::Encoded {
10205 path,
10206 flags,
10207 options,
10208 object,
10209
10210 } = out;
10211 }
10212
10213 ::fidl_next::Encode::encode(&mut self.path, encoder, path)?;
10214
10215 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
10216
10217 ::fidl_next::Encode::encode(&mut self.options, encoder, options)?;
10218
10219 ::fidl_next::Encode::encode(&mut self.object, encoder, object)?;
10220
10221 Ok(())
10222 }
10223}
10224
10225impl ::fidl_next::EncodableOption for Box<DirectoryOpenRequest> {
10226 type EncodedOption = ::fidl_next::WireBox<WireDirectoryOpenRequest>;
10227}
10228
10229unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryOpenRequest>
10230where
10231 ___E: ::fidl_next::Encoder + ?Sized,
10232 DirectoryOpenRequest: ::fidl_next::Encode<___E>,
10233{
10234 #[inline]
10235 fn encode_option(
10236 this: Option<&mut Self>,
10237 encoder: &mut ___E,
10238 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
10239 ) -> Result<(), ::fidl_next::EncodeError> {
10240 if let Some(inner) = this {
10241 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
10242 ::fidl_next::WireBox::encode_present(out);
10243 } else {
10244 ::fidl_next::WireBox::encode_absent(out);
10245 }
10246
10247 Ok(())
10248 }
10249}
10250
10251impl ::fidl_next::TakeFrom<WireDirectoryOpenRequest> for DirectoryOpenRequest {
10252 #[inline]
10253 fn take_from(from: &WireDirectoryOpenRequest) -> Self {
10254 Self {
10255 path: ::fidl_next::TakeFrom::take_from(&from.path),
10256
10257 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
10258
10259 options: ::fidl_next::TakeFrom::take_from(&from.options),
10260
10261 object: ::fidl_next::TakeFrom::take_from(&from.object),
10262 }
10263 }
10264}
10265
10266#[derive(Debug)]
10268#[repr(C)]
10269pub struct WireDirectoryOpenRequest {
10270 pub path: ::fidl_next::WireString,
10271
10272 pub flags: crate::WireFlags,
10273
10274 pub options: crate::WireOptions,
10275
10276 pub object: ::fidl_next::fuchsia::WireHandle,
10277}
10278
10279unsafe impl ::fidl_next::ZeroPadding for WireDirectoryOpenRequest {
10280 #[inline]
10281 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
10282 unsafe {
10283 out.as_mut_ptr().cast::<u8>().add(44).write_bytes(0, 4);
10284 }
10285 }
10286}
10287
10288unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryOpenRequest
10289where
10290 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
10291
10292 ___D: ::fidl_next::Decoder,
10293
10294 ___D: ::fidl_next::fuchsia::HandleDecoder,
10295{
10296 fn decode(
10297 slot: ::fidl_next::Slot<'_, Self>,
10298 decoder: &mut ___D,
10299 ) -> Result<(), ::fidl_next::DecodeError> {
10300 ::fidl_next::munge! {
10301 let Self {
10302 mut path,
10303 mut flags,
10304 mut options,
10305 mut object,
10306
10307 } = slot;
10308 }
10309
10310 ::fidl_next::Decode::decode(path.as_mut(), decoder)?;
10311
10312 let path = unsafe { path.deref_unchecked() };
10313
10314 if path.len() > 4095 {
10315 return Err(::fidl_next::DecodeError::VectorTooLong {
10316 size: path.len() as u64,
10317 limit: 4095,
10318 });
10319 }
10320
10321 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
10322
10323 ::fidl_next::Decode::decode(options.as_mut(), decoder)?;
10324
10325 ::fidl_next::Decode::decode(object.as_mut(), decoder)?;
10326
10327 Ok(())
10328 }
10329}
10330
10331#[derive(Debug)]
10332pub struct DirectoryCreateSymlinkRequest {
10333 pub name: String,
10334
10335 pub target: Vec<u8>,
10336
10337 pub connection:
10338 ::fidl_next::ServerEnd<Option<::fidl_next::fuchsia::zx::Channel>, crate::Symlink>,
10339}
10340
10341impl ::fidl_next::Encodable for DirectoryCreateSymlinkRequest {
10342 type Encoded = WireDirectoryCreateSymlinkRequest;
10343}
10344
10345unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryCreateSymlinkRequest
10346where
10347 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
10348
10349 ___E: ::fidl_next::Encoder,
10350
10351 ___E: ::fidl_next::fuchsia::HandleEncoder,
10352{
10353 #[inline]
10354 fn encode(
10355 &mut self,
10356 encoder: &mut ___E,
10357 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
10358 ) -> Result<(), ::fidl_next::EncodeError> {
10359 ::fidl_next::munge! {
10360 let Self::Encoded {
10361 name,
10362 target,
10363 connection,
10364
10365 } = out;
10366 }
10367
10368 ::fidl_next::Encode::encode(&mut self.name, encoder, name)?;
10369
10370 ::fidl_next::Encode::encode(&mut self.target, encoder, target)?;
10371
10372 ::fidl_next::Encode::encode(&mut self.connection, encoder, connection)?;
10373
10374 Ok(())
10375 }
10376}
10377
10378impl ::fidl_next::EncodableOption for Box<DirectoryCreateSymlinkRequest> {
10379 type EncodedOption = ::fidl_next::WireBox<WireDirectoryCreateSymlinkRequest>;
10380}
10381
10382unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryCreateSymlinkRequest>
10383where
10384 ___E: ::fidl_next::Encoder + ?Sized,
10385 DirectoryCreateSymlinkRequest: ::fidl_next::Encode<___E>,
10386{
10387 #[inline]
10388 fn encode_option(
10389 this: Option<&mut Self>,
10390 encoder: &mut ___E,
10391 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
10392 ) -> Result<(), ::fidl_next::EncodeError> {
10393 if let Some(inner) = this {
10394 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
10395 ::fidl_next::WireBox::encode_present(out);
10396 } else {
10397 ::fidl_next::WireBox::encode_absent(out);
10398 }
10399
10400 Ok(())
10401 }
10402}
10403
10404impl ::fidl_next::TakeFrom<WireDirectoryCreateSymlinkRequest> for DirectoryCreateSymlinkRequest {
10405 #[inline]
10406 fn take_from(from: &WireDirectoryCreateSymlinkRequest) -> Self {
10407 Self {
10408 name: ::fidl_next::TakeFrom::take_from(&from.name),
10409
10410 target: ::fidl_next::TakeFrom::take_from(&from.target),
10411
10412 connection: ::fidl_next::TakeFrom::take_from(&from.connection),
10413 }
10414 }
10415}
10416
10417#[derive(Debug)]
10419#[repr(C)]
10420pub struct WireDirectoryCreateSymlinkRequest {
10421 pub name: ::fidl_next::WireString,
10422
10423 pub target: ::fidl_next::WireVector<u8>,
10424
10425 pub connection:
10426 ::fidl_next::ServerEnd<::fidl_next::fuchsia::WireOptionalChannel, crate::Symlink>,
10427}
10428
10429unsafe impl ::fidl_next::ZeroPadding for WireDirectoryCreateSymlinkRequest {
10430 #[inline]
10431 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
10432 unsafe {
10433 out.as_mut_ptr().cast::<u8>().add(36).write_bytes(0, 4);
10434 }
10435 }
10436}
10437
10438unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryCreateSymlinkRequest
10439where
10440 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
10441
10442 ___D: ::fidl_next::Decoder,
10443
10444 ___D: ::fidl_next::fuchsia::HandleDecoder,
10445{
10446 fn decode(
10447 slot: ::fidl_next::Slot<'_, Self>,
10448 decoder: &mut ___D,
10449 ) -> Result<(), ::fidl_next::DecodeError> {
10450 ::fidl_next::munge! {
10451 let Self {
10452 mut name,
10453 mut target,
10454 mut connection,
10455
10456 } = slot;
10457 }
10458
10459 ::fidl_next::Decode::decode(name.as_mut(), decoder)?;
10460
10461 let name = unsafe { name.deref_unchecked() };
10462
10463 if name.len() > 255 {
10464 return Err(::fidl_next::DecodeError::VectorTooLong {
10465 size: name.len() as u64,
10466 limit: 255,
10467 });
10468 }
10469
10470 ::fidl_next::Decode::decode(target.as_mut(), decoder)?;
10471
10472 let target = unsafe { target.deref_unchecked() };
10473
10474 if target.len() > 4095 {
10475 return Err(::fidl_next::DecodeError::VectorTooLong {
10476 size: target.len() as u64,
10477 limit: 4095,
10478 });
10479 }
10480
10481 ::fidl_next::Decode::decode(connection.as_mut(), decoder)?;
10482
10483 Ok(())
10484 }
10485}
10486
10487#[doc = " Directory defines a node which is capable of containing other Objects.\n"]
10489#[derive(Debug)]
10490pub struct Directory;
10491
10492impl ::fidl_next::Discoverable for Directory {
10493 const PROTOCOL_NAME: &'static str = "directory";
10494}
10495
10496pub mod directory {
10497 pub mod prelude {
10498 pub use crate::{
10499 directory, Directory, DirectoryClientHandler, DirectoryClientSender,
10500 DirectoryServerHandler, DirectoryServerSender,
10501 };
10502
10503 pub use crate::AdvisoryLockingAdvisoryLockRequest;
10504
10505 pub use crate::AdvisoryLockingAdvisoryLockResponse;
10506
10507 pub use crate::ConnectionInfo;
10508
10509 pub use crate::DirectoryCreateSymlinkRequest;
10510
10511 pub use crate::DirectoryDeprecatedOpenRequest;
10512
10513 pub use crate::DirectoryGetTokenResponse;
10514
10515 pub use crate::DirectoryLinkRequest;
10516
10517 pub use crate::DirectoryLinkResponse;
10518
10519 pub use crate::DirectoryOpenRequest;
10520
10521 pub use crate::DirectoryReadDirentsRequest;
10522
10523 pub use crate::DirectoryReadDirentsResponse;
10524
10525 pub use crate::DirectoryRenameRequest;
10526
10527 pub use crate::DirectoryRewindResponse;
10528
10529 pub use crate::DirectoryUnlinkRequest;
10530
10531 pub use crate::DirectoryWatchRequest;
10532
10533 pub use crate::DirectoryWatchResponse;
10534
10535 pub use crate::DirectoryCreateSymlinkResponse;
10536
10537 pub use crate::DirectoryRenameResponse;
10538
10539 pub use crate::DirectoryUnlinkResponse;
10540
10541 pub use crate::ExtendedAttributeValue;
10542
10543 pub use crate::MutableNodeAttributes;
10544
10545 pub use crate::NodeAttributes2;
10546
10547 pub use crate::NodeDeprecatedCloneRequest;
10548
10549 pub use crate::NodeDeprecatedGetFlagsResponse;
10550
10551 pub use crate::NodeDeprecatedSetFlagsRequest;
10552
10553 pub use crate::NodeDeprecatedSetFlagsResponse;
10554
10555 pub use crate::NodeGetAttrResponse;
10556
10557 pub use crate::NodeGetAttributesRequest;
10558
10559 pub use crate::NodeGetExtendedAttributeRequest;
10560
10561 pub use crate::NodeListExtendedAttributesRequest;
10562
10563 pub use crate::NodeOnOpenRequest;
10564
10565 pub use crate::NodeQueryFilesystemResponse;
10566
10567 pub use crate::NodeRemoveExtendedAttributeRequest;
10568
10569 pub use crate::NodeSetAttrRequest;
10570
10571 pub use crate::NodeSetAttrResponse;
10572
10573 pub use crate::NodeSetExtendedAttributeRequest;
10574
10575 pub use crate::NodeSetFlagsRequest;
10576
10577 pub use crate::NodeGetFlagsResponse;
10578
10579 pub use crate::NodeRemoveExtendedAttributeResponse;
10580
10581 pub use crate::NodeSetExtendedAttributeResponse;
10582
10583 pub use crate::NodeSetFlagsResponse;
10584
10585 pub use crate::NodeSyncResponse;
10586
10587 pub use crate::NodeUpdateAttributesResponse;
10588
10589 pub use crate::Representation;
10590
10591 pub use ::fidl_next_fuchsia_unknown::CloneableCloneRequest;
10592
10593 pub use ::fidl_next_fuchsia_unknown::CloseableCloseResponse;
10594
10595 pub use ::fidl_next_fuchsia_unknown::QueryableQueryResponse;
10596 }
10597
10598 pub struct AdvisoryLock;
10599
10600 impl ::fidl_next::Method for AdvisoryLock {
10601 const ORDINAL: u64 = 7992130864415541162;
10602
10603 type Protocol = crate::Directory;
10604
10605 type Request = crate::WireAdvisoryLockingAdvisoryLockRequest;
10606
10607 type Response = ::fidl_next::WireResult<
10608 crate::WireAdvisoryLockingAdvisoryLockResponse,
10609 ::fidl_next::WireI32,
10610 >;
10611 }
10612
10613 pub struct Clone;
10614
10615 impl ::fidl_next::Method for Clone {
10616 const ORDINAL: u64 = 2366825959783828089;
10617
10618 type Protocol = crate::Directory;
10619
10620 type Request = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest;
10621
10622 type Response = ::fidl_next::Never;
10623 }
10624
10625 pub struct Close;
10626
10627 impl ::fidl_next::Method for Close {
10628 const ORDINAL: u64 = 6540867515453498750;
10629
10630 type Protocol = crate::Directory;
10631
10632 type Request = ();
10633
10634 type Response = ::fidl_next::WireResult<
10635 ::fidl_next_fuchsia_unknown::WireCloseableCloseResponse,
10636 ::fidl_next::WireI32,
10637 >;
10638 }
10639
10640 pub struct Query;
10641
10642 impl ::fidl_next::Method for Query {
10643 const ORDINAL: u64 = 2763219980499352582;
10644
10645 type Protocol = crate::Directory;
10646
10647 type Request = ();
10648
10649 type Response = ::fidl_next_fuchsia_unknown::WireQueryableQueryResponse;
10650 }
10651
10652 pub struct DeprecatedClone;
10653
10654 impl ::fidl_next::Method for DeprecatedClone {
10655 const ORDINAL: u64 = 6512600400724287855;
10656
10657 type Protocol = crate::Directory;
10658
10659 type Request = crate::WireNodeDeprecatedCloneRequest;
10660
10661 type Response = ::fidl_next::Never;
10662 }
10663
10664 pub struct OnOpen;
10665
10666 impl ::fidl_next::Method for OnOpen {
10667 const ORDINAL: u64 = 9207534335756671346;
10668
10669 type Protocol = crate::Directory;
10670
10671 type Request = ::fidl_next::Never;
10672
10673 type Response = crate::WireNodeOnOpenRequest;
10674 }
10675
10676 pub struct GetAttr;
10677
10678 impl ::fidl_next::Method for GetAttr {
10679 const ORDINAL: u64 = 8689798978500614909;
10680
10681 type Protocol = crate::Directory;
10682
10683 type Request = ();
10684
10685 type Response = crate::WireNodeGetAttrResponse;
10686 }
10687
10688 pub struct SetAttr;
10689
10690 impl ::fidl_next::Method for SetAttr {
10691 const ORDINAL: u64 = 4721673413776871238;
10692
10693 type Protocol = crate::Directory;
10694
10695 type Request = crate::WireNodeSetAttrRequest;
10696
10697 type Response = crate::WireNodeSetAttrResponse;
10698 }
10699
10700 pub struct DeprecatedGetFlags;
10701
10702 impl ::fidl_next::Method for DeprecatedGetFlags {
10703 const ORDINAL: u64 = 6595803110182632097;
10704
10705 type Protocol = crate::Directory;
10706
10707 type Request = ();
10708
10709 type Response = crate::WireNodeDeprecatedGetFlagsResponse;
10710 }
10711
10712 pub struct DeprecatedSetFlags;
10713
10714 impl ::fidl_next::Method for DeprecatedSetFlags {
10715 const ORDINAL: u64 = 5950864159036794675;
10716
10717 type Protocol = crate::Directory;
10718
10719 type Request = crate::WireNodeDeprecatedSetFlagsRequest;
10720
10721 type Response = crate::WireNodeDeprecatedSetFlagsResponse;
10722 }
10723
10724 pub struct GetFlags;
10725
10726 impl ::fidl_next::Method for GetFlags {
10727 const ORDINAL: u64 = 105530239381466147;
10728
10729 type Protocol = crate::Directory;
10730
10731 type Request = ();
10732
10733 type Response =
10734 ::fidl_next::WireFlexibleResult<crate::WireNodeGetFlagsResponse, ::fidl_next::WireI32>;
10735 }
10736
10737 pub struct SetFlags;
10738
10739 impl ::fidl_next::Method for SetFlags {
10740 const ORDINAL: u64 = 6172186066099445416;
10741
10742 type Protocol = crate::Directory;
10743
10744 type Request = crate::WireNodeSetFlagsRequest;
10745
10746 type Response =
10747 ::fidl_next::WireFlexibleResult<crate::WireNodeSetFlagsResponse, ::fidl_next::WireI32>;
10748 }
10749
10750 pub struct QueryFilesystem;
10751
10752 impl ::fidl_next::Method for QueryFilesystem {
10753 const ORDINAL: u64 = 8013111122914313744;
10754
10755 type Protocol = crate::Directory;
10756
10757 type Request = ();
10758
10759 type Response = crate::WireNodeQueryFilesystemResponse;
10760 }
10761
10762 pub struct OnRepresentation;
10763
10764 impl ::fidl_next::Method for OnRepresentation {
10765 const ORDINAL: u64 = 6679970090861613324;
10766
10767 type Protocol = crate::Directory;
10768
10769 type Request = ::fidl_next::Never;
10770
10771 type Response = crate::WireRepresentation;
10772 }
10773
10774 pub struct GetConnectionInfo;
10775
10776 impl ::fidl_next::Method for GetConnectionInfo {
10777 const ORDINAL: u64 = 6362521381364198667;
10778
10779 type Protocol = crate::Directory;
10780
10781 type Request = ();
10782
10783 type Response = crate::WireConnectionInfo;
10784 }
10785
10786 pub struct GetAttributes;
10787
10788 impl ::fidl_next::Method for GetAttributes {
10789 const ORDINAL: u64 = 4414537700416816443;
10790
10791 type Protocol = crate::Directory;
10792
10793 type Request = crate::WireNodeGetAttributesRequest;
10794
10795 type Response = ::fidl_next::WireResult<crate::WireNodeAttributes2, ::fidl_next::WireI32>;
10796 }
10797
10798 pub struct UpdateAttributes;
10799
10800 impl ::fidl_next::Method for UpdateAttributes {
10801 const ORDINAL: u64 = 3677402239314018056;
10802
10803 type Protocol = crate::Directory;
10804
10805 type Request = crate::WireMutableNodeAttributes;
10806
10807 type Response =
10808 ::fidl_next::WireResult<crate::WireNodeUpdateAttributesResponse, ::fidl_next::WireI32>;
10809 }
10810
10811 pub struct Sync;
10812
10813 impl ::fidl_next::Method for Sync {
10814 const ORDINAL: u64 = 3196473584242777161;
10815
10816 type Protocol = crate::Directory;
10817
10818 type Request = ();
10819
10820 type Response = ::fidl_next::WireResult<crate::WireNodeSyncResponse, ::fidl_next::WireI32>;
10821 }
10822
10823 pub struct ListExtendedAttributes;
10824
10825 impl ::fidl_next::Method for ListExtendedAttributes {
10826 const ORDINAL: u64 = 5431626189872037072;
10827
10828 type Protocol = crate::Directory;
10829
10830 type Request = crate::WireNodeListExtendedAttributesRequest;
10831
10832 type Response = ::fidl_next::Never;
10833 }
10834
10835 pub struct GetExtendedAttribute;
10836
10837 impl ::fidl_next::Method for GetExtendedAttribute {
10838 const ORDINAL: u64 = 5043930208506967771;
10839
10840 type Protocol = crate::Directory;
10841
10842 type Request = crate::WireNodeGetExtendedAttributeRequest;
10843
10844 type Response =
10845 ::fidl_next::WireResult<crate::WireExtendedAttributeValue, ::fidl_next::WireI32>;
10846 }
10847
10848 pub struct SetExtendedAttribute;
10849
10850 impl ::fidl_next::Method for SetExtendedAttribute {
10851 const ORDINAL: u64 = 5374223046099989052;
10852
10853 type Protocol = crate::Directory;
10854
10855 type Request = crate::WireNodeSetExtendedAttributeRequest;
10856
10857 type Response = ::fidl_next::WireResult<
10858 crate::WireNodeSetExtendedAttributeResponse,
10859 ::fidl_next::WireI32,
10860 >;
10861 }
10862
10863 pub struct RemoveExtendedAttribute;
10864
10865 impl ::fidl_next::Method for RemoveExtendedAttribute {
10866 const ORDINAL: u64 = 8794297771444732717;
10867
10868 type Protocol = crate::Directory;
10869
10870 type Request = crate::WireNodeRemoveExtendedAttributeRequest;
10871
10872 type Response = ::fidl_next::WireResult<
10873 crate::WireNodeRemoveExtendedAttributeResponse,
10874 ::fidl_next::WireI32,
10875 >;
10876 }
10877
10878 pub struct DeprecatedOpen;
10879
10880 impl ::fidl_next::Method for DeprecatedOpen {
10881 const ORDINAL: u64 = 3193127272456937152;
10882
10883 type Protocol = crate::Directory;
10884
10885 type Request = crate::WireDirectoryDeprecatedOpenRequest;
10886
10887 type Response = ::fidl_next::Never;
10888 }
10889
10890 pub struct Open;
10891
10892 impl ::fidl_next::Method for Open {
10893 const ORDINAL: u64 = 6236883748953765593;
10894
10895 type Protocol = crate::Directory;
10896
10897 type Request = crate::WireDirectoryOpenRequest;
10898
10899 type Response = ::fidl_next::Never;
10900 }
10901
10902 pub struct ReadDirents;
10903
10904 impl ::fidl_next::Method for ReadDirents {
10905 const ORDINAL: u64 = 3855785432100874762;
10906
10907 type Protocol = crate::Directory;
10908
10909 type Request = crate::WireDirectoryReadDirentsRequest;
10910
10911 type Response = crate::WireDirectoryReadDirentsResponse;
10912 }
10913
10914 pub struct Rewind;
10915
10916 impl ::fidl_next::Method for Rewind {
10917 const ORDINAL: u64 = 1635123508515392625;
10918
10919 type Protocol = crate::Directory;
10920
10921 type Request = ();
10922
10923 type Response = crate::WireDirectoryRewindResponse;
10924 }
10925
10926 pub struct GetToken;
10927
10928 impl ::fidl_next::Method for GetToken {
10929 const ORDINAL: u64 = 2787337947777369685;
10930
10931 type Protocol = crate::Directory;
10932
10933 type Request = ();
10934
10935 type Response = crate::WireDirectoryGetTokenResponse;
10936 }
10937
10938 pub struct Link;
10939
10940 impl ::fidl_next::Method for Link {
10941 const ORDINAL: u64 = 8360374984291987687;
10942
10943 type Protocol = crate::Directory;
10944
10945 type Request = crate::WireDirectoryLinkRequest;
10946
10947 type Response = crate::WireDirectoryLinkResponse;
10948 }
10949
10950 pub struct Unlink;
10951
10952 impl ::fidl_next::Method for Unlink {
10953 const ORDINAL: u64 = 8433556716759383021;
10954
10955 type Protocol = crate::Directory;
10956
10957 type Request = crate::WireDirectoryUnlinkRequest;
10958
10959 type Response =
10960 ::fidl_next::WireResult<crate::WireDirectoryUnlinkResponse, ::fidl_next::WireI32>;
10961 }
10962
10963 pub struct Rename;
10964
10965 impl ::fidl_next::Method for Rename {
10966 const ORDINAL: u64 = 8097726607824333022;
10967
10968 type Protocol = crate::Directory;
10969
10970 type Request = crate::WireDirectoryRenameRequest;
10971
10972 type Response =
10973 ::fidl_next::WireResult<crate::WireDirectoryRenameResponse, ::fidl_next::WireI32>;
10974 }
10975
10976 pub struct CreateSymlink;
10977
10978 impl ::fidl_next::Method for CreateSymlink {
10979 const ORDINAL: u64 = 2435901052462315657;
10980
10981 type Protocol = crate::Directory;
10982
10983 type Request = crate::WireDirectoryCreateSymlinkRequest;
10984
10985 type Response = ::fidl_next::WireResult<
10986 crate::WireDirectoryCreateSymlinkResponse,
10987 ::fidl_next::WireI32,
10988 >;
10989 }
10990
10991 pub struct Watch;
10992
10993 impl ::fidl_next::Method for Watch {
10994 const ORDINAL: u64 = 6275512344170098065;
10995
10996 type Protocol = crate::Directory;
10997
10998 type Request = crate::WireDirectoryWatchRequest;
10999
11000 type Response = crate::WireDirectoryWatchResponse;
11001 }
11002}
11003
11004pub trait DirectoryClientSender {
11006 type Transport: ::fidl_next::Transport;
11007
11008 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
11009 fn advisory_lock<___R>(
11010 &self,
11011 request: &mut ___R,
11012 ) -> Result<
11013 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::AdvisoryLock>,
11014 ::fidl_next::EncodeError,
11015 >
11016 where
11017 ___R: ::fidl_next::Encode<
11018 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11019 Encoded = crate::WireAdvisoryLockingAdvisoryLockRequest,
11020 >;
11021
11022 fn clone<___R>(
11023 &self,
11024 request: &mut ___R,
11025 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11026 where
11027 ___R: ::fidl_next::Encode<
11028 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11029 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
11030 >;
11031
11032 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
11033 fn close(
11034 &self,
11035 ) -> Result<
11036 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Close>,
11037 ::fidl_next::EncodeError,
11038 >;
11039
11040 fn query(
11041 &self,
11042 ) -> Result<
11043 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Query>,
11044 ::fidl_next::EncodeError,
11045 >;
11046
11047 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
11048 fn deprecated_clone<___R>(
11049 &self,
11050 request: &mut ___R,
11051 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11052 where
11053 ___R: ::fidl_next::Encode<
11054 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11055 Encoded = crate::WireNodeDeprecatedCloneRequest,
11056 >;
11057
11058 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
11059 fn get_attr(
11060 &self,
11061 ) -> Result<
11062 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetAttr>,
11063 ::fidl_next::EncodeError,
11064 >;
11065
11066 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
11067 fn set_attr<___R>(
11068 &self,
11069 request: &mut ___R,
11070 ) -> Result<
11071 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::SetAttr>,
11072 ::fidl_next::EncodeError,
11073 >
11074 where
11075 ___R: ::fidl_next::Encode<
11076 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11077 Encoded = crate::WireNodeSetAttrRequest,
11078 >;
11079
11080 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
11081 fn deprecated_get_flags(
11082 &self,
11083 ) -> Result<
11084 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::DeprecatedGetFlags>,
11085 ::fidl_next::EncodeError,
11086 >;
11087
11088 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
11089 fn deprecated_set_flags<___R>(
11090 &self,
11091 request: &mut ___R,
11092 ) -> Result<
11093 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::DeprecatedSetFlags>,
11094 ::fidl_next::EncodeError,
11095 >
11096 where
11097 ___R: ::fidl_next::Encode<
11098 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11099 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
11100 >;
11101
11102 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
11103 fn get_flags(
11104 &self,
11105 ) -> Result<
11106 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetFlags>,
11107 ::fidl_next::EncodeError,
11108 >;
11109
11110 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
11111 fn set_flags<___R>(
11112 &self,
11113 request: &mut ___R,
11114 ) -> Result<
11115 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::SetFlags>,
11116 ::fidl_next::EncodeError,
11117 >
11118 where
11119 ___R: ::fidl_next::Encode<
11120 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11121 Encoded = crate::WireNodeSetFlagsRequest,
11122 >;
11123
11124 #[doc = " Query the filesystem for filesystem-specific information.\n"]
11125 fn query_filesystem(
11126 &self,
11127 ) -> Result<
11128 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::QueryFilesystem>,
11129 ::fidl_next::EncodeError,
11130 >;
11131
11132 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
11133 fn get_connection_info(
11134 &self,
11135 ) -> Result<
11136 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetConnectionInfo>,
11137 ::fidl_next::EncodeError,
11138 >;
11139
11140 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
11141 fn get_attributes<___R>(
11142 &self,
11143 request: &mut ___R,
11144 ) -> Result<
11145 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetAttributes>,
11146 ::fidl_next::EncodeError,
11147 >
11148 where
11149 ___R: ::fidl_next::Encode<
11150 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11151 Encoded = crate::WireNodeGetAttributesRequest,
11152 >;
11153
11154 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
11155 fn update_attributes<___R>(
11156 &self,
11157 request: &mut ___R,
11158 ) -> Result<
11159 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::UpdateAttributes>,
11160 ::fidl_next::EncodeError,
11161 >
11162 where
11163 ___R: ::fidl_next::Encode<
11164 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11165 Encoded = crate::WireMutableNodeAttributes,
11166 >;
11167
11168 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
11169 fn sync(
11170 &self,
11171 ) -> Result<
11172 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Sync>,
11173 ::fidl_next::EncodeError,
11174 >;
11175
11176 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
11177 fn list_extended_attributes<___R>(
11178 &self,
11179 request: &mut ___R,
11180 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11181 where
11182 ___R: ::fidl_next::Encode<
11183 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11184 Encoded = crate::WireNodeListExtendedAttributesRequest,
11185 >;
11186
11187 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
11188 fn get_extended_attribute<___R>(
11189 &self,
11190 request: &mut ___R,
11191 ) -> Result<
11192 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetExtendedAttribute>,
11193 ::fidl_next::EncodeError,
11194 >
11195 where
11196 ___R: ::fidl_next::Encode<
11197 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11198 Encoded = crate::WireNodeGetExtendedAttributeRequest,
11199 >;
11200
11201 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
11202 fn set_extended_attribute<___R>(
11203 &self,
11204 request: &mut ___R,
11205 ) -> Result<
11206 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::SetExtendedAttribute>,
11207 ::fidl_next::EncodeError,
11208 >
11209 where
11210 ___R: ::fidl_next::Encode<
11211 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11212 Encoded = crate::WireNodeSetExtendedAttributeRequest,
11213 >;
11214
11215 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
11216 fn remove_extended_attribute<___R>(
11217 &self,
11218 request: &mut ___R,
11219 ) -> Result<
11220 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::RemoveExtendedAttribute>,
11221 ::fidl_next::EncodeError,
11222 >
11223 where
11224 ___R: ::fidl_next::Encode<
11225 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11226 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
11227 >;
11228
11229 #[doc = " DEPRECATED - Use `fuchsia.io/Directory.Open` instead.\n"]
11230 fn deprecated_open<___R>(
11231 &self,
11232 request: &mut ___R,
11233 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11234 where
11235 ___R: ::fidl_next::Encode<
11236 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11237 Encoded = crate::WireDirectoryDeprecatedOpenRequest,
11238 >;
11239
11240 #[doc = " Open (or create) a node relative to this directory. Any errors are communicated via an\n epitaph sent on the `object` channel.\n\n Errors:\n * `ZX_ERR_BAD_PATH` if `path` is invalid\n * See [`Flags`] for other errors which may be communicated based on `flags`\n"]
11241 fn open<___R>(
11242 &self,
11243 request: &mut ___R,
11244 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11245 where
11246 ___R: ::fidl_next::Encode<
11247 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11248 Encoded = crate::WireDirectoryOpenRequest,
11249 >;
11250
11251 #[doc = " Reads a collection of variably sized dirents into a buffer.\n The number of dirents in a directory may be very large: akin to\n calling read multiple times on a file, directories have a seek\n offset which is updated on subsequent calls to ReadDirents.\n Each call to ReadDirents will only return whole dirent structures,\n they will not get split across ReadDirent calls. When the seek\n offset reaches the end, `dirents` will be empty.\n\n These dirents are of the form:\n ```\n struct dirent {\n // Describes the inode of the entry.\n uint64 ino;\n // Describes the length of the dirent name in bytes.\n uint8 size;\n // Describes the type of the entry. Aligned with the\n // POSIX d_type values. Use `DirentType` constants.\n uint8 type;\n // Unterminated name of entry.\n char name[0];\n }\n ```\n\n This method does not require any rights, since one could always probe for\n directory contents by triggering name conflicts during file creation.\n"]
11252 fn read_dirents<___R>(
11253 &self,
11254 request: &mut ___R,
11255 ) -> Result<
11256 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::ReadDirents>,
11257 ::fidl_next::EncodeError,
11258 >
11259 where
11260 ___R: ::fidl_next::Encode<
11261 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11262 Encoded = crate::WireDirectoryReadDirentsRequest,
11263 >;
11264
11265 #[doc = " Resets the directory seek offset.\n\n This method does not require any rights, similar to ReadDirents.\n"]
11266 fn rewind(
11267 &self,
11268 ) -> Result<
11269 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Rewind>,
11270 ::fidl_next::EncodeError,
11271 >;
11272
11273 #[doc = " Acquires a token to a Directory which can be used to identify access to it at a later point\n in time. The token will remain valid for as long as the connection requesting the token\n remains open.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
11274 fn get_token(
11275 &self,
11276 ) -> Result<
11277 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetToken>,
11278 ::fidl_next::EncodeError,
11279 >;
11280
11281 #[doc = " Creates a link to an object named src by the name dst, within a directory represented by\n token.\n\n `src` must be a resolved object name. Including \"/\" in the string will\n return `ZX_ERR_INVALID_ARGS`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will\n return `ZX_ERR_INVALID_ARGS`.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE` and\n `OpenFlags.RIGHT_READABLE`, otherwise returns `ZX_ERR_BAD_HANDLE`.\n\n This will be atomic with respect to renaming or unlinking the source concurrently e.g. if\n there are two actors operating concurrently, and one actor performs a rename that affects\n the source within this directory, and the other does a link, each will appear to occur\n atomically in an unspecified order.\n"]
11282 fn link<___R>(
11283 &self,
11284 request: &mut ___R,
11285 ) -> Result<
11286 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Link>,
11287 ::fidl_next::EncodeError,
11288 >
11289 where
11290 ___R: ::fidl_next::Encode<
11291 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11292 Encoded = crate::WireDirectoryLinkRequest,
11293 >;
11294
11295 #[doc = " Removes a child node from the this directory\'s list of entries.\n\n Note: this does not guarantee that the underlying object is destroyed.\n Although the link will be removed from the containing directory,\n objects with multiple references (such as files which are still open)\n will not actually be destroyed until all references are closed.\n\n * error `ZX_ERR_ACCESS_DENIED` if the connection does not have\n [`Rights.WRITE_BYTES`].\n * error `ZX_ERR_NOT_SUPPORTED` if the underlying filesystem does not\n support writing.\n * error `ZX_ERR_BAD_PATH` if `name` is invalid.\n * error `ZX_ERR_NOT_EMPTY` if `name` refers to a non-empty directory.\n * error `ZX_ERR_UNAVAILABLE` if `name` refers to a mount point,\n containing a remote channel.\n * error `ZX_ERR_NOT_DIR` if the options requested a directory but\n something other than a directory was found.\n\n Other errors may be returned for filesystem-specific reasons.\n\n This method requires the following rights:\n\n * [`Rights.ENUMERATE`]\n * [`Rights.MODIFY_DIRECTORY`]\n"]
11296 fn unlink<___R>(
11297 &self,
11298 request: &mut ___R,
11299 ) -> Result<
11300 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Unlink>,
11301 ::fidl_next::EncodeError,
11302 >
11303 where
11304 ___R: ::fidl_next::Encode<
11305 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11306 Encoded = crate::WireDirectoryUnlinkRequest,
11307 >;
11308
11309 #[doc = " Renames a node named `src` to the name `dst`, in a directory represented\n by `dst_parent_token`.\n\n `src` and `dst` must be valid node names.\n See [`Name`] for what constitutes a valid name.\n\n This method requires the following rights on both the current connection, and the connection\n identified by `dst_parent_token`:\n\n * [`Rights.ENUMERATE`]\n * [`Rights.MODIFY_DIRECTORY`]\n\n The following requirements are necessary to avoid rights escalations.\n\n If the source and destination directory differ, the source directory must also have the\n maximal set of abilities supported for files, which would typically be\n [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`], [`Rights.GET_ATTRIBUTES`] and\n [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also support the [`Rights.EXECUTE`]\n right.\n\n If `src` refers to a directory, and differs from the destination directory, then the source\n directory must have also have the [`Rights.CONNECT`] and [`Rights.TRAVERSE`] rights.\n\n * error `ZX_ERR_INVALID_ARGS` if `src` or `dst` is invalid.\n * error `ZX_ERR_ACCESS_DENIED` for insufficient rights.\n"]
11310 fn rename<___R>(
11311 &self,
11312 request: &mut ___R,
11313 ) -> Result<
11314 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Rename>,
11315 ::fidl_next::EncodeError,
11316 >
11317 where
11318 ___R: ::fidl_next::Encode<
11319 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11320 Encoded = crate::WireDirectoryRenameRequest,
11321 >;
11322
11323 #[doc = " Creates a symbolic link.\n\n `name` is the name to be given to the created symbolic link.\n `target` is the target of the symbolic link, which has no meaning on the server. The server\n will perform no validation of `target` except for a server chosen maximum length.\n `connection` is an optional server end of a channel that will speak the Symlink protocol\n on the successfully created node.\n\n * [`Rights.MODIFY_DIRECTORY`]\n\n * error `ZX_ERR_ALREADY_EXISTS` if `name` already exists.\n * error `ZX_ERR_BAD_PATH` if `target` exceeds the server length limit for symbolic links.\n * error `ZX_ERR_INVALID_ARGS` if `name` is not a valid [`Name`].\n * error `ZX_ERR_NOT_SUPPORTED` if creating symbolic links is not supported by the server.\n"]
11324 fn create_symlink<___R>(
11325 &self,
11326 request: &mut ___R,
11327 ) -> Result<
11328 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::CreateSymlink>,
11329 ::fidl_next::EncodeError,
11330 >
11331 where
11332 ___R: ::fidl_next::Encode<
11333 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11334 Encoded = crate::WireDirectoryCreateSymlinkRequest,
11335 >;
11336
11337 #[doc = " Watches a directory, receiving events of added messages on the\n watcher request channel.\n\n Options must be zero; it is reserved.\n\n This method does not require any rights, similar to ReadDirents.\n"]
11338 fn watch<___R>(
11339 &self,
11340 request: &mut ___R,
11341 ) -> Result<
11342 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Watch>,
11343 ::fidl_next::EncodeError,
11344 >
11345 where
11346 ___R: ::fidl_next::Encode<
11347 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11348 Encoded = crate::WireDirectoryWatchRequest,
11349 >;
11350}
11351
11352impl<___T> DirectoryClientSender for ::fidl_next::ClientSender<___T, Directory>
11353where
11354 ___T: ::fidl_next::Transport,
11355{
11356 type Transport = ___T;
11357
11358 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
11359 fn advisory_lock<___R>(
11360 &self,
11361 request: &mut ___R,
11362 ) -> Result<
11363 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::AdvisoryLock>,
11364 ::fidl_next::EncodeError,
11365 >
11366 where
11367 ___R: ::fidl_next::Encode<
11368 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11369 Encoded = crate::WireAdvisoryLockingAdvisoryLockRequest,
11370 >,
11371 {
11372 self.as_untyped()
11373 .send_two_way(7992130864415541162, request)
11374 .map(::fidl_next::ResponseFuture::from_untyped)
11375 }
11376
11377 fn clone<___R>(
11378 &self,
11379 request: &mut ___R,
11380 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11381 where
11382 ___R: ::fidl_next::Encode<
11383 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11384 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
11385 >,
11386 {
11387 self.as_untyped().send_one_way(2366825959783828089, request)
11388 }
11389
11390 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
11391 fn close(
11392 &self,
11393 ) -> Result<
11394 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Close>,
11395 ::fidl_next::EncodeError,
11396 > {
11397 self.as_untyped()
11398 .send_two_way(6540867515453498750, &mut ())
11399 .map(::fidl_next::ResponseFuture::from_untyped)
11400 }
11401
11402 fn query(
11403 &self,
11404 ) -> Result<
11405 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Query>,
11406 ::fidl_next::EncodeError,
11407 > {
11408 self.as_untyped()
11409 .send_two_way(2763219980499352582, &mut ())
11410 .map(::fidl_next::ResponseFuture::from_untyped)
11411 }
11412
11413 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
11414 fn deprecated_clone<___R>(
11415 &self,
11416 request: &mut ___R,
11417 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11418 where
11419 ___R: ::fidl_next::Encode<
11420 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11421 Encoded = crate::WireNodeDeprecatedCloneRequest,
11422 >,
11423 {
11424 self.as_untyped().send_one_way(6512600400724287855, request)
11425 }
11426
11427 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
11428 fn get_attr(
11429 &self,
11430 ) -> Result<
11431 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetAttr>,
11432 ::fidl_next::EncodeError,
11433 > {
11434 self.as_untyped()
11435 .send_two_way(8689798978500614909, &mut ())
11436 .map(::fidl_next::ResponseFuture::from_untyped)
11437 }
11438
11439 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
11440 fn set_attr<___R>(
11441 &self,
11442 request: &mut ___R,
11443 ) -> Result<
11444 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::SetAttr>,
11445 ::fidl_next::EncodeError,
11446 >
11447 where
11448 ___R: ::fidl_next::Encode<
11449 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11450 Encoded = crate::WireNodeSetAttrRequest,
11451 >,
11452 {
11453 self.as_untyped()
11454 .send_two_way(4721673413776871238, request)
11455 .map(::fidl_next::ResponseFuture::from_untyped)
11456 }
11457
11458 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
11459 fn deprecated_get_flags(
11460 &self,
11461 ) -> Result<
11462 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::DeprecatedGetFlags>,
11463 ::fidl_next::EncodeError,
11464 > {
11465 self.as_untyped()
11466 .send_two_way(6595803110182632097, &mut ())
11467 .map(::fidl_next::ResponseFuture::from_untyped)
11468 }
11469
11470 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
11471 fn deprecated_set_flags<___R>(
11472 &self,
11473 request: &mut ___R,
11474 ) -> Result<
11475 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::DeprecatedSetFlags>,
11476 ::fidl_next::EncodeError,
11477 >
11478 where
11479 ___R: ::fidl_next::Encode<
11480 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11481 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
11482 >,
11483 {
11484 self.as_untyped()
11485 .send_two_way(5950864159036794675, request)
11486 .map(::fidl_next::ResponseFuture::from_untyped)
11487 }
11488
11489 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
11490 fn get_flags(
11491 &self,
11492 ) -> Result<
11493 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetFlags>,
11494 ::fidl_next::EncodeError,
11495 > {
11496 self.as_untyped()
11497 .send_two_way(105530239381466147, &mut ())
11498 .map(::fidl_next::ResponseFuture::from_untyped)
11499 }
11500
11501 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
11502 fn set_flags<___R>(
11503 &self,
11504 request: &mut ___R,
11505 ) -> Result<
11506 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::SetFlags>,
11507 ::fidl_next::EncodeError,
11508 >
11509 where
11510 ___R: ::fidl_next::Encode<
11511 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11512 Encoded = crate::WireNodeSetFlagsRequest,
11513 >,
11514 {
11515 self.as_untyped()
11516 .send_two_way(6172186066099445416, request)
11517 .map(::fidl_next::ResponseFuture::from_untyped)
11518 }
11519
11520 #[doc = " Query the filesystem for filesystem-specific information.\n"]
11521 fn query_filesystem(
11522 &self,
11523 ) -> Result<
11524 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::QueryFilesystem>,
11525 ::fidl_next::EncodeError,
11526 > {
11527 self.as_untyped()
11528 .send_two_way(8013111122914313744, &mut ())
11529 .map(::fidl_next::ResponseFuture::from_untyped)
11530 }
11531
11532 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
11533 fn get_connection_info(
11534 &self,
11535 ) -> Result<
11536 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetConnectionInfo>,
11537 ::fidl_next::EncodeError,
11538 > {
11539 self.as_untyped()
11540 .send_two_way(6362521381364198667, &mut ())
11541 .map(::fidl_next::ResponseFuture::from_untyped)
11542 }
11543
11544 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
11545 fn get_attributes<___R>(
11546 &self,
11547 request: &mut ___R,
11548 ) -> Result<
11549 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetAttributes>,
11550 ::fidl_next::EncodeError,
11551 >
11552 where
11553 ___R: ::fidl_next::Encode<
11554 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11555 Encoded = crate::WireNodeGetAttributesRequest,
11556 >,
11557 {
11558 self.as_untyped()
11559 .send_two_way(4414537700416816443, request)
11560 .map(::fidl_next::ResponseFuture::from_untyped)
11561 }
11562
11563 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
11564 fn update_attributes<___R>(
11565 &self,
11566 request: &mut ___R,
11567 ) -> Result<
11568 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::UpdateAttributes>,
11569 ::fidl_next::EncodeError,
11570 >
11571 where
11572 ___R: ::fidl_next::Encode<
11573 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11574 Encoded = crate::WireMutableNodeAttributes,
11575 >,
11576 {
11577 self.as_untyped()
11578 .send_two_way(3677402239314018056, request)
11579 .map(::fidl_next::ResponseFuture::from_untyped)
11580 }
11581
11582 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
11583 fn sync(
11584 &self,
11585 ) -> Result<
11586 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Sync>,
11587 ::fidl_next::EncodeError,
11588 > {
11589 self.as_untyped()
11590 .send_two_way(3196473584242777161, &mut ())
11591 .map(::fidl_next::ResponseFuture::from_untyped)
11592 }
11593
11594 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
11595 fn list_extended_attributes<___R>(
11596 &self,
11597 request: &mut ___R,
11598 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11599 where
11600 ___R: ::fidl_next::Encode<
11601 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11602 Encoded = crate::WireNodeListExtendedAttributesRequest,
11603 >,
11604 {
11605 self.as_untyped().send_one_way(5431626189872037072, request)
11606 }
11607
11608 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
11609 fn get_extended_attribute<___R>(
11610 &self,
11611 request: &mut ___R,
11612 ) -> Result<
11613 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetExtendedAttribute>,
11614 ::fidl_next::EncodeError,
11615 >
11616 where
11617 ___R: ::fidl_next::Encode<
11618 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11619 Encoded = crate::WireNodeGetExtendedAttributeRequest,
11620 >,
11621 {
11622 self.as_untyped()
11623 .send_two_way(5043930208506967771, request)
11624 .map(::fidl_next::ResponseFuture::from_untyped)
11625 }
11626
11627 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
11628 fn set_extended_attribute<___R>(
11629 &self,
11630 request: &mut ___R,
11631 ) -> Result<
11632 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::SetExtendedAttribute>,
11633 ::fidl_next::EncodeError,
11634 >
11635 where
11636 ___R: ::fidl_next::Encode<
11637 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11638 Encoded = crate::WireNodeSetExtendedAttributeRequest,
11639 >,
11640 {
11641 self.as_untyped()
11642 .send_two_way(5374223046099989052, request)
11643 .map(::fidl_next::ResponseFuture::from_untyped)
11644 }
11645
11646 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
11647 fn remove_extended_attribute<___R>(
11648 &self,
11649 request: &mut ___R,
11650 ) -> Result<
11651 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::RemoveExtendedAttribute>,
11652 ::fidl_next::EncodeError,
11653 >
11654 where
11655 ___R: ::fidl_next::Encode<
11656 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11657 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
11658 >,
11659 {
11660 self.as_untyped()
11661 .send_two_way(8794297771444732717, request)
11662 .map(::fidl_next::ResponseFuture::from_untyped)
11663 }
11664
11665 #[doc = " DEPRECATED - Use `fuchsia.io/Directory.Open` instead.\n"]
11666 fn deprecated_open<___R>(
11667 &self,
11668 request: &mut ___R,
11669 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11670 where
11671 ___R: ::fidl_next::Encode<
11672 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11673 Encoded = crate::WireDirectoryDeprecatedOpenRequest,
11674 >,
11675 {
11676 self.as_untyped().send_one_way(3193127272456937152, request)
11677 }
11678
11679 #[doc = " Open (or create) a node relative to this directory. Any errors are communicated via an\n epitaph sent on the `object` channel.\n\n Errors:\n * `ZX_ERR_BAD_PATH` if `path` is invalid\n * See [`Flags`] for other errors which may be communicated based on `flags`\n"]
11680 fn open<___R>(
11681 &self,
11682 request: &mut ___R,
11683 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11684 where
11685 ___R: ::fidl_next::Encode<
11686 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11687 Encoded = crate::WireDirectoryOpenRequest,
11688 >,
11689 {
11690 self.as_untyped().send_one_way(6236883748953765593, request)
11691 }
11692
11693 #[doc = " Reads a collection of variably sized dirents into a buffer.\n The number of dirents in a directory may be very large: akin to\n calling read multiple times on a file, directories have a seek\n offset which is updated on subsequent calls to ReadDirents.\n Each call to ReadDirents will only return whole dirent structures,\n they will not get split across ReadDirent calls. When the seek\n offset reaches the end, `dirents` will be empty.\n\n These dirents are of the form:\n ```\n struct dirent {\n // Describes the inode of the entry.\n uint64 ino;\n // Describes the length of the dirent name in bytes.\n uint8 size;\n // Describes the type of the entry. Aligned with the\n // POSIX d_type values. Use `DirentType` constants.\n uint8 type;\n // Unterminated name of entry.\n char name[0];\n }\n ```\n\n This method does not require any rights, since one could always probe for\n directory contents by triggering name conflicts during file creation.\n"]
11694 fn read_dirents<___R>(
11695 &self,
11696 request: &mut ___R,
11697 ) -> Result<
11698 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::ReadDirents>,
11699 ::fidl_next::EncodeError,
11700 >
11701 where
11702 ___R: ::fidl_next::Encode<
11703 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11704 Encoded = crate::WireDirectoryReadDirentsRequest,
11705 >,
11706 {
11707 self.as_untyped()
11708 .send_two_way(3855785432100874762, request)
11709 .map(::fidl_next::ResponseFuture::from_untyped)
11710 }
11711
11712 #[doc = " Resets the directory seek offset.\n\n This method does not require any rights, similar to ReadDirents.\n"]
11713 fn rewind(
11714 &self,
11715 ) -> Result<
11716 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Rewind>,
11717 ::fidl_next::EncodeError,
11718 > {
11719 self.as_untyped()
11720 .send_two_way(1635123508515392625, &mut ())
11721 .map(::fidl_next::ResponseFuture::from_untyped)
11722 }
11723
11724 #[doc = " Acquires a token to a Directory which can be used to identify access to it at a later point\n in time. The token will remain valid for as long as the connection requesting the token\n remains open.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
11725 fn get_token(
11726 &self,
11727 ) -> Result<
11728 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::GetToken>,
11729 ::fidl_next::EncodeError,
11730 > {
11731 self.as_untyped()
11732 .send_two_way(2787337947777369685, &mut ())
11733 .map(::fidl_next::ResponseFuture::from_untyped)
11734 }
11735
11736 #[doc = " Creates a link to an object named src by the name dst, within a directory represented by\n token.\n\n `src` must be a resolved object name. Including \"/\" in the string will\n return `ZX_ERR_INVALID_ARGS`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will\n return `ZX_ERR_INVALID_ARGS`.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE` and\n `OpenFlags.RIGHT_READABLE`, otherwise returns `ZX_ERR_BAD_HANDLE`.\n\n This will be atomic with respect to renaming or unlinking the source concurrently e.g. if\n there are two actors operating concurrently, and one actor performs a rename that affects\n the source within this directory, and the other does a link, each will appear to occur\n atomically in an unspecified order.\n"]
11737 fn link<___R>(
11738 &self,
11739 request: &mut ___R,
11740 ) -> Result<
11741 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Link>,
11742 ::fidl_next::EncodeError,
11743 >
11744 where
11745 ___R: ::fidl_next::Encode<
11746 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11747 Encoded = crate::WireDirectoryLinkRequest,
11748 >,
11749 {
11750 self.as_untyped()
11751 .send_two_way(8360374984291987687, request)
11752 .map(::fidl_next::ResponseFuture::from_untyped)
11753 }
11754
11755 #[doc = " Removes a child node from the this directory\'s list of entries.\n\n Note: this does not guarantee that the underlying object is destroyed.\n Although the link will be removed from the containing directory,\n objects with multiple references (such as files which are still open)\n will not actually be destroyed until all references are closed.\n\n * error `ZX_ERR_ACCESS_DENIED` if the connection does not have\n [`Rights.WRITE_BYTES`].\n * error `ZX_ERR_NOT_SUPPORTED` if the underlying filesystem does not\n support writing.\n * error `ZX_ERR_BAD_PATH` if `name` is invalid.\n * error `ZX_ERR_NOT_EMPTY` if `name` refers to a non-empty directory.\n * error `ZX_ERR_UNAVAILABLE` if `name` refers to a mount point,\n containing a remote channel.\n * error `ZX_ERR_NOT_DIR` if the options requested a directory but\n something other than a directory was found.\n\n Other errors may be returned for filesystem-specific reasons.\n\n This method requires the following rights:\n\n * [`Rights.ENUMERATE`]\n * [`Rights.MODIFY_DIRECTORY`]\n"]
11756 fn unlink<___R>(
11757 &self,
11758 request: &mut ___R,
11759 ) -> Result<
11760 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Unlink>,
11761 ::fidl_next::EncodeError,
11762 >
11763 where
11764 ___R: ::fidl_next::Encode<
11765 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11766 Encoded = crate::WireDirectoryUnlinkRequest,
11767 >,
11768 {
11769 self.as_untyped()
11770 .send_two_way(8433556716759383021, request)
11771 .map(::fidl_next::ResponseFuture::from_untyped)
11772 }
11773
11774 #[doc = " Renames a node named `src` to the name `dst`, in a directory represented\n by `dst_parent_token`.\n\n `src` and `dst` must be valid node names.\n See [`Name`] for what constitutes a valid name.\n\n This method requires the following rights on both the current connection, and the connection\n identified by `dst_parent_token`:\n\n * [`Rights.ENUMERATE`]\n * [`Rights.MODIFY_DIRECTORY`]\n\n The following requirements are necessary to avoid rights escalations.\n\n If the source and destination directory differ, the source directory must also have the\n maximal set of abilities supported for files, which would typically be\n [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`], [`Rights.GET_ATTRIBUTES`] and\n [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also support the [`Rights.EXECUTE`]\n right.\n\n If `src` refers to a directory, and differs from the destination directory, then the source\n directory must have also have the [`Rights.CONNECT`] and [`Rights.TRAVERSE`] rights.\n\n * error `ZX_ERR_INVALID_ARGS` if `src` or `dst` is invalid.\n * error `ZX_ERR_ACCESS_DENIED` for insufficient rights.\n"]
11775 fn rename<___R>(
11776 &self,
11777 request: &mut ___R,
11778 ) -> Result<
11779 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Rename>,
11780 ::fidl_next::EncodeError,
11781 >
11782 where
11783 ___R: ::fidl_next::Encode<
11784 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11785 Encoded = crate::WireDirectoryRenameRequest,
11786 >,
11787 {
11788 self.as_untyped()
11789 .send_two_way(8097726607824333022, request)
11790 .map(::fidl_next::ResponseFuture::from_untyped)
11791 }
11792
11793 #[doc = " Creates a symbolic link.\n\n `name` is the name to be given to the created symbolic link.\n `target` is the target of the symbolic link, which has no meaning on the server. The server\n will perform no validation of `target` except for a server chosen maximum length.\n `connection` is an optional server end of a channel that will speak the Symlink protocol\n on the successfully created node.\n\n * [`Rights.MODIFY_DIRECTORY`]\n\n * error `ZX_ERR_ALREADY_EXISTS` if `name` already exists.\n * error `ZX_ERR_BAD_PATH` if `target` exceeds the server length limit for symbolic links.\n * error `ZX_ERR_INVALID_ARGS` if `name` is not a valid [`Name`].\n * error `ZX_ERR_NOT_SUPPORTED` if creating symbolic links is not supported by the server.\n"]
11794 fn create_symlink<___R>(
11795 &self,
11796 request: &mut ___R,
11797 ) -> Result<
11798 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::CreateSymlink>,
11799 ::fidl_next::EncodeError,
11800 >
11801 where
11802 ___R: ::fidl_next::Encode<
11803 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11804 Encoded = crate::WireDirectoryCreateSymlinkRequest,
11805 >,
11806 {
11807 self.as_untyped()
11808 .send_two_way(2435901052462315657, request)
11809 .map(::fidl_next::ResponseFuture::from_untyped)
11810 }
11811
11812 #[doc = " Watches a directory, receiving events of added messages on the\n watcher request channel.\n\n Options must be zero; it is reserved.\n\n This method does not require any rights, similar to ReadDirents.\n"]
11813 fn watch<___R>(
11814 &self,
11815 request: &mut ___R,
11816 ) -> Result<
11817 ::fidl_next::ResponseFuture<'_, Self::Transport, directory::Watch>,
11818 ::fidl_next::EncodeError,
11819 >
11820 where
11821 ___R: ::fidl_next::Encode<
11822 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11823 Encoded = crate::WireDirectoryWatchRequest,
11824 >,
11825 {
11826 self.as_untyped()
11827 .send_two_way(6275512344170098065, request)
11828 .map(::fidl_next::ResponseFuture::from_untyped)
11829 }
11830}
11831
11832pub trait DirectoryClientHandler<___T: ::fidl_next::Transport> {
11836 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
11837 fn on_open(
11838 &mut self,
11839 sender: &::fidl_next::ClientSender<___T, Directory>,
11840
11841 message: ::fidl_next::ResponseBuffer<___T, directory::OnOpen>,
11842 );
11843
11844 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
11845 fn on_representation(
11846 &mut self,
11847 sender: &::fidl_next::ClientSender<___T, Directory>,
11848
11849 message: ::fidl_next::ResponseBuffer<___T, directory::OnRepresentation>,
11850 );
11851
11852 fn on_unknown_interaction(
11853 &mut self,
11854 sender: &::fidl_next::ClientSender<___T, Directory>,
11855 ordinal: u64,
11856 ) {
11857 sender.close();
11858 }
11859}
11860
11861impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for Directory
11862where
11863 ___T: ::fidl_next::Transport,
11864 ___H: DirectoryClientHandler<___T>,
11865
11866 <directory::AdvisoryLock as ::fidl_next::Method>::Response:
11867 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11868
11869 <directory::Close as ::fidl_next::Method>::Response:
11870 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11871
11872 <directory::Query as ::fidl_next::Method>::Response:
11873 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11874
11875 <directory::OnOpen as ::fidl_next::Method>::Response:
11876 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11877
11878 <directory::GetAttr as ::fidl_next::Method>::Response:
11879 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11880
11881 <directory::SetAttr as ::fidl_next::Method>::Response:
11882 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11883
11884 <directory::DeprecatedGetFlags as ::fidl_next::Method>::Response:
11885 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11886
11887 <directory::DeprecatedSetFlags as ::fidl_next::Method>::Response:
11888 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11889
11890 <directory::GetFlags as ::fidl_next::Method>::Response:
11891 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11892
11893 <directory::SetFlags as ::fidl_next::Method>::Response:
11894 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11895
11896 <directory::QueryFilesystem as ::fidl_next::Method>::Response:
11897 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11898
11899 <directory::OnRepresentation as ::fidl_next::Method>::Response:
11900 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11901
11902 <directory::GetConnectionInfo as ::fidl_next::Method>::Response:
11903 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11904
11905 <directory::GetAttributes as ::fidl_next::Method>::Response:
11906 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11907
11908 <directory::UpdateAttributes as ::fidl_next::Method>::Response:
11909 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11910
11911 <directory::Sync as ::fidl_next::Method>::Response:
11912 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11913
11914 <directory::GetExtendedAttribute as ::fidl_next::Method>::Response:
11915 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11916
11917 <directory::SetExtendedAttribute as ::fidl_next::Method>::Response:
11918 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11919
11920 <directory::RemoveExtendedAttribute as ::fidl_next::Method>::Response:
11921 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11922
11923 <directory::ReadDirents as ::fidl_next::Method>::Response:
11924 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11925
11926 <directory::Rewind as ::fidl_next::Method>::Response:
11927 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11928
11929 <directory::GetToken as ::fidl_next::Method>::Response:
11930 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11931
11932 <directory::Link as ::fidl_next::Method>::Response:
11933 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11934
11935 <directory::Unlink as ::fidl_next::Method>::Response:
11936 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11937
11938 <directory::Rename as ::fidl_next::Method>::Response:
11939 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11940
11941 <directory::CreateSymlink as ::fidl_next::Method>::Response:
11942 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11943
11944 <directory::Watch as ::fidl_next::Method>::Response:
11945 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
11946{
11947 fn on_event(
11948 handler: &mut ___H,
11949 sender: &::fidl_next::ClientSender<___T, Self>,
11950 ordinal: u64,
11951 buffer: ___T::RecvBuffer,
11952 ) {
11953 match ordinal {
11954 9207534335756671346 => {
11955 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
11956 handler.on_open(sender, buffer);
11957 }
11958
11959 6679970090861613324 => {
11960 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
11961 handler.on_representation(sender, buffer);
11962 }
11963
11964 ordinal => handler.on_unknown_interaction(sender, ordinal),
11965 }
11966 }
11967}
11968
11969pub trait DirectoryServerSender {
11971 type Transport: ::fidl_next::Transport;
11972
11973 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
11974
11975 fn on_open<___R>(
11976 &self,
11977 request: &mut ___R,
11978 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11979 where
11980 ___R: ::fidl_next::Encode<
11981 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11982 Encoded = <directory::OnOpen as ::fidl_next::Method>::Response,
11983 >;
11984
11985 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
11986
11987 fn on_representation<___R>(
11988 &self,
11989 request: &mut ___R,
11990 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
11991 where
11992 ___R: ::fidl_next::Encode<
11993 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
11994 Encoded = <directory::OnRepresentation as ::fidl_next::Method>::Response,
11995 >;
11996}
11997
11998impl<___T> DirectoryServerSender for ::fidl_next::ServerSender<___T, Directory>
11999where
12000 ___T: ::fidl_next::Transport,
12001{
12002 type Transport = ___T;
12003
12004 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
12005
12006 fn on_open<___R>(
12007 &self,
12008 request: &mut ___R,
12009 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
12010 where
12011 ___R: ::fidl_next::Encode<
12012 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
12013 Encoded = <directory::OnOpen as ::fidl_next::Method>::Response,
12014 >,
12015 {
12016 self.as_untyped().send_event(9207534335756671346, request)
12017 }
12018
12019 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
12020
12021 fn on_representation<___R>(
12022 &self,
12023 request: &mut ___R,
12024 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
12025 where
12026 ___R: ::fidl_next::Encode<
12027 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
12028 Encoded = <directory::OnRepresentation as ::fidl_next::Method>::Response,
12029 >,
12030 {
12031 self.as_untyped().send_event(6679970090861613324, request)
12032 }
12033}
12034
12035pub trait DirectoryServerHandler<___T: ::fidl_next::Transport> {
12039 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
12040 fn advisory_lock(
12041 &mut self,
12042 sender: &::fidl_next::ServerSender<___T, Directory>,
12043
12044 request: ::fidl_next::RequestBuffer<___T, directory::AdvisoryLock>,
12045
12046 responder: ::fidl_next::Responder<directory::AdvisoryLock>,
12047 );
12048
12049 fn clone(
12050 &mut self,
12051 sender: &::fidl_next::ServerSender<___T, Directory>,
12052
12053 request: ::fidl_next::RequestBuffer<___T, directory::Clone>,
12054 );
12055
12056 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
12057 fn close(
12058 &mut self,
12059 sender: &::fidl_next::ServerSender<___T, Directory>,
12060
12061 responder: ::fidl_next::Responder<directory::Close>,
12062 );
12063
12064 fn query(
12065 &mut self,
12066 sender: &::fidl_next::ServerSender<___T, Directory>,
12067
12068 responder: ::fidl_next::Responder<directory::Query>,
12069 );
12070
12071 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
12072 fn deprecated_clone(
12073 &mut self,
12074 sender: &::fidl_next::ServerSender<___T, Directory>,
12075
12076 request: ::fidl_next::RequestBuffer<___T, directory::DeprecatedClone>,
12077 );
12078
12079 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
12080 fn get_attr(
12081 &mut self,
12082 sender: &::fidl_next::ServerSender<___T, Directory>,
12083
12084 responder: ::fidl_next::Responder<directory::GetAttr>,
12085 );
12086
12087 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
12088 fn set_attr(
12089 &mut self,
12090 sender: &::fidl_next::ServerSender<___T, Directory>,
12091
12092 request: ::fidl_next::RequestBuffer<___T, directory::SetAttr>,
12093
12094 responder: ::fidl_next::Responder<directory::SetAttr>,
12095 );
12096
12097 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
12098 fn deprecated_get_flags(
12099 &mut self,
12100 sender: &::fidl_next::ServerSender<___T, Directory>,
12101
12102 responder: ::fidl_next::Responder<directory::DeprecatedGetFlags>,
12103 );
12104
12105 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
12106 fn deprecated_set_flags(
12107 &mut self,
12108 sender: &::fidl_next::ServerSender<___T, Directory>,
12109
12110 request: ::fidl_next::RequestBuffer<___T, directory::DeprecatedSetFlags>,
12111
12112 responder: ::fidl_next::Responder<directory::DeprecatedSetFlags>,
12113 );
12114
12115 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
12116 fn get_flags(
12117 &mut self,
12118 sender: &::fidl_next::ServerSender<___T, Directory>,
12119
12120 responder: ::fidl_next::Responder<directory::GetFlags>,
12121 );
12122
12123 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
12124 fn set_flags(
12125 &mut self,
12126 sender: &::fidl_next::ServerSender<___T, Directory>,
12127
12128 request: ::fidl_next::RequestBuffer<___T, directory::SetFlags>,
12129
12130 responder: ::fidl_next::Responder<directory::SetFlags>,
12131 );
12132
12133 #[doc = " Query the filesystem for filesystem-specific information.\n"]
12134 fn query_filesystem(
12135 &mut self,
12136 sender: &::fidl_next::ServerSender<___T, Directory>,
12137
12138 responder: ::fidl_next::Responder<directory::QueryFilesystem>,
12139 );
12140
12141 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
12142 fn get_connection_info(
12143 &mut self,
12144 sender: &::fidl_next::ServerSender<___T, Directory>,
12145
12146 responder: ::fidl_next::Responder<directory::GetConnectionInfo>,
12147 );
12148
12149 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
12150 fn get_attributes(
12151 &mut self,
12152 sender: &::fidl_next::ServerSender<___T, Directory>,
12153
12154 request: ::fidl_next::RequestBuffer<___T, directory::GetAttributes>,
12155
12156 responder: ::fidl_next::Responder<directory::GetAttributes>,
12157 );
12158
12159 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
12160 fn update_attributes(
12161 &mut self,
12162 sender: &::fidl_next::ServerSender<___T, Directory>,
12163
12164 request: ::fidl_next::RequestBuffer<___T, directory::UpdateAttributes>,
12165
12166 responder: ::fidl_next::Responder<directory::UpdateAttributes>,
12167 );
12168
12169 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
12170 fn sync(
12171 &mut self,
12172 sender: &::fidl_next::ServerSender<___T, Directory>,
12173
12174 responder: ::fidl_next::Responder<directory::Sync>,
12175 );
12176
12177 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
12178 fn list_extended_attributes(
12179 &mut self,
12180 sender: &::fidl_next::ServerSender<___T, Directory>,
12181
12182 request: ::fidl_next::RequestBuffer<___T, directory::ListExtendedAttributes>,
12183 );
12184
12185 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
12186 fn get_extended_attribute(
12187 &mut self,
12188 sender: &::fidl_next::ServerSender<___T, Directory>,
12189
12190 request: ::fidl_next::RequestBuffer<___T, directory::GetExtendedAttribute>,
12191
12192 responder: ::fidl_next::Responder<directory::GetExtendedAttribute>,
12193 );
12194
12195 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
12196 fn set_extended_attribute(
12197 &mut self,
12198 sender: &::fidl_next::ServerSender<___T, Directory>,
12199
12200 request: ::fidl_next::RequestBuffer<___T, directory::SetExtendedAttribute>,
12201
12202 responder: ::fidl_next::Responder<directory::SetExtendedAttribute>,
12203 );
12204
12205 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
12206 fn remove_extended_attribute(
12207 &mut self,
12208 sender: &::fidl_next::ServerSender<___T, Directory>,
12209
12210 request: ::fidl_next::RequestBuffer<___T, directory::RemoveExtendedAttribute>,
12211
12212 responder: ::fidl_next::Responder<directory::RemoveExtendedAttribute>,
12213 );
12214
12215 #[doc = " DEPRECATED - Use `fuchsia.io/Directory.Open` instead.\n"]
12216 fn deprecated_open(
12217 &mut self,
12218 sender: &::fidl_next::ServerSender<___T, Directory>,
12219
12220 request: ::fidl_next::RequestBuffer<___T, directory::DeprecatedOpen>,
12221 );
12222
12223 #[doc = " Open (or create) a node relative to this directory. Any errors are communicated via an\n epitaph sent on the `object` channel.\n\n Errors:\n * `ZX_ERR_BAD_PATH` if `path` is invalid\n * See [`Flags`] for other errors which may be communicated based on `flags`\n"]
12224 fn open(
12225 &mut self,
12226 sender: &::fidl_next::ServerSender<___T, Directory>,
12227
12228 request: ::fidl_next::RequestBuffer<___T, directory::Open>,
12229 );
12230
12231 #[doc = " Reads a collection of variably sized dirents into a buffer.\n The number of dirents in a directory may be very large: akin to\n calling read multiple times on a file, directories have a seek\n offset which is updated on subsequent calls to ReadDirents.\n Each call to ReadDirents will only return whole dirent structures,\n they will not get split across ReadDirent calls. When the seek\n offset reaches the end, `dirents` will be empty.\n\n These dirents are of the form:\n ```\n struct dirent {\n // Describes the inode of the entry.\n uint64 ino;\n // Describes the length of the dirent name in bytes.\n uint8 size;\n // Describes the type of the entry. Aligned with the\n // POSIX d_type values. Use `DirentType` constants.\n uint8 type;\n // Unterminated name of entry.\n char name[0];\n }\n ```\n\n This method does not require any rights, since one could always probe for\n directory contents by triggering name conflicts during file creation.\n"]
12232 fn read_dirents(
12233 &mut self,
12234 sender: &::fidl_next::ServerSender<___T, Directory>,
12235
12236 request: ::fidl_next::RequestBuffer<___T, directory::ReadDirents>,
12237
12238 responder: ::fidl_next::Responder<directory::ReadDirents>,
12239 );
12240
12241 #[doc = " Resets the directory seek offset.\n\n This method does not require any rights, similar to ReadDirents.\n"]
12242 fn rewind(
12243 &mut self,
12244 sender: &::fidl_next::ServerSender<___T, Directory>,
12245
12246 responder: ::fidl_next::Responder<directory::Rewind>,
12247 );
12248
12249 #[doc = " Acquires a token to a Directory which can be used to identify access to it at a later point\n in time. The token will remain valid for as long as the connection requesting the token\n remains open.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
12250 fn get_token(
12251 &mut self,
12252 sender: &::fidl_next::ServerSender<___T, Directory>,
12253
12254 responder: ::fidl_next::Responder<directory::GetToken>,
12255 );
12256
12257 #[doc = " Creates a link to an object named src by the name dst, within a directory represented by\n token.\n\n `src` must be a resolved object name. Including \"/\" in the string will\n return `ZX_ERR_INVALID_ARGS`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will\n return `ZX_ERR_INVALID_ARGS`.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE` and\n `OpenFlags.RIGHT_READABLE`, otherwise returns `ZX_ERR_BAD_HANDLE`.\n\n This will be atomic with respect to renaming or unlinking the source concurrently e.g. if\n there are two actors operating concurrently, and one actor performs a rename that affects\n the source within this directory, and the other does a link, each will appear to occur\n atomically in an unspecified order.\n"]
12258 fn link(
12259 &mut self,
12260 sender: &::fidl_next::ServerSender<___T, Directory>,
12261
12262 request: ::fidl_next::RequestBuffer<___T, directory::Link>,
12263
12264 responder: ::fidl_next::Responder<directory::Link>,
12265 );
12266
12267 #[doc = " Removes a child node from the this directory\'s list of entries.\n\n Note: this does not guarantee that the underlying object is destroyed.\n Although the link will be removed from the containing directory,\n objects with multiple references (such as files which are still open)\n will not actually be destroyed until all references are closed.\n\n * error `ZX_ERR_ACCESS_DENIED` if the connection does not have\n [`Rights.WRITE_BYTES`].\n * error `ZX_ERR_NOT_SUPPORTED` if the underlying filesystem does not\n support writing.\n * error `ZX_ERR_BAD_PATH` if `name` is invalid.\n * error `ZX_ERR_NOT_EMPTY` if `name` refers to a non-empty directory.\n * error `ZX_ERR_UNAVAILABLE` if `name` refers to a mount point,\n containing a remote channel.\n * error `ZX_ERR_NOT_DIR` if the options requested a directory but\n something other than a directory was found.\n\n Other errors may be returned for filesystem-specific reasons.\n\n This method requires the following rights:\n\n * [`Rights.ENUMERATE`]\n * [`Rights.MODIFY_DIRECTORY`]\n"]
12268 fn unlink(
12269 &mut self,
12270 sender: &::fidl_next::ServerSender<___T, Directory>,
12271
12272 request: ::fidl_next::RequestBuffer<___T, directory::Unlink>,
12273
12274 responder: ::fidl_next::Responder<directory::Unlink>,
12275 );
12276
12277 #[doc = " Renames a node named `src` to the name `dst`, in a directory represented\n by `dst_parent_token`.\n\n `src` and `dst` must be valid node names.\n See [`Name`] for what constitutes a valid name.\n\n This method requires the following rights on both the current connection, and the connection\n identified by `dst_parent_token`:\n\n * [`Rights.ENUMERATE`]\n * [`Rights.MODIFY_DIRECTORY`]\n\n The following requirements are necessary to avoid rights escalations.\n\n If the source and destination directory differ, the source directory must also have the\n maximal set of abilities supported for files, which would typically be\n [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`], [`Rights.GET_ATTRIBUTES`] and\n [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also support the [`Rights.EXECUTE`]\n right.\n\n If `src` refers to a directory, and differs from the destination directory, then the source\n directory must have also have the [`Rights.CONNECT`] and [`Rights.TRAVERSE`] rights.\n\n * error `ZX_ERR_INVALID_ARGS` if `src` or `dst` is invalid.\n * error `ZX_ERR_ACCESS_DENIED` for insufficient rights.\n"]
12278 fn rename(
12279 &mut self,
12280 sender: &::fidl_next::ServerSender<___T, Directory>,
12281
12282 request: ::fidl_next::RequestBuffer<___T, directory::Rename>,
12283
12284 responder: ::fidl_next::Responder<directory::Rename>,
12285 );
12286
12287 #[doc = " Creates a symbolic link.\n\n `name` is the name to be given to the created symbolic link.\n `target` is the target of the symbolic link, which has no meaning on the server. The server\n will perform no validation of `target` except for a server chosen maximum length.\n `connection` is an optional server end of a channel that will speak the Symlink protocol\n on the successfully created node.\n\n * [`Rights.MODIFY_DIRECTORY`]\n\n * error `ZX_ERR_ALREADY_EXISTS` if `name` already exists.\n * error `ZX_ERR_BAD_PATH` if `target` exceeds the server length limit for symbolic links.\n * error `ZX_ERR_INVALID_ARGS` if `name` is not a valid [`Name`].\n * error `ZX_ERR_NOT_SUPPORTED` if creating symbolic links is not supported by the server.\n"]
12288 fn create_symlink(
12289 &mut self,
12290 sender: &::fidl_next::ServerSender<___T, Directory>,
12291
12292 request: ::fidl_next::RequestBuffer<___T, directory::CreateSymlink>,
12293
12294 responder: ::fidl_next::Responder<directory::CreateSymlink>,
12295 );
12296
12297 #[doc = " Watches a directory, receiving events of added messages on the\n watcher request channel.\n\n Options must be zero; it is reserved.\n\n This method does not require any rights, similar to ReadDirents.\n"]
12298 fn watch(
12299 &mut self,
12300 sender: &::fidl_next::ServerSender<___T, Directory>,
12301
12302 request: ::fidl_next::RequestBuffer<___T, directory::Watch>,
12303
12304 responder: ::fidl_next::Responder<directory::Watch>,
12305 );
12306
12307 fn on_unknown_interaction(
12308 &mut self,
12309 sender: &::fidl_next::ServerSender<___T, Directory>,
12310 ordinal: u64,
12311 ) {
12312 sender.close();
12313 }
12314}
12315
12316impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for Directory
12317where
12318 ___T: ::fidl_next::Transport,
12319 ___H: DirectoryServerHandler<___T>,
12320
12321 crate::WireAdvisoryLockingAdvisoryLockRequest:
12322 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12323
12324 ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest:
12325 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12326
12327 crate::WireNodeDeprecatedCloneRequest:
12328 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12329
12330 crate::WireNodeSetAttrRequest:
12331 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12332
12333 crate::WireNodeDeprecatedSetFlagsRequest:
12334 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12335
12336 crate::WireNodeSetFlagsRequest:
12337 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12338
12339 crate::WireNodeGetAttributesRequest:
12340 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12341
12342 crate::WireMutableNodeAttributes:
12343 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12344
12345 crate::WireNodeListExtendedAttributesRequest:
12346 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12347
12348 crate::WireNodeGetExtendedAttributeRequest:
12349 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12350
12351 crate::WireNodeSetExtendedAttributeRequest:
12352 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12353
12354 crate::WireNodeRemoveExtendedAttributeRequest:
12355 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12356
12357 crate::WireDirectoryDeprecatedOpenRequest:
12358 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12359
12360 crate::WireDirectoryOpenRequest:
12361 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12362
12363 crate::WireDirectoryReadDirentsRequest:
12364 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12365
12366 crate::WireDirectoryLinkRequest:
12367 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12368
12369 crate::WireDirectoryUnlinkRequest:
12370 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12371
12372 crate::WireDirectoryRenameRequest:
12373 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12374
12375 crate::WireDirectoryCreateSymlinkRequest:
12376 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12377
12378 crate::WireDirectoryWatchRequest:
12379 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
12380{
12381 fn on_one_way(
12382 handler: &mut ___H,
12383 sender: &::fidl_next::ServerSender<___T, Self>,
12384 ordinal: u64,
12385 buffer: ___T::RecvBuffer,
12386 ) {
12387 match ordinal {
12388 2366825959783828089 => {
12389 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12390 handler.clone(sender, buffer);
12391 }
12392
12393 6512600400724287855 => {
12394 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12395 handler.deprecated_clone(sender, buffer);
12396 }
12397
12398 5431626189872037072 => {
12399 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12400 handler.list_extended_attributes(sender, buffer);
12401 }
12402
12403 3193127272456937152 => {
12404 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12405 handler.deprecated_open(sender, buffer);
12406 }
12407
12408 6236883748953765593 => {
12409 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12410 handler.open(sender, buffer);
12411 }
12412
12413 ordinal => handler.on_unknown_interaction(sender, ordinal),
12414 }
12415 }
12416
12417 fn on_two_way(
12418 handler: &mut ___H,
12419 sender: &::fidl_next::ServerSender<___T, Self>,
12420 ordinal: u64,
12421 buffer: ___T::RecvBuffer,
12422 responder: ::fidl_next::protocol::Responder,
12423 ) {
12424 match ordinal {
12425 7992130864415541162 => {
12426 let responder = ::fidl_next::Responder::from_untyped(responder);
12427
12428 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12429 handler.advisory_lock(sender, buffer, responder);
12430 }
12431
12432 6540867515453498750 => {
12433 let responder = ::fidl_next::Responder::from_untyped(responder);
12434
12435 handler.close(sender, responder);
12436 }
12437
12438 2763219980499352582 => {
12439 let responder = ::fidl_next::Responder::from_untyped(responder);
12440
12441 handler.query(sender, responder);
12442 }
12443
12444 8689798978500614909 => {
12445 let responder = ::fidl_next::Responder::from_untyped(responder);
12446
12447 handler.get_attr(sender, responder);
12448 }
12449
12450 4721673413776871238 => {
12451 let responder = ::fidl_next::Responder::from_untyped(responder);
12452
12453 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12454 handler.set_attr(sender, buffer, responder);
12455 }
12456
12457 6595803110182632097 => {
12458 let responder = ::fidl_next::Responder::from_untyped(responder);
12459
12460 handler.deprecated_get_flags(sender, responder);
12461 }
12462
12463 5950864159036794675 => {
12464 let responder = ::fidl_next::Responder::from_untyped(responder);
12465
12466 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12467 handler.deprecated_set_flags(sender, buffer, responder);
12468 }
12469
12470 105530239381466147 => {
12471 let responder = ::fidl_next::Responder::from_untyped(responder);
12472
12473 handler.get_flags(sender, responder);
12474 }
12475
12476 6172186066099445416 => {
12477 let responder = ::fidl_next::Responder::from_untyped(responder);
12478
12479 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12480 handler.set_flags(sender, buffer, responder);
12481 }
12482
12483 8013111122914313744 => {
12484 let responder = ::fidl_next::Responder::from_untyped(responder);
12485
12486 handler.query_filesystem(sender, responder);
12487 }
12488
12489 6362521381364198667 => {
12490 let responder = ::fidl_next::Responder::from_untyped(responder);
12491
12492 handler.get_connection_info(sender, responder);
12493 }
12494
12495 4414537700416816443 => {
12496 let responder = ::fidl_next::Responder::from_untyped(responder);
12497
12498 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12499 handler.get_attributes(sender, buffer, responder);
12500 }
12501
12502 3677402239314018056 => {
12503 let responder = ::fidl_next::Responder::from_untyped(responder);
12504
12505 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12506 handler.update_attributes(sender, buffer, responder);
12507 }
12508
12509 3196473584242777161 => {
12510 let responder = ::fidl_next::Responder::from_untyped(responder);
12511
12512 handler.sync(sender, responder);
12513 }
12514
12515 5043930208506967771 => {
12516 let responder = ::fidl_next::Responder::from_untyped(responder);
12517
12518 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12519 handler.get_extended_attribute(sender, buffer, responder);
12520 }
12521
12522 5374223046099989052 => {
12523 let responder = ::fidl_next::Responder::from_untyped(responder);
12524
12525 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12526 handler.set_extended_attribute(sender, buffer, responder);
12527 }
12528
12529 8794297771444732717 => {
12530 let responder = ::fidl_next::Responder::from_untyped(responder);
12531
12532 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12533 handler.remove_extended_attribute(sender, buffer, responder);
12534 }
12535
12536 3855785432100874762 => {
12537 let responder = ::fidl_next::Responder::from_untyped(responder);
12538
12539 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12540 handler.read_dirents(sender, buffer, responder);
12541 }
12542
12543 1635123508515392625 => {
12544 let responder = ::fidl_next::Responder::from_untyped(responder);
12545
12546 handler.rewind(sender, responder);
12547 }
12548
12549 2787337947777369685 => {
12550 let responder = ::fidl_next::Responder::from_untyped(responder);
12551
12552 handler.get_token(sender, responder);
12553 }
12554
12555 8360374984291987687 => {
12556 let responder = ::fidl_next::Responder::from_untyped(responder);
12557
12558 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12559 handler.link(sender, buffer, responder);
12560 }
12561
12562 8433556716759383021 => {
12563 let responder = ::fidl_next::Responder::from_untyped(responder);
12564
12565 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12566 handler.unlink(sender, buffer, responder);
12567 }
12568
12569 8097726607824333022 => {
12570 let responder = ::fidl_next::Responder::from_untyped(responder);
12571
12572 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12573 handler.rename(sender, buffer, responder);
12574 }
12575
12576 2435901052462315657 => {
12577 let responder = ::fidl_next::Responder::from_untyped(responder);
12578
12579 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12580 handler.create_symlink(sender, buffer, responder);
12581 }
12582
12583 6275512344170098065 => {
12584 let responder = ::fidl_next::Responder::from_untyped(responder);
12585
12586 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
12587 handler.watch(sender, buffer, responder);
12588 }
12589
12590 ordinal => handler.on_unknown_interaction(sender, ordinal),
12591 }
12592 }
12593}
12594
12595#[derive(Clone, Debug)]
12596#[repr(C)]
12597pub struct DirectoryObject {}
12598
12599impl ::fidl_next::Encodable for DirectoryObject {
12600 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> =
12601 unsafe { ::fidl_next::CopyOptimization::enable_if(true) };
12602
12603 type Encoded = WireDirectoryObject;
12604}
12605
12606unsafe impl<___E> ::fidl_next::Encode<___E> for DirectoryObject
12607where
12608 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
12609{
12610 #[inline]
12611 fn encode(
12612 &mut self,
12613 encoder: &mut ___E,
12614 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
12615 ) -> Result<(), ::fidl_next::EncodeError> {
12616 ::fidl_next::munge! {
12617 let Self::Encoded {
12618
12619 } = out;
12620 }
12621
12622 Ok(())
12623 }
12624}
12625
12626impl ::fidl_next::EncodableOption for Box<DirectoryObject> {
12627 type EncodedOption = ::fidl_next::WireBox<WireDirectoryObject>;
12628}
12629
12630unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<DirectoryObject>
12631where
12632 ___E: ::fidl_next::Encoder + ?Sized,
12633 DirectoryObject: ::fidl_next::Encode<___E>,
12634{
12635 #[inline]
12636 fn encode_option(
12637 this: Option<&mut Self>,
12638 encoder: &mut ___E,
12639 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
12640 ) -> Result<(), ::fidl_next::EncodeError> {
12641 if let Some(inner) = this {
12642 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
12643 ::fidl_next::WireBox::encode_present(out);
12644 } else {
12645 ::fidl_next::WireBox::encode_absent(out);
12646 }
12647
12648 Ok(())
12649 }
12650}
12651
12652impl ::fidl_next::TakeFrom<WireDirectoryObject> for DirectoryObject {
12653 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> =
12654 unsafe { ::fidl_next::CopyOptimization::enable_if(true) };
12655
12656 #[inline]
12657 fn take_from(from: &WireDirectoryObject) -> Self {
12658 Self {}
12659 }
12660}
12661
12662#[derive(Clone, Debug)]
12664#[repr(C)]
12665pub struct WireDirectoryObject {}
12666
12667unsafe impl ::fidl_next::ZeroPadding for WireDirectoryObject {
12668 #[inline]
12669 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
12670}
12671
12672unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirectoryObject
12673where
12674 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
12675{
12676 fn decode(
12677 slot: ::fidl_next::Slot<'_, Self>,
12678 decoder: &mut ___D,
12679 ) -> Result<(), ::fidl_next::DecodeError> {
12680 ::fidl_next::munge! {
12681 let Self {
12682
12683 } = slot;
12684 }
12685
12686 Ok(())
12687 }
12688}
12689
12690#[doc = " DirectoryWatcher transmits messages from a filesystem server\n about events happening in the filesystem. Clients can register\n new watchers using the `Directory.Watch` method, where they can\n filter which events they want to receive notifications for.\n\n The DirectoryWatcher will send messages of the form:\n ```\n struct {\n uint8 event;\n uint8 len;\n char name[];\n };\n ```\n Where names are NOT null-terminated. The name is the relative\n path to the entry the event is refering to. It will be empty if\n the event isn\'t referencing a particular entry (e.g. for the\n `IDLE` event).\n"]
12692#[derive(Debug)]
12693pub struct DirectoryWatcher;
12694
12695pub mod directory_watcher {
12696 pub mod prelude {
12697 pub use crate::{
12698 directory_watcher, DirectoryWatcher, DirectoryWatcherClientHandler,
12699 DirectoryWatcherClientSender, DirectoryWatcherServerHandler,
12700 DirectoryWatcherServerSender,
12701 };
12702 }
12703}
12704
12705pub trait DirectoryWatcherClientSender {
12707 type Transport: ::fidl_next::Transport;
12708}
12709
12710impl<___T> DirectoryWatcherClientSender for ::fidl_next::ClientSender<___T, DirectoryWatcher>
12711where
12712 ___T: ::fidl_next::Transport,
12713{
12714 type Transport = ___T;
12715}
12716
12717pub trait DirectoryWatcherClientHandler<___T: ::fidl_next::Transport> {}
12721
12722impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for DirectoryWatcher
12723where
12724 ___T: ::fidl_next::Transport,
12725 ___H: DirectoryWatcherClientHandler<___T>,
12726{
12727 fn on_event(
12728 handler: &mut ___H,
12729 sender: &::fidl_next::ClientSender<___T, Self>,
12730 ordinal: u64,
12731 buffer: ___T::RecvBuffer,
12732 ) {
12733 match ordinal {
12734 ordinal => {
12735 sender.close();
12736 }
12737 }
12738 }
12739}
12740
12741pub trait DirectoryWatcherServerSender {
12743 type Transport: ::fidl_next::Transport;
12744}
12745
12746impl<___T> DirectoryWatcherServerSender for ::fidl_next::ServerSender<___T, DirectoryWatcher>
12747where
12748 ___T: ::fidl_next::Transport,
12749{
12750 type Transport = ___T;
12751}
12752
12753pub trait DirectoryWatcherServerHandler<___T: ::fidl_next::Transport> {}
12757
12758impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for DirectoryWatcher
12759where
12760 ___T: ::fidl_next::Transport,
12761 ___H: DirectoryWatcherServerHandler<___T>,
12762{
12763 fn on_one_way(
12764 handler: &mut ___H,
12765 sender: &::fidl_next::ServerSender<___T, Self>,
12766 ordinal: u64,
12767 buffer: ___T::RecvBuffer,
12768 ) {
12769 match ordinal {
12770 ordinal => {
12771 sender.close();
12772 }
12773 }
12774 }
12775
12776 fn on_two_way(
12777 handler: &mut ___H,
12778 sender: &::fidl_next::ServerSender<___T, Self>,
12779 ordinal: u64,
12780 buffer: ___T::RecvBuffer,
12781 responder: ::fidl_next::protocol::Responder,
12782 ) {
12783 match ordinal {
12784 ordinal => {
12785 sender.close();
12786 }
12787 }
12788 }
12789}
12790
12791#[derive(Clone, Copy, Debug, PartialEq, Eq)]
12792#[repr(u8)]
12793pub enum DirentType {
12794 Unknown = 0,
12795 Directory = 4,
12796 BlockDevice = 6,
12797 File = 8,
12798 Symlink = 10,
12799 Service = 16,
12800 UnknownOrdinal_(u8),
12801}
12802
12803impl ::fidl_next::Encodable for DirentType {
12804 type Encoded = WireDirentType;
12805}
12806
12807unsafe impl<___E> ::fidl_next::Encode<___E> for DirentType
12808where
12809 ___E: ?Sized,
12810{
12811 #[inline]
12812 fn encode(
12813 &mut self,
12814 _: &mut ___E,
12815 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
12816 ) -> Result<(), ::fidl_next::EncodeError> {
12817 ::fidl_next::munge!(let WireDirentType { value } = out);
12818 let _ = value.write(u8::from(match *self {
12819 Self::Unknown => 0,
12820
12821 Self::Directory => 4,
12822
12823 Self::BlockDevice => 6,
12824
12825 Self::File => 8,
12826
12827 Self::Symlink => 10,
12828
12829 Self::Service => 16,
12830
12831 Self::UnknownOrdinal_(value) => value,
12832 }));
12833
12834 Ok(())
12835 }
12836}
12837
12838impl ::core::convert::From<WireDirentType> for DirentType {
12839 fn from(wire: WireDirentType) -> Self {
12840 match u8::from(wire.value) {
12841 0 => Self::Unknown,
12842
12843 4 => Self::Directory,
12844
12845 6 => Self::BlockDevice,
12846
12847 8 => Self::File,
12848
12849 10 => Self::Symlink,
12850
12851 16 => Self::Service,
12852
12853 value => Self::UnknownOrdinal_(value),
12854 }
12855 }
12856}
12857
12858impl ::fidl_next::TakeFrom<WireDirentType> for DirentType {
12859 #[inline]
12860 fn take_from(from: &WireDirentType) -> Self {
12861 Self::from(*from)
12862 }
12863}
12864
12865#[derive(Clone, Copy, Debug, PartialEq, Eq)]
12867#[repr(transparent)]
12868pub struct WireDirentType {
12869 value: u8,
12870}
12871
12872unsafe impl ::fidl_next::ZeroPadding for WireDirentType {
12873 #[inline]
12874 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
12875 }
12877}
12878
12879impl WireDirentType {
12880 pub const UNKNOWN: WireDirentType = WireDirentType { value: 0 };
12881
12882 pub const DIRECTORY: WireDirentType = WireDirentType { value: 4 };
12883
12884 pub const BLOCK_DEVICE: WireDirentType = WireDirentType { value: 6 };
12885
12886 pub const FILE: WireDirentType = WireDirentType { value: 8 };
12887
12888 pub const SYMLINK: WireDirentType = WireDirentType { value: 10 };
12889
12890 pub const SERVICE: WireDirentType = WireDirentType { value: 16 };
12891}
12892
12893unsafe impl<___D> ::fidl_next::Decode<___D> for WireDirentType
12894where
12895 ___D: ?Sized,
12896{
12897 fn decode(
12898 slot: ::fidl_next::Slot<'_, Self>,
12899 _: &mut ___D,
12900 ) -> Result<(), ::fidl_next::DecodeError> {
12901 Ok(())
12902 }
12903}
12904
12905impl ::core::convert::From<DirentType> for WireDirentType {
12906 fn from(natural: DirentType) -> Self {
12907 match natural {
12908 DirentType::Unknown => WireDirentType::UNKNOWN,
12909
12910 DirentType::Directory => WireDirentType::DIRECTORY,
12911
12912 DirentType::BlockDevice => WireDirentType::BLOCK_DEVICE,
12913
12914 DirentType::File => WireDirentType::FILE,
12915
12916 DirentType::Symlink => WireDirentType::SYMLINK,
12917
12918 DirentType::Service => WireDirentType::SERVICE,
12919
12920 DirentType::UnknownOrdinal_(value) => WireDirentType { value: u8::from(value) },
12921 }
12922 }
12923}
12924
12925#[doc = " The maximum size of a chunk in the ListExtendedAttributes iterator.\n"]
12926pub const MAX_LIST_ATTRIBUTES_CHUNK: u64 = 128;
12927
12928#[derive(Clone, Debug)]
12929pub struct ExtendedAttributeIteratorGetNextResponse {
12930 pub attributes: Vec<Vec<u8>>,
12931
12932 pub last: bool,
12933}
12934
12935impl ::fidl_next::Encodable for ExtendedAttributeIteratorGetNextResponse {
12936 type Encoded = WireExtendedAttributeIteratorGetNextResponse;
12937}
12938
12939unsafe impl<___E> ::fidl_next::Encode<___E> for ExtendedAttributeIteratorGetNextResponse
12940where
12941 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
12942
12943 ___E: ::fidl_next::Encoder,
12944{
12945 #[inline]
12946 fn encode(
12947 &mut self,
12948 encoder: &mut ___E,
12949 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
12950 ) -> Result<(), ::fidl_next::EncodeError> {
12951 ::fidl_next::munge! {
12952 let Self::Encoded {
12953 attributes,
12954 last,
12955
12956 } = out;
12957 }
12958
12959 ::fidl_next::Encode::encode(&mut self.attributes, encoder, attributes)?;
12960
12961 ::fidl_next::Encode::encode(&mut self.last, encoder, last)?;
12962
12963 Ok(())
12964 }
12965}
12966
12967impl ::fidl_next::EncodableOption for Box<ExtendedAttributeIteratorGetNextResponse> {
12968 type EncodedOption = ::fidl_next::WireBox<WireExtendedAttributeIteratorGetNextResponse>;
12969}
12970
12971unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<ExtendedAttributeIteratorGetNextResponse>
12972where
12973 ___E: ::fidl_next::Encoder + ?Sized,
12974 ExtendedAttributeIteratorGetNextResponse: ::fidl_next::Encode<___E>,
12975{
12976 #[inline]
12977 fn encode_option(
12978 this: Option<&mut Self>,
12979 encoder: &mut ___E,
12980 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
12981 ) -> Result<(), ::fidl_next::EncodeError> {
12982 if let Some(inner) = this {
12983 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
12984 ::fidl_next::WireBox::encode_present(out);
12985 } else {
12986 ::fidl_next::WireBox::encode_absent(out);
12987 }
12988
12989 Ok(())
12990 }
12991}
12992
12993impl ::fidl_next::TakeFrom<WireExtendedAttributeIteratorGetNextResponse>
12994 for ExtendedAttributeIteratorGetNextResponse
12995{
12996 #[inline]
12997 fn take_from(from: &WireExtendedAttributeIteratorGetNextResponse) -> Self {
12998 Self {
12999 attributes: ::fidl_next::TakeFrom::take_from(&from.attributes),
13000
13001 last: ::fidl_next::TakeFrom::take_from(&from.last),
13002 }
13003 }
13004}
13005
13006#[derive(Debug)]
13008#[repr(C)]
13009pub struct WireExtendedAttributeIteratorGetNextResponse {
13010 pub attributes: ::fidl_next::WireVector<::fidl_next::WireVector<u8>>,
13011
13012 pub last: bool,
13013}
13014
13015unsafe impl ::fidl_next::ZeroPadding for WireExtendedAttributeIteratorGetNextResponse {
13016 #[inline]
13017 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
13018 unsafe {
13019 out.as_mut_ptr().cast::<u8>().add(17).write_bytes(0, 7);
13020 }
13021 }
13022}
13023
13024unsafe impl<___D> ::fidl_next::Decode<___D> for WireExtendedAttributeIteratorGetNextResponse
13025where
13026 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
13027
13028 ___D: ::fidl_next::Decoder,
13029{
13030 fn decode(
13031 slot: ::fidl_next::Slot<'_, Self>,
13032 decoder: &mut ___D,
13033 ) -> Result<(), ::fidl_next::DecodeError> {
13034 ::fidl_next::munge! {
13035 let Self {
13036 mut attributes,
13037 mut last,
13038
13039 } = slot;
13040 }
13041
13042 ::fidl_next::Decode::decode(attributes.as_mut(), decoder)?;
13043
13044 let attributes = unsafe { attributes.deref_unchecked() };
13045
13046 if attributes.len() > 128 {
13047 return Err(::fidl_next::DecodeError::VectorTooLong {
13048 size: attributes.len() as u64,
13049 limit: 128,
13050 });
13051 }
13052
13053 ::fidl_next::Decode::decode(last.as_mut(), decoder)?;
13054
13055 Ok(())
13056 }
13057}
13058
13059#[derive(Debug)]
13061pub struct ExtendedAttributeIterator;
13062
13063pub mod extended_attribute_iterator {
13064 pub mod prelude {
13065 pub use crate::{
13066 extended_attribute_iterator, ExtendedAttributeIterator,
13067 ExtendedAttributeIteratorClientHandler, ExtendedAttributeIteratorClientSender,
13068 ExtendedAttributeIteratorServerHandler, ExtendedAttributeIteratorServerSender,
13069 };
13070
13071 pub use crate::ExtendedAttributeIteratorGetNextResponse;
13072 }
13073
13074 pub struct GetNext;
13075
13076 impl ::fidl_next::Method for GetNext {
13077 const ORDINAL: u64 = 268639596268373415;
13078
13079 type Protocol = crate::ExtendedAttributeIterator;
13080
13081 type Request = ();
13082
13083 type Response = ::fidl_next::WireResult<
13084 crate::WireExtendedAttributeIteratorGetNextResponse,
13085 ::fidl_next::WireI32,
13086 >;
13087 }
13088}
13089
13090pub trait ExtendedAttributeIteratorClientSender {
13092 type Transport: ::fidl_next::Transport;
13093
13094 #[doc = " Get the next chunk of extended attribute names. If this is the last\n chunk, last will be true, and the channel will be closed after the\n call.\n"]
13095 fn get_next(
13096 &self,
13097 ) -> Result<
13098 ::fidl_next::ResponseFuture<'_, Self::Transport, extended_attribute_iterator::GetNext>,
13099 ::fidl_next::EncodeError,
13100 >;
13101}
13102
13103impl<___T> ExtendedAttributeIteratorClientSender
13104 for ::fidl_next::ClientSender<___T, ExtendedAttributeIterator>
13105where
13106 ___T: ::fidl_next::Transport,
13107{
13108 type Transport = ___T;
13109
13110 #[doc = " Get the next chunk of extended attribute names. If this is the last\n chunk, last will be true, and the channel will be closed after the\n call.\n"]
13111 fn get_next(
13112 &self,
13113 ) -> Result<
13114 ::fidl_next::ResponseFuture<'_, Self::Transport, extended_attribute_iterator::GetNext>,
13115 ::fidl_next::EncodeError,
13116 > {
13117 self.as_untyped()
13118 .send_two_way(268639596268373415, &mut ())
13119 .map(::fidl_next::ResponseFuture::from_untyped)
13120 }
13121}
13122
13123pub trait ExtendedAttributeIteratorClientHandler<___T: ::fidl_next::Transport> {}
13127
13128impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for ExtendedAttributeIterator
13129where
13130 ___T: ::fidl_next::Transport,
13131 ___H: ExtendedAttributeIteratorClientHandler<___T>,
13132
13133 <extended_attribute_iterator::GetNext as ::fidl_next::Method>::Response:
13134 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
13135{
13136 fn on_event(
13137 handler: &mut ___H,
13138 sender: &::fidl_next::ClientSender<___T, Self>,
13139 ordinal: u64,
13140 buffer: ___T::RecvBuffer,
13141 ) {
13142 match ordinal {
13143 ordinal => {
13144 sender.close();
13145 }
13146 }
13147 }
13148}
13149
13150pub trait ExtendedAttributeIteratorServerSender {
13152 type Transport: ::fidl_next::Transport;
13153}
13154
13155impl<___T> ExtendedAttributeIteratorServerSender
13156 for ::fidl_next::ServerSender<___T, ExtendedAttributeIterator>
13157where
13158 ___T: ::fidl_next::Transport,
13159{
13160 type Transport = ___T;
13161}
13162
13163pub trait ExtendedAttributeIteratorServerHandler<___T: ::fidl_next::Transport> {
13167 #[doc = " Get the next chunk of extended attribute names. If this is the last\n chunk, last will be true, and the channel will be closed after the\n call.\n"]
13168 fn get_next(
13169 &mut self,
13170 sender: &::fidl_next::ServerSender<___T, ExtendedAttributeIterator>,
13171
13172 responder: ::fidl_next::Responder<extended_attribute_iterator::GetNext>,
13173 );
13174}
13175
13176impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for ExtendedAttributeIterator
13177where
13178 ___T: ::fidl_next::Transport,
13179 ___H: ExtendedAttributeIteratorServerHandler<___T>,
13180{
13181 fn on_one_way(
13182 handler: &mut ___H,
13183 sender: &::fidl_next::ServerSender<___T, Self>,
13184 ordinal: u64,
13185 buffer: ___T::RecvBuffer,
13186 ) {
13187 match ordinal {
13188 ordinal => {
13189 sender.close();
13190 }
13191 }
13192 }
13193
13194 fn on_two_way(
13195 handler: &mut ___H,
13196 sender: &::fidl_next::ServerSender<___T, Self>,
13197 ordinal: u64,
13198 buffer: ___T::RecvBuffer,
13199 responder: ::fidl_next::protocol::Responder,
13200 ) {
13201 match ordinal {
13202 268639596268373415 => {
13203 let responder = ::fidl_next::Responder::from_untyped(responder);
13204
13205 handler.get_next(sender, responder);
13206 }
13207
13208 ordinal => {
13209 sender.close();
13210 }
13211 }
13212 }
13213}
13214
13215pub const FILE_PROTOCOL_NAME: &str = "fuchsia.io/File";
13216
13217#[doc = " Specifies that this object is not linkable. This is only intended to be used in the context of\n creating a temporary unnamed objects. When that is not the case, the node protocol defines if it\n is linkable (i.e. if it composes the `Linkable` protocol). When this flag is set along with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`, an unnamed temporary object will be created that\n cannot be linked into the filesystem. This would be similar to Linux `O_TMPFILE | O_EXCL`.\n\n CAUTION: if `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY` is not specified, then this is treated as\n a \"must create\" flag.\n\n The reason for overloading `Flags.FLAG_MUST_CREATE` to mean \"not linkable\" in this context and\n \"must create\" in other contexts is due to the assumption that some POSIX flags are compatible\n with the members in `Flags`. In particular the POSIX `O_EXCL` has the same value as\n `Flags.FLAG_MUST_CREATE`. We are not able to define different bit members of the same value,\n hence it is defined separately outside of `Flags`.\n"]
13218pub const FLAG_TEMPORARY_AS_NOT_LINKABLE: crate::Flags = crate::Flags::FLAG_MUST_CREATE;
13219
13220#[derive(Clone, Debug)]
13221#[repr(C)]
13222pub struct ReadableReadRequest {
13223 pub count: u64,
13224}
13225
13226impl ::fidl_next::Encodable for ReadableReadRequest {
13227 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
13228 ::fidl_next::CopyOptimization::enable_if(
13229 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
13230 )
13231 };
13232
13233 type Encoded = WireReadableReadRequest;
13234}
13235
13236unsafe impl<___E> ::fidl_next::Encode<___E> for ReadableReadRequest
13237where
13238 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
13239{
13240 #[inline]
13241 fn encode(
13242 &mut self,
13243 encoder: &mut ___E,
13244 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
13245 ) -> Result<(), ::fidl_next::EncodeError> {
13246 ::fidl_next::munge! {
13247 let Self::Encoded {
13248 count,
13249
13250 } = out;
13251 }
13252
13253 ::fidl_next::Encode::encode(&mut self.count, encoder, count)?;
13254
13255 Ok(())
13256 }
13257}
13258
13259impl ::fidl_next::EncodableOption for Box<ReadableReadRequest> {
13260 type EncodedOption = ::fidl_next::WireBox<WireReadableReadRequest>;
13261}
13262
13263unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<ReadableReadRequest>
13264where
13265 ___E: ::fidl_next::Encoder + ?Sized,
13266 ReadableReadRequest: ::fidl_next::Encode<___E>,
13267{
13268 #[inline]
13269 fn encode_option(
13270 this: Option<&mut Self>,
13271 encoder: &mut ___E,
13272 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
13273 ) -> Result<(), ::fidl_next::EncodeError> {
13274 if let Some(inner) = this {
13275 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
13276 ::fidl_next::WireBox::encode_present(out);
13277 } else {
13278 ::fidl_next::WireBox::encode_absent(out);
13279 }
13280
13281 Ok(())
13282 }
13283}
13284
13285impl ::fidl_next::TakeFrom<WireReadableReadRequest> for ReadableReadRequest {
13286 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
13287 ::fidl_next::CopyOptimization::enable_if(
13288 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
13289 )
13290 };
13291
13292 #[inline]
13293 fn take_from(from: &WireReadableReadRequest) -> Self {
13294 Self { count: ::fidl_next::TakeFrom::take_from(&from.count) }
13295 }
13296}
13297
13298#[derive(Clone, Debug)]
13300#[repr(C)]
13301pub struct WireReadableReadRequest {
13302 pub count: ::fidl_next::WireU64,
13303}
13304
13305unsafe impl ::fidl_next::ZeroPadding for WireReadableReadRequest {
13306 #[inline]
13307 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
13308}
13309
13310unsafe impl<___D> ::fidl_next::Decode<___D> for WireReadableReadRequest
13311where
13312 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
13313{
13314 fn decode(
13315 slot: ::fidl_next::Slot<'_, Self>,
13316 decoder: &mut ___D,
13317 ) -> Result<(), ::fidl_next::DecodeError> {
13318 ::fidl_next::munge! {
13319 let Self {
13320 mut count,
13321
13322 } = slot;
13323 }
13324
13325 ::fidl_next::Decode::decode(count.as_mut(), decoder)?;
13326
13327 Ok(())
13328 }
13329}
13330
13331#[doc = " The maximum I/O size that is allowed for read/write operations using\n byte vectors.\n"]
13332pub const MAX_TRANSFER_SIZE: u64 = 8192;
13333
13334#[doc = " The byte vector type used for read/write operations.\n"]
13335pub type Transfer = Vec<u8>;
13336
13337pub type WireTransfer = ::fidl_next::WireVector<u8>;
13339
13340#[derive(Clone, Debug)]
13341pub struct ReadableReadResponse {
13342 pub data: Vec<u8>,
13343}
13344
13345impl ::fidl_next::Encodable for ReadableReadResponse {
13346 type Encoded = WireReadableReadResponse;
13347}
13348
13349unsafe impl<___E> ::fidl_next::Encode<___E> for ReadableReadResponse
13350where
13351 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
13352
13353 ___E: ::fidl_next::Encoder,
13354{
13355 #[inline]
13356 fn encode(
13357 &mut self,
13358 encoder: &mut ___E,
13359 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
13360 ) -> Result<(), ::fidl_next::EncodeError> {
13361 ::fidl_next::munge! {
13362 let Self::Encoded {
13363 data,
13364
13365 } = out;
13366 }
13367
13368 ::fidl_next::Encode::encode(&mut self.data, encoder, data)?;
13369
13370 Ok(())
13371 }
13372}
13373
13374impl ::fidl_next::EncodableOption for Box<ReadableReadResponse> {
13375 type EncodedOption = ::fidl_next::WireBox<WireReadableReadResponse>;
13376}
13377
13378unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<ReadableReadResponse>
13379where
13380 ___E: ::fidl_next::Encoder + ?Sized,
13381 ReadableReadResponse: ::fidl_next::Encode<___E>,
13382{
13383 #[inline]
13384 fn encode_option(
13385 this: Option<&mut Self>,
13386 encoder: &mut ___E,
13387 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
13388 ) -> Result<(), ::fidl_next::EncodeError> {
13389 if let Some(inner) = this {
13390 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
13391 ::fidl_next::WireBox::encode_present(out);
13392 } else {
13393 ::fidl_next::WireBox::encode_absent(out);
13394 }
13395
13396 Ok(())
13397 }
13398}
13399
13400impl ::fidl_next::TakeFrom<WireReadableReadResponse> for ReadableReadResponse {
13401 #[inline]
13402 fn take_from(from: &WireReadableReadResponse) -> Self {
13403 Self { data: ::fidl_next::TakeFrom::take_from(&from.data) }
13404 }
13405}
13406
13407#[derive(Debug)]
13409#[repr(C)]
13410pub struct WireReadableReadResponse {
13411 pub data: ::fidl_next::WireVector<u8>,
13412}
13413
13414unsafe impl ::fidl_next::ZeroPadding for WireReadableReadResponse {
13415 #[inline]
13416 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
13417}
13418
13419unsafe impl<___D> ::fidl_next::Decode<___D> for WireReadableReadResponse
13420where
13421 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
13422
13423 ___D: ::fidl_next::Decoder,
13424{
13425 fn decode(
13426 slot: ::fidl_next::Slot<'_, Self>,
13427 decoder: &mut ___D,
13428 ) -> Result<(), ::fidl_next::DecodeError> {
13429 ::fidl_next::munge! {
13430 let Self {
13431 mut data,
13432
13433 } = slot;
13434 }
13435
13436 ::fidl_next::Decode::decode(data.as_mut(), decoder)?;
13437
13438 let data = unsafe { data.deref_unchecked() };
13439
13440 if data.len() > 8192 {
13441 return Err(::fidl_next::DecodeError::VectorTooLong {
13442 size: data.len() as u64,
13443 limit: 8192,
13444 });
13445 }
13446
13447 Ok(())
13448 }
13449}
13450
13451#[derive(Debug)]
13453pub struct Readable;
13454
13455pub mod readable {
13456 pub mod prelude {
13457 pub use crate::{
13458 readable, Readable, ReadableClientHandler, ReadableClientSender, ReadableServerHandler,
13459 ReadableServerSender,
13460 };
13461
13462 pub use crate::ReadableReadRequest;
13463
13464 pub use crate::ReadableReadResponse;
13465 }
13466
13467 pub struct Read;
13468
13469 impl ::fidl_next::Method for Read {
13470 const ORDINAL: u64 = 395825947633028830;
13471
13472 type Protocol = crate::Readable;
13473
13474 type Request = crate::WireReadableReadRequest;
13475
13476 type Response =
13477 ::fidl_next::WireResult<crate::WireReadableReadResponse, ::fidl_next::WireI32>;
13478 }
13479}
13480
13481pub trait ReadableClientSender {
13483 type Transport: ::fidl_next::Transport;
13484
13485 #[doc = " Reads up to \'count\' bytes at the seek offset.\n The seek offset is moved forward by the number of bytes read.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that the seek offset\n has reached the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that the\n seek offset is already at or beyond the end of file, and no data could\n be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually read anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
13486 fn read<___R>(
13487 &self,
13488 request: &mut ___R,
13489 ) -> Result<
13490 ::fidl_next::ResponseFuture<'_, Self::Transport, readable::Read>,
13491 ::fidl_next::EncodeError,
13492 >
13493 where
13494 ___R: ::fidl_next::Encode<
13495 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
13496 Encoded = crate::WireReadableReadRequest,
13497 >;
13498}
13499
13500impl<___T> ReadableClientSender for ::fidl_next::ClientSender<___T, Readable>
13501where
13502 ___T: ::fidl_next::Transport,
13503{
13504 type Transport = ___T;
13505
13506 #[doc = " Reads up to \'count\' bytes at the seek offset.\n The seek offset is moved forward by the number of bytes read.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that the seek offset\n has reached the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that the\n seek offset is already at or beyond the end of file, and no data could\n be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually read anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
13507 fn read<___R>(
13508 &self,
13509 request: &mut ___R,
13510 ) -> Result<
13511 ::fidl_next::ResponseFuture<'_, Self::Transport, readable::Read>,
13512 ::fidl_next::EncodeError,
13513 >
13514 where
13515 ___R: ::fidl_next::Encode<
13516 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
13517 Encoded = crate::WireReadableReadRequest,
13518 >,
13519 {
13520 self.as_untyped()
13521 .send_two_way(395825947633028830, request)
13522 .map(::fidl_next::ResponseFuture::from_untyped)
13523 }
13524}
13525
13526pub trait ReadableClientHandler<___T: ::fidl_next::Transport> {}
13530
13531impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for Readable
13532where
13533 ___T: ::fidl_next::Transport,
13534 ___H: ReadableClientHandler<___T>,
13535
13536 <readable::Read as ::fidl_next::Method>::Response:
13537 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
13538{
13539 fn on_event(
13540 handler: &mut ___H,
13541 sender: &::fidl_next::ClientSender<___T, Self>,
13542 ordinal: u64,
13543 buffer: ___T::RecvBuffer,
13544 ) {
13545 match ordinal {
13546 ordinal => {
13547 sender.close();
13548 }
13549 }
13550 }
13551}
13552
13553pub trait ReadableServerSender {
13555 type Transport: ::fidl_next::Transport;
13556}
13557
13558impl<___T> ReadableServerSender for ::fidl_next::ServerSender<___T, Readable>
13559where
13560 ___T: ::fidl_next::Transport,
13561{
13562 type Transport = ___T;
13563}
13564
13565pub trait ReadableServerHandler<___T: ::fidl_next::Transport> {
13569 #[doc = " Reads up to \'count\' bytes at the seek offset.\n The seek offset is moved forward by the number of bytes read.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that the seek offset\n has reached the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that the\n seek offset is already at or beyond the end of file, and no data could\n be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually read anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
13570 fn read(
13571 &mut self,
13572 sender: &::fidl_next::ServerSender<___T, Readable>,
13573
13574 request: ::fidl_next::RequestBuffer<___T, readable::Read>,
13575
13576 responder: ::fidl_next::Responder<readable::Read>,
13577 );
13578}
13579
13580impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for Readable
13581where
13582 ___T: ::fidl_next::Transport,
13583 ___H: ReadableServerHandler<___T>,
13584
13585 crate::WireReadableReadRequest:
13586 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
13587{
13588 fn on_one_way(
13589 handler: &mut ___H,
13590 sender: &::fidl_next::ServerSender<___T, Self>,
13591 ordinal: u64,
13592 buffer: ___T::RecvBuffer,
13593 ) {
13594 match ordinal {
13595 ordinal => {
13596 sender.close();
13597 }
13598 }
13599 }
13600
13601 fn on_two_way(
13602 handler: &mut ___H,
13603 sender: &::fidl_next::ServerSender<___T, Self>,
13604 ordinal: u64,
13605 buffer: ___T::RecvBuffer,
13606 responder: ::fidl_next::protocol::Responder,
13607 ) {
13608 match ordinal {
13609 395825947633028830 => {
13610 let responder = ::fidl_next::Responder::from_untyped(responder);
13611
13612 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
13613 handler.read(sender, buffer, responder);
13614 }
13615
13616 ordinal => {
13617 sender.close();
13618 }
13619 }
13620 }
13621}
13622
13623#[derive(Clone, Debug)]
13624pub struct WritableWriteRequest {
13625 pub data: Vec<u8>,
13626}
13627
13628impl ::fidl_next::Encodable for WritableWriteRequest {
13629 type Encoded = WireWritableWriteRequest;
13630}
13631
13632unsafe impl<___E> ::fidl_next::Encode<___E> for WritableWriteRequest
13633where
13634 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
13635
13636 ___E: ::fidl_next::Encoder,
13637{
13638 #[inline]
13639 fn encode(
13640 &mut self,
13641 encoder: &mut ___E,
13642 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
13643 ) -> Result<(), ::fidl_next::EncodeError> {
13644 ::fidl_next::munge! {
13645 let Self::Encoded {
13646 data,
13647
13648 } = out;
13649 }
13650
13651 ::fidl_next::Encode::encode(&mut self.data, encoder, data)?;
13652
13653 Ok(())
13654 }
13655}
13656
13657impl ::fidl_next::EncodableOption for Box<WritableWriteRequest> {
13658 type EncodedOption = ::fidl_next::WireBox<WireWritableWriteRequest>;
13659}
13660
13661unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<WritableWriteRequest>
13662where
13663 ___E: ::fidl_next::Encoder + ?Sized,
13664 WritableWriteRequest: ::fidl_next::Encode<___E>,
13665{
13666 #[inline]
13667 fn encode_option(
13668 this: Option<&mut Self>,
13669 encoder: &mut ___E,
13670 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
13671 ) -> Result<(), ::fidl_next::EncodeError> {
13672 if let Some(inner) = this {
13673 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
13674 ::fidl_next::WireBox::encode_present(out);
13675 } else {
13676 ::fidl_next::WireBox::encode_absent(out);
13677 }
13678
13679 Ok(())
13680 }
13681}
13682
13683impl ::fidl_next::TakeFrom<WireWritableWriteRequest> for WritableWriteRequest {
13684 #[inline]
13685 fn take_from(from: &WireWritableWriteRequest) -> Self {
13686 Self { data: ::fidl_next::TakeFrom::take_from(&from.data) }
13687 }
13688}
13689
13690#[derive(Debug)]
13692#[repr(C)]
13693pub struct WireWritableWriteRequest {
13694 pub data: ::fidl_next::WireVector<u8>,
13695}
13696
13697unsafe impl ::fidl_next::ZeroPadding for WireWritableWriteRequest {
13698 #[inline]
13699 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
13700}
13701
13702unsafe impl<___D> ::fidl_next::Decode<___D> for WireWritableWriteRequest
13703where
13704 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
13705
13706 ___D: ::fidl_next::Decoder,
13707{
13708 fn decode(
13709 slot: ::fidl_next::Slot<'_, Self>,
13710 decoder: &mut ___D,
13711 ) -> Result<(), ::fidl_next::DecodeError> {
13712 ::fidl_next::munge! {
13713 let Self {
13714 mut data,
13715
13716 } = slot;
13717 }
13718
13719 ::fidl_next::Decode::decode(data.as_mut(), decoder)?;
13720
13721 let data = unsafe { data.deref_unchecked() };
13722
13723 if data.len() > 8192 {
13724 return Err(::fidl_next::DecodeError::VectorTooLong {
13725 size: data.len() as u64,
13726 limit: 8192,
13727 });
13728 }
13729
13730 Ok(())
13731 }
13732}
13733
13734#[derive(Clone, Debug)]
13735#[repr(C)]
13736pub struct WritableWriteResponse {
13737 pub actual_count: u64,
13738}
13739
13740impl ::fidl_next::Encodable for WritableWriteResponse {
13741 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
13742 ::fidl_next::CopyOptimization::enable_if(
13743 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
13744 )
13745 };
13746
13747 type Encoded = WireWritableWriteResponse;
13748}
13749
13750unsafe impl<___E> ::fidl_next::Encode<___E> for WritableWriteResponse
13751where
13752 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
13753{
13754 #[inline]
13755 fn encode(
13756 &mut self,
13757 encoder: &mut ___E,
13758 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
13759 ) -> Result<(), ::fidl_next::EncodeError> {
13760 ::fidl_next::munge! {
13761 let Self::Encoded {
13762 actual_count,
13763
13764 } = out;
13765 }
13766
13767 ::fidl_next::Encode::encode(&mut self.actual_count, encoder, actual_count)?;
13768
13769 Ok(())
13770 }
13771}
13772
13773impl ::fidl_next::EncodableOption for Box<WritableWriteResponse> {
13774 type EncodedOption = ::fidl_next::WireBox<WireWritableWriteResponse>;
13775}
13776
13777unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<WritableWriteResponse>
13778where
13779 ___E: ::fidl_next::Encoder + ?Sized,
13780 WritableWriteResponse: ::fidl_next::Encode<___E>,
13781{
13782 #[inline]
13783 fn encode_option(
13784 this: Option<&mut Self>,
13785 encoder: &mut ___E,
13786 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
13787 ) -> Result<(), ::fidl_next::EncodeError> {
13788 if let Some(inner) = this {
13789 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
13790 ::fidl_next::WireBox::encode_present(out);
13791 } else {
13792 ::fidl_next::WireBox::encode_absent(out);
13793 }
13794
13795 Ok(())
13796 }
13797}
13798
13799impl ::fidl_next::TakeFrom<WireWritableWriteResponse> for WritableWriteResponse {
13800 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
13801 ::fidl_next::CopyOptimization::enable_if(
13802 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
13803 )
13804 };
13805
13806 #[inline]
13807 fn take_from(from: &WireWritableWriteResponse) -> Self {
13808 Self { actual_count: ::fidl_next::TakeFrom::take_from(&from.actual_count) }
13809 }
13810}
13811
13812#[derive(Clone, Debug)]
13814#[repr(C)]
13815pub struct WireWritableWriteResponse {
13816 pub actual_count: ::fidl_next::WireU64,
13817}
13818
13819unsafe impl ::fidl_next::ZeroPadding for WireWritableWriteResponse {
13820 #[inline]
13821 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
13822}
13823
13824unsafe impl<___D> ::fidl_next::Decode<___D> for WireWritableWriteResponse
13825where
13826 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
13827{
13828 fn decode(
13829 slot: ::fidl_next::Slot<'_, Self>,
13830 decoder: &mut ___D,
13831 ) -> Result<(), ::fidl_next::DecodeError> {
13832 ::fidl_next::munge! {
13833 let Self {
13834 mut actual_count,
13835
13836 } = slot;
13837 }
13838
13839 ::fidl_next::Decode::decode(actual_count.as_mut(), decoder)?;
13840
13841 Ok(())
13842 }
13843}
13844
13845#[derive(Debug)]
13847pub struct Writable;
13848
13849pub mod writable {
13850 pub mod prelude {
13851 pub use crate::{
13852 writable, Writable, WritableClientHandler, WritableClientSender, WritableServerHandler,
13853 WritableServerSender,
13854 };
13855
13856 pub use crate::WritableWriteRequest;
13857
13858 pub use crate::WritableWriteResponse;
13859 }
13860
13861 pub struct Write;
13862
13863 impl ::fidl_next::Method for Write {
13864 const ORDINAL: u64 = 7651971425397809026;
13865
13866 type Protocol = crate::Writable;
13867
13868 type Request = crate::WireWritableWriteRequest;
13869
13870 type Response =
13871 ::fidl_next::WireResult<crate::WireWritableWriteResponse, ::fidl_next::WireI32>;
13872 }
13873}
13874
13875pub trait WritableClientSender {
13877 type Transport: ::fidl_next::Transport;
13878
13879 #[doc = " Writes data at the seek offset.\n The seek offset is moved forward by the number of bytes written.\n If the file is in append mode, the seek offset is first set to the end\n of the file, followed by the write, in one atomic step.\n\n The file size may grow if the seek offset plus `data.length` is beyond\n the current end of file.\n\n + request `data` the byte buffer to write to the file.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file and return a\n successful write of zero bytes. The seek offset is still updated if\n in append mode.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
13880 fn write<___R>(
13881 &self,
13882 request: &mut ___R,
13883 ) -> Result<
13884 ::fidl_next::ResponseFuture<'_, Self::Transport, writable::Write>,
13885 ::fidl_next::EncodeError,
13886 >
13887 where
13888 ___R: ::fidl_next::Encode<
13889 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
13890 Encoded = crate::WireWritableWriteRequest,
13891 >;
13892}
13893
13894impl<___T> WritableClientSender for ::fidl_next::ClientSender<___T, Writable>
13895where
13896 ___T: ::fidl_next::Transport,
13897{
13898 type Transport = ___T;
13899
13900 #[doc = " Writes data at the seek offset.\n The seek offset is moved forward by the number of bytes written.\n If the file is in append mode, the seek offset is first set to the end\n of the file, followed by the write, in one atomic step.\n\n The file size may grow if the seek offset plus `data.length` is beyond\n the current end of file.\n\n + request `data` the byte buffer to write to the file.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file and return a\n successful write of zero bytes. The seek offset is still updated if\n in append mode.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
13901 fn write<___R>(
13902 &self,
13903 request: &mut ___R,
13904 ) -> Result<
13905 ::fidl_next::ResponseFuture<'_, Self::Transport, writable::Write>,
13906 ::fidl_next::EncodeError,
13907 >
13908 where
13909 ___R: ::fidl_next::Encode<
13910 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
13911 Encoded = crate::WireWritableWriteRequest,
13912 >,
13913 {
13914 self.as_untyped()
13915 .send_two_way(7651971425397809026, request)
13916 .map(::fidl_next::ResponseFuture::from_untyped)
13917 }
13918}
13919
13920pub trait WritableClientHandler<___T: ::fidl_next::Transport> {}
13924
13925impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for Writable
13926where
13927 ___T: ::fidl_next::Transport,
13928 ___H: WritableClientHandler<___T>,
13929
13930 <writable::Write as ::fidl_next::Method>::Response:
13931 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
13932{
13933 fn on_event(
13934 handler: &mut ___H,
13935 sender: &::fidl_next::ClientSender<___T, Self>,
13936 ordinal: u64,
13937 buffer: ___T::RecvBuffer,
13938 ) {
13939 match ordinal {
13940 ordinal => {
13941 sender.close();
13942 }
13943 }
13944 }
13945}
13946
13947pub trait WritableServerSender {
13949 type Transport: ::fidl_next::Transport;
13950}
13951
13952impl<___T> WritableServerSender for ::fidl_next::ServerSender<___T, Writable>
13953where
13954 ___T: ::fidl_next::Transport,
13955{
13956 type Transport = ___T;
13957}
13958
13959pub trait WritableServerHandler<___T: ::fidl_next::Transport> {
13963 #[doc = " Writes data at the seek offset.\n The seek offset is moved forward by the number of bytes written.\n If the file is in append mode, the seek offset is first set to the end\n of the file, followed by the write, in one atomic step.\n\n The file size may grow if the seek offset plus `data.length` is beyond\n the current end of file.\n\n + request `data` the byte buffer to write to the file.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file and return a\n successful write of zero bytes. The seek offset is still updated if\n in append mode.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
13964 fn write(
13965 &mut self,
13966 sender: &::fidl_next::ServerSender<___T, Writable>,
13967
13968 request: ::fidl_next::RequestBuffer<___T, writable::Write>,
13969
13970 responder: ::fidl_next::Responder<writable::Write>,
13971 );
13972}
13973
13974impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for Writable
13975where
13976 ___T: ::fidl_next::Transport,
13977 ___H: WritableServerHandler<___T>,
13978
13979 crate::WireWritableWriteRequest:
13980 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
13981{
13982 fn on_one_way(
13983 handler: &mut ___H,
13984 sender: &::fidl_next::ServerSender<___T, Self>,
13985 ordinal: u64,
13986 buffer: ___T::RecvBuffer,
13987 ) {
13988 match ordinal {
13989 ordinal => {
13990 sender.close();
13991 }
13992 }
13993 }
13994
13995 fn on_two_way(
13996 handler: &mut ___H,
13997 sender: &::fidl_next::ServerSender<___T, Self>,
13998 ordinal: u64,
13999 buffer: ___T::RecvBuffer,
14000 responder: ::fidl_next::protocol::Responder,
14001 ) {
14002 match ordinal {
14003 7651971425397809026 => {
14004 let responder = ::fidl_next::Responder::from_untyped(responder);
14005
14006 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
14007 handler.write(sender, buffer, responder);
14008 }
14009
14010 ordinal => {
14011 sender.close();
14012 }
14013 }
14014 }
14015}
14016
14017#[derive(Clone, Debug)]
14018pub struct FileSeekRequest {
14019 pub origin: crate::SeekOrigin,
14020
14021 pub offset: i64,
14022}
14023
14024impl ::fidl_next::Encodable for FileSeekRequest {
14025 type Encoded = WireFileSeekRequest;
14026}
14027
14028unsafe impl<___E> ::fidl_next::Encode<___E> for FileSeekRequest
14029where
14030 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14031{
14032 #[inline]
14033 fn encode(
14034 &mut self,
14035 encoder: &mut ___E,
14036 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14037 ) -> Result<(), ::fidl_next::EncodeError> {
14038 ::fidl_next::munge! {
14039 let Self::Encoded {
14040 origin,
14041 offset,
14042
14043 } = out;
14044 }
14045
14046 ::fidl_next::Encode::encode(&mut self.origin, encoder, origin)?;
14047
14048 ::fidl_next::Encode::encode(&mut self.offset, encoder, offset)?;
14049
14050 Ok(())
14051 }
14052}
14053
14054impl ::fidl_next::EncodableOption for Box<FileSeekRequest> {
14055 type EncodedOption = ::fidl_next::WireBox<WireFileSeekRequest>;
14056}
14057
14058unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileSeekRequest>
14059where
14060 ___E: ::fidl_next::Encoder + ?Sized,
14061 FileSeekRequest: ::fidl_next::Encode<___E>,
14062{
14063 #[inline]
14064 fn encode_option(
14065 this: Option<&mut Self>,
14066 encoder: &mut ___E,
14067 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14068 ) -> Result<(), ::fidl_next::EncodeError> {
14069 if let Some(inner) = this {
14070 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14071 ::fidl_next::WireBox::encode_present(out);
14072 } else {
14073 ::fidl_next::WireBox::encode_absent(out);
14074 }
14075
14076 Ok(())
14077 }
14078}
14079
14080impl ::fidl_next::TakeFrom<WireFileSeekRequest> for FileSeekRequest {
14081 #[inline]
14082 fn take_from(from: &WireFileSeekRequest) -> Self {
14083 Self {
14084 origin: ::fidl_next::TakeFrom::take_from(&from.origin),
14085
14086 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
14087 }
14088 }
14089}
14090
14091#[derive(Clone, Debug)]
14093#[repr(C)]
14094pub struct WireFileSeekRequest {
14095 pub origin: crate::WireSeekOrigin,
14096
14097 pub offset: ::fidl_next::WireI64,
14098}
14099
14100unsafe impl ::fidl_next::ZeroPadding for WireFileSeekRequest {
14101 #[inline]
14102 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
14103 unsafe {
14104 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
14105 }
14106 }
14107}
14108
14109unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileSeekRequest
14110where
14111 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14112{
14113 fn decode(
14114 slot: ::fidl_next::Slot<'_, Self>,
14115 decoder: &mut ___D,
14116 ) -> Result<(), ::fidl_next::DecodeError> {
14117 ::fidl_next::munge! {
14118 let Self {
14119 mut origin,
14120 mut offset,
14121
14122 } = slot;
14123 }
14124
14125 ::fidl_next::Decode::decode(origin.as_mut(), decoder)?;
14126
14127 ::fidl_next::Decode::decode(offset.as_mut(), decoder)?;
14128
14129 Ok(())
14130 }
14131}
14132
14133#[derive(Clone, Debug)]
14134#[repr(C)]
14135pub struct FileSeekResponse {
14136 pub offset_from_start: u64,
14137}
14138
14139impl ::fidl_next::Encodable for FileSeekResponse {
14140 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14141 ::fidl_next::CopyOptimization::enable_if(
14142 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14143 )
14144 };
14145
14146 type Encoded = WireFileSeekResponse;
14147}
14148
14149unsafe impl<___E> ::fidl_next::Encode<___E> for FileSeekResponse
14150where
14151 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14152{
14153 #[inline]
14154 fn encode(
14155 &mut self,
14156 encoder: &mut ___E,
14157 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14158 ) -> Result<(), ::fidl_next::EncodeError> {
14159 ::fidl_next::munge! {
14160 let Self::Encoded {
14161 offset_from_start,
14162
14163 } = out;
14164 }
14165
14166 ::fidl_next::Encode::encode(&mut self.offset_from_start, encoder, offset_from_start)?;
14167
14168 Ok(())
14169 }
14170}
14171
14172impl ::fidl_next::EncodableOption for Box<FileSeekResponse> {
14173 type EncodedOption = ::fidl_next::WireBox<WireFileSeekResponse>;
14174}
14175
14176unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileSeekResponse>
14177where
14178 ___E: ::fidl_next::Encoder + ?Sized,
14179 FileSeekResponse: ::fidl_next::Encode<___E>,
14180{
14181 #[inline]
14182 fn encode_option(
14183 this: Option<&mut Self>,
14184 encoder: &mut ___E,
14185 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14186 ) -> Result<(), ::fidl_next::EncodeError> {
14187 if let Some(inner) = this {
14188 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14189 ::fidl_next::WireBox::encode_present(out);
14190 } else {
14191 ::fidl_next::WireBox::encode_absent(out);
14192 }
14193
14194 Ok(())
14195 }
14196}
14197
14198impl ::fidl_next::TakeFrom<WireFileSeekResponse> for FileSeekResponse {
14199 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14200 ::fidl_next::CopyOptimization::enable_if(
14201 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14202 )
14203 };
14204
14205 #[inline]
14206 fn take_from(from: &WireFileSeekResponse) -> Self {
14207 Self { offset_from_start: ::fidl_next::TakeFrom::take_from(&from.offset_from_start) }
14208 }
14209}
14210
14211#[derive(Clone, Debug)]
14213#[repr(C)]
14214pub struct WireFileSeekResponse {
14215 pub offset_from_start: ::fidl_next::WireU64,
14216}
14217
14218unsafe impl ::fidl_next::ZeroPadding for WireFileSeekResponse {
14219 #[inline]
14220 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
14221}
14222
14223unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileSeekResponse
14224where
14225 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14226{
14227 fn decode(
14228 slot: ::fidl_next::Slot<'_, Self>,
14229 decoder: &mut ___D,
14230 ) -> Result<(), ::fidl_next::DecodeError> {
14231 ::fidl_next::munge! {
14232 let Self {
14233 mut offset_from_start,
14234
14235 } = slot;
14236 }
14237
14238 ::fidl_next::Decode::decode(offset_from_start.as_mut(), decoder)?;
14239
14240 Ok(())
14241 }
14242}
14243
14244#[derive(Clone, Debug)]
14245#[repr(C)]
14246pub struct FileReadAtRequest {
14247 pub count: u64,
14248
14249 pub offset: u64,
14250}
14251
14252impl ::fidl_next::Encodable for FileReadAtRequest {
14253 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14254 ::fidl_next::CopyOptimization::enable_if(
14255 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
14256 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14257 )
14258 };
14259
14260 type Encoded = WireFileReadAtRequest;
14261}
14262
14263unsafe impl<___E> ::fidl_next::Encode<___E> for FileReadAtRequest
14264where
14265 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14266{
14267 #[inline]
14268 fn encode(
14269 &mut self,
14270 encoder: &mut ___E,
14271 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14272 ) -> Result<(), ::fidl_next::EncodeError> {
14273 ::fidl_next::munge! {
14274 let Self::Encoded {
14275 count,
14276 offset,
14277
14278 } = out;
14279 }
14280
14281 ::fidl_next::Encode::encode(&mut self.count, encoder, count)?;
14282
14283 ::fidl_next::Encode::encode(&mut self.offset, encoder, offset)?;
14284
14285 Ok(())
14286 }
14287}
14288
14289impl ::fidl_next::EncodableOption for Box<FileReadAtRequest> {
14290 type EncodedOption = ::fidl_next::WireBox<WireFileReadAtRequest>;
14291}
14292
14293unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileReadAtRequest>
14294where
14295 ___E: ::fidl_next::Encoder + ?Sized,
14296 FileReadAtRequest: ::fidl_next::Encode<___E>,
14297{
14298 #[inline]
14299 fn encode_option(
14300 this: Option<&mut Self>,
14301 encoder: &mut ___E,
14302 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14303 ) -> Result<(), ::fidl_next::EncodeError> {
14304 if let Some(inner) = this {
14305 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14306 ::fidl_next::WireBox::encode_present(out);
14307 } else {
14308 ::fidl_next::WireBox::encode_absent(out);
14309 }
14310
14311 Ok(())
14312 }
14313}
14314
14315impl ::fidl_next::TakeFrom<WireFileReadAtRequest> for FileReadAtRequest {
14316 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14317 ::fidl_next::CopyOptimization::enable_if(
14318 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
14319 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14320 )
14321 };
14322
14323 #[inline]
14324 fn take_from(from: &WireFileReadAtRequest) -> Self {
14325 Self {
14326 count: ::fidl_next::TakeFrom::take_from(&from.count),
14327
14328 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
14329 }
14330 }
14331}
14332
14333#[derive(Clone, Debug)]
14335#[repr(C)]
14336pub struct WireFileReadAtRequest {
14337 pub count: ::fidl_next::WireU64,
14338
14339 pub offset: ::fidl_next::WireU64,
14340}
14341
14342unsafe impl ::fidl_next::ZeroPadding for WireFileReadAtRequest {
14343 #[inline]
14344 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
14345}
14346
14347unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileReadAtRequest
14348where
14349 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14350{
14351 fn decode(
14352 slot: ::fidl_next::Slot<'_, Self>,
14353 decoder: &mut ___D,
14354 ) -> Result<(), ::fidl_next::DecodeError> {
14355 ::fidl_next::munge! {
14356 let Self {
14357 mut count,
14358 mut offset,
14359
14360 } = slot;
14361 }
14362
14363 ::fidl_next::Decode::decode(count.as_mut(), decoder)?;
14364
14365 ::fidl_next::Decode::decode(offset.as_mut(), decoder)?;
14366
14367 Ok(())
14368 }
14369}
14370
14371#[derive(Clone, Debug)]
14372pub struct FileReadAtResponse {
14373 pub data: Vec<u8>,
14374}
14375
14376impl ::fidl_next::Encodable for FileReadAtResponse {
14377 type Encoded = WireFileReadAtResponse;
14378}
14379
14380unsafe impl<___E> ::fidl_next::Encode<___E> for FileReadAtResponse
14381where
14382 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14383
14384 ___E: ::fidl_next::Encoder,
14385{
14386 #[inline]
14387 fn encode(
14388 &mut self,
14389 encoder: &mut ___E,
14390 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14391 ) -> Result<(), ::fidl_next::EncodeError> {
14392 ::fidl_next::munge! {
14393 let Self::Encoded {
14394 data,
14395
14396 } = out;
14397 }
14398
14399 ::fidl_next::Encode::encode(&mut self.data, encoder, data)?;
14400
14401 Ok(())
14402 }
14403}
14404
14405impl ::fidl_next::EncodableOption for Box<FileReadAtResponse> {
14406 type EncodedOption = ::fidl_next::WireBox<WireFileReadAtResponse>;
14407}
14408
14409unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileReadAtResponse>
14410where
14411 ___E: ::fidl_next::Encoder + ?Sized,
14412 FileReadAtResponse: ::fidl_next::Encode<___E>,
14413{
14414 #[inline]
14415 fn encode_option(
14416 this: Option<&mut Self>,
14417 encoder: &mut ___E,
14418 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14419 ) -> Result<(), ::fidl_next::EncodeError> {
14420 if let Some(inner) = this {
14421 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14422 ::fidl_next::WireBox::encode_present(out);
14423 } else {
14424 ::fidl_next::WireBox::encode_absent(out);
14425 }
14426
14427 Ok(())
14428 }
14429}
14430
14431impl ::fidl_next::TakeFrom<WireFileReadAtResponse> for FileReadAtResponse {
14432 #[inline]
14433 fn take_from(from: &WireFileReadAtResponse) -> Self {
14434 Self { data: ::fidl_next::TakeFrom::take_from(&from.data) }
14435 }
14436}
14437
14438#[derive(Debug)]
14440#[repr(C)]
14441pub struct WireFileReadAtResponse {
14442 pub data: ::fidl_next::WireVector<u8>,
14443}
14444
14445unsafe impl ::fidl_next::ZeroPadding for WireFileReadAtResponse {
14446 #[inline]
14447 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
14448}
14449
14450unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileReadAtResponse
14451where
14452 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14453
14454 ___D: ::fidl_next::Decoder,
14455{
14456 fn decode(
14457 slot: ::fidl_next::Slot<'_, Self>,
14458 decoder: &mut ___D,
14459 ) -> Result<(), ::fidl_next::DecodeError> {
14460 ::fidl_next::munge! {
14461 let Self {
14462 mut data,
14463
14464 } = slot;
14465 }
14466
14467 ::fidl_next::Decode::decode(data.as_mut(), decoder)?;
14468
14469 let data = unsafe { data.deref_unchecked() };
14470
14471 if data.len() > 8192 {
14472 return Err(::fidl_next::DecodeError::VectorTooLong {
14473 size: data.len() as u64,
14474 limit: 8192,
14475 });
14476 }
14477
14478 Ok(())
14479 }
14480}
14481
14482#[derive(Clone, Debug)]
14483pub struct FileWriteAtRequest {
14484 pub data: Vec<u8>,
14485
14486 pub offset: u64,
14487}
14488
14489impl ::fidl_next::Encodable for FileWriteAtRequest {
14490 type Encoded = WireFileWriteAtRequest;
14491}
14492
14493unsafe impl<___E> ::fidl_next::Encode<___E> for FileWriteAtRequest
14494where
14495 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14496
14497 ___E: ::fidl_next::Encoder,
14498{
14499 #[inline]
14500 fn encode(
14501 &mut self,
14502 encoder: &mut ___E,
14503 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14504 ) -> Result<(), ::fidl_next::EncodeError> {
14505 ::fidl_next::munge! {
14506 let Self::Encoded {
14507 data,
14508 offset,
14509
14510 } = out;
14511 }
14512
14513 ::fidl_next::Encode::encode(&mut self.data, encoder, data)?;
14514
14515 ::fidl_next::Encode::encode(&mut self.offset, encoder, offset)?;
14516
14517 Ok(())
14518 }
14519}
14520
14521impl ::fidl_next::EncodableOption for Box<FileWriteAtRequest> {
14522 type EncodedOption = ::fidl_next::WireBox<WireFileWriteAtRequest>;
14523}
14524
14525unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileWriteAtRequest>
14526where
14527 ___E: ::fidl_next::Encoder + ?Sized,
14528 FileWriteAtRequest: ::fidl_next::Encode<___E>,
14529{
14530 #[inline]
14531 fn encode_option(
14532 this: Option<&mut Self>,
14533 encoder: &mut ___E,
14534 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14535 ) -> Result<(), ::fidl_next::EncodeError> {
14536 if let Some(inner) = this {
14537 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14538 ::fidl_next::WireBox::encode_present(out);
14539 } else {
14540 ::fidl_next::WireBox::encode_absent(out);
14541 }
14542
14543 Ok(())
14544 }
14545}
14546
14547impl ::fidl_next::TakeFrom<WireFileWriteAtRequest> for FileWriteAtRequest {
14548 #[inline]
14549 fn take_from(from: &WireFileWriteAtRequest) -> Self {
14550 Self {
14551 data: ::fidl_next::TakeFrom::take_from(&from.data),
14552
14553 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
14554 }
14555 }
14556}
14557
14558#[derive(Debug)]
14560#[repr(C)]
14561pub struct WireFileWriteAtRequest {
14562 pub data: ::fidl_next::WireVector<u8>,
14563
14564 pub offset: ::fidl_next::WireU64,
14565}
14566
14567unsafe impl ::fidl_next::ZeroPadding for WireFileWriteAtRequest {
14568 #[inline]
14569 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
14570}
14571
14572unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileWriteAtRequest
14573where
14574 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14575
14576 ___D: ::fidl_next::Decoder,
14577{
14578 fn decode(
14579 slot: ::fidl_next::Slot<'_, Self>,
14580 decoder: &mut ___D,
14581 ) -> Result<(), ::fidl_next::DecodeError> {
14582 ::fidl_next::munge! {
14583 let Self {
14584 mut data,
14585 mut offset,
14586
14587 } = slot;
14588 }
14589
14590 ::fidl_next::Decode::decode(data.as_mut(), decoder)?;
14591
14592 let data = unsafe { data.deref_unchecked() };
14593
14594 if data.len() > 8192 {
14595 return Err(::fidl_next::DecodeError::VectorTooLong {
14596 size: data.len() as u64,
14597 limit: 8192,
14598 });
14599 }
14600
14601 ::fidl_next::Decode::decode(offset.as_mut(), decoder)?;
14602
14603 Ok(())
14604 }
14605}
14606
14607#[derive(Clone, Debug)]
14608#[repr(C)]
14609pub struct FileWriteAtResponse {
14610 pub actual_count: u64,
14611}
14612
14613impl ::fidl_next::Encodable for FileWriteAtResponse {
14614 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14615 ::fidl_next::CopyOptimization::enable_if(
14616 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14617 )
14618 };
14619
14620 type Encoded = WireFileWriteAtResponse;
14621}
14622
14623unsafe impl<___E> ::fidl_next::Encode<___E> for FileWriteAtResponse
14624where
14625 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14626{
14627 #[inline]
14628 fn encode(
14629 &mut self,
14630 encoder: &mut ___E,
14631 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14632 ) -> Result<(), ::fidl_next::EncodeError> {
14633 ::fidl_next::munge! {
14634 let Self::Encoded {
14635 actual_count,
14636
14637 } = out;
14638 }
14639
14640 ::fidl_next::Encode::encode(&mut self.actual_count, encoder, actual_count)?;
14641
14642 Ok(())
14643 }
14644}
14645
14646impl ::fidl_next::EncodableOption for Box<FileWriteAtResponse> {
14647 type EncodedOption = ::fidl_next::WireBox<WireFileWriteAtResponse>;
14648}
14649
14650unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileWriteAtResponse>
14651where
14652 ___E: ::fidl_next::Encoder + ?Sized,
14653 FileWriteAtResponse: ::fidl_next::Encode<___E>,
14654{
14655 #[inline]
14656 fn encode_option(
14657 this: Option<&mut Self>,
14658 encoder: &mut ___E,
14659 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14660 ) -> Result<(), ::fidl_next::EncodeError> {
14661 if let Some(inner) = this {
14662 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14663 ::fidl_next::WireBox::encode_present(out);
14664 } else {
14665 ::fidl_next::WireBox::encode_absent(out);
14666 }
14667
14668 Ok(())
14669 }
14670}
14671
14672impl ::fidl_next::TakeFrom<WireFileWriteAtResponse> for FileWriteAtResponse {
14673 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14674 ::fidl_next::CopyOptimization::enable_if(
14675 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14676 )
14677 };
14678
14679 #[inline]
14680 fn take_from(from: &WireFileWriteAtResponse) -> Self {
14681 Self { actual_count: ::fidl_next::TakeFrom::take_from(&from.actual_count) }
14682 }
14683}
14684
14685#[derive(Clone, Debug)]
14687#[repr(C)]
14688pub struct WireFileWriteAtResponse {
14689 pub actual_count: ::fidl_next::WireU64,
14690}
14691
14692unsafe impl ::fidl_next::ZeroPadding for WireFileWriteAtResponse {
14693 #[inline]
14694 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
14695}
14696
14697unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileWriteAtResponse
14698where
14699 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14700{
14701 fn decode(
14702 slot: ::fidl_next::Slot<'_, Self>,
14703 decoder: &mut ___D,
14704 ) -> Result<(), ::fidl_next::DecodeError> {
14705 ::fidl_next::munge! {
14706 let Self {
14707 mut actual_count,
14708
14709 } = slot;
14710 }
14711
14712 ::fidl_next::Decode::decode(actual_count.as_mut(), decoder)?;
14713
14714 Ok(())
14715 }
14716}
14717
14718#[derive(Clone, Debug)]
14719#[repr(C)]
14720pub struct FileResizeRequest {
14721 pub length: u64,
14722}
14723
14724impl ::fidl_next::Encodable for FileResizeRequest {
14725 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14726 ::fidl_next::CopyOptimization::enable_if(
14727 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14728 )
14729 };
14730
14731 type Encoded = WireFileResizeRequest;
14732}
14733
14734unsafe impl<___E> ::fidl_next::Encode<___E> for FileResizeRequest
14735where
14736 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14737{
14738 #[inline]
14739 fn encode(
14740 &mut self,
14741 encoder: &mut ___E,
14742 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14743 ) -> Result<(), ::fidl_next::EncodeError> {
14744 ::fidl_next::munge! {
14745 let Self::Encoded {
14746 length,
14747
14748 } = out;
14749 }
14750
14751 ::fidl_next::Encode::encode(&mut self.length, encoder, length)?;
14752
14753 Ok(())
14754 }
14755}
14756
14757impl ::fidl_next::EncodableOption for Box<FileResizeRequest> {
14758 type EncodedOption = ::fidl_next::WireBox<WireFileResizeRequest>;
14759}
14760
14761unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileResizeRequest>
14762where
14763 ___E: ::fidl_next::Encoder + ?Sized,
14764 FileResizeRequest: ::fidl_next::Encode<___E>,
14765{
14766 #[inline]
14767 fn encode_option(
14768 this: Option<&mut Self>,
14769 encoder: &mut ___E,
14770 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14771 ) -> Result<(), ::fidl_next::EncodeError> {
14772 if let Some(inner) = this {
14773 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14774 ::fidl_next::WireBox::encode_present(out);
14775 } else {
14776 ::fidl_next::WireBox::encode_absent(out);
14777 }
14778
14779 Ok(())
14780 }
14781}
14782
14783impl ::fidl_next::TakeFrom<WireFileResizeRequest> for FileResizeRequest {
14784 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14785 ::fidl_next::CopyOptimization::enable_if(
14786 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14787 )
14788 };
14789
14790 #[inline]
14791 fn take_from(from: &WireFileResizeRequest) -> Self {
14792 Self { length: ::fidl_next::TakeFrom::take_from(&from.length) }
14793 }
14794}
14795
14796#[derive(Clone, Debug)]
14798#[repr(C)]
14799pub struct WireFileResizeRequest {
14800 pub length: ::fidl_next::WireU64,
14801}
14802
14803unsafe impl ::fidl_next::ZeroPadding for WireFileResizeRequest {
14804 #[inline]
14805 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
14806}
14807
14808unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileResizeRequest
14809where
14810 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
14811{
14812 fn decode(
14813 slot: ::fidl_next::Slot<'_, Self>,
14814 decoder: &mut ___D,
14815 ) -> Result<(), ::fidl_next::DecodeError> {
14816 ::fidl_next::munge! {
14817 let Self {
14818 mut length,
14819
14820 } = slot;
14821 }
14822
14823 ::fidl_next::Decode::decode(length.as_mut(), decoder)?;
14824
14825 Ok(())
14826 }
14827}
14828
14829pub type FileResizeResponse = ();
14830
14831pub type WireFileResizeResponse = ();
14833
14834::fidl_next::bitflags! {
14835 #[derive(
14836 Clone,
14837 Copy,
14838 Debug,
14839 PartialEq,
14840 Eq,
14841 Hash,
14842 )]
14843 pub struct VmoFlags: u32 {
14844 #[doc = " Requests that the VMO be readable.\n"]const READ = 1;
14845 #[doc = " Requests that the VMO be writable.\n"]const WRITE = 2;
14846 #[doc = " Request that the VMO be executable.\n"]const EXECUTE = 4;
14847 #[doc = " Require a copy-on-write clone of the underlying VMO. The request\n should fail if the VMO cannot be cloned. May not be supplied\n with `SHARED_BUFFER`.\n\n A private clone uses at least the guarantees of the\n `ZX_VMO_CHILD_SNAPSHOT_AT_LEAST_ON_WRITE` flag to\n `zx_vmo_create_child()`. This means that the returned VMO will\n be copy-on-write (if `WRITE` is requested) but that it may or\n may not reflect subsequent content changes to the underlying\n file. The returned VMO will not reflect size changes to the\n file. These semantics match those of the POSIX `mmap()`\n `MAP_PRIVATE` flag.\n\n In some cases, clients requiring a guaranteed snapshot of the\n file can use `SHARED_BUFFER` and then use\n `zx_vmo_create_child()` with `ZX_VMO_CHILD_SNAPSHOT`. However,\n in addition to cases where the implementation can\'t return a\n `SHARED_BUFFER`, creating a full snapshot will fail if the VMO\n is attached to the pager. Since most filesystems will use the\n paging system, the full snapshot approach should only be used in\n specific cases where the client is talking to a known server.\n"]const PRIVATE_CLONE = 65536;
14848 #[doc = " Require a VMO that provides direct access to the contents of the\n file\'s underlying VMO. The request should fail if such a VMO\n cannot be provided. May not be supplied with `PRIVATE_CLONE`.\n\n The returned VMO may not be resizable even when `WRITE` access is\n requested. In this case, [`File.Resize`] should be used to resize\n the file.\n"]const SHARED_BUFFER = 131072;
14849
14850 }
14851}
14852
14853impl ::fidl_next::Encodable for VmoFlags {
14854 type Encoded = WireVmoFlags;
14855}
14856
14857unsafe impl<___E> ::fidl_next::Encode<___E> for VmoFlags
14858where
14859 ___E: ?Sized,
14860{
14861 #[inline]
14862 fn encode(
14863 &mut self,
14864 _: &mut ___E,
14865 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14866 ) -> Result<(), ::fidl_next::EncodeError> {
14867 ::fidl_next::munge!(let WireVmoFlags { value } = out);
14868 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
14869 Ok(())
14870 }
14871}
14872
14873impl ::core::convert::From<WireVmoFlags> for VmoFlags {
14874 fn from(wire: WireVmoFlags) -> Self {
14875 Self::from_bits_retain(u32::from(wire.value))
14876 }
14877}
14878
14879impl ::fidl_next::TakeFrom<WireVmoFlags> for VmoFlags {
14880 #[inline]
14881 fn take_from(from: &WireVmoFlags) -> Self {
14882 Self::from(*from)
14883 }
14884}
14885
14886#[derive(Clone, Copy, Debug)]
14888#[repr(transparent)]
14889pub struct WireVmoFlags {
14890 value: ::fidl_next::WireU32,
14891}
14892
14893unsafe impl ::fidl_next::ZeroPadding for WireVmoFlags {
14894 #[inline]
14895 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
14896 }
14898}
14899
14900unsafe impl<___D> ::fidl_next::Decode<___D> for WireVmoFlags
14901where
14902 ___D: ?Sized,
14903{
14904 fn decode(
14905 slot: ::fidl_next::Slot<'_, Self>,
14906 _: &mut ___D,
14907 ) -> Result<(), ::fidl_next::DecodeError> {
14908 ::fidl_next::munge!(let Self { value } = slot);
14909 let set = u32::from(*value);
14910 if set & !VmoFlags::all().bits() != 0 {
14911 return Err(::fidl_next::DecodeError::InvalidBits {
14912 expected: VmoFlags::all().bits() as usize,
14913 actual: set as usize,
14914 });
14915 }
14916
14917 Ok(())
14918 }
14919}
14920
14921impl ::core::convert::From<VmoFlags> for WireVmoFlags {
14922 fn from(natural: VmoFlags) -> Self {
14923 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
14924 }
14925}
14926
14927#[derive(Clone, Debug)]
14928#[repr(C)]
14929pub struct FileGetBackingMemoryRequest {
14930 pub flags: crate::VmoFlags,
14931}
14932
14933impl ::fidl_next::Encodable for FileGetBackingMemoryRequest {
14934 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14935 ::fidl_next::CopyOptimization::enable_if(
14936 true && <crate::VmoFlags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14937 )
14938 };
14939
14940 type Encoded = WireFileGetBackingMemoryRequest;
14941}
14942
14943unsafe impl<___E> ::fidl_next::Encode<___E> for FileGetBackingMemoryRequest
14944where
14945 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
14946{
14947 #[inline]
14948 fn encode(
14949 &mut self,
14950 encoder: &mut ___E,
14951 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
14952 ) -> Result<(), ::fidl_next::EncodeError> {
14953 ::fidl_next::munge! {
14954 let Self::Encoded {
14955 flags,
14956
14957 } = out;
14958 }
14959
14960 ::fidl_next::Encode::encode(&mut self.flags, encoder, flags)?;
14961
14962 Ok(())
14963 }
14964}
14965
14966impl ::fidl_next::EncodableOption for Box<FileGetBackingMemoryRequest> {
14967 type EncodedOption = ::fidl_next::WireBox<WireFileGetBackingMemoryRequest>;
14968}
14969
14970unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileGetBackingMemoryRequest>
14971where
14972 ___E: ::fidl_next::Encoder + ?Sized,
14973 FileGetBackingMemoryRequest: ::fidl_next::Encode<___E>,
14974{
14975 #[inline]
14976 fn encode_option(
14977 this: Option<&mut Self>,
14978 encoder: &mut ___E,
14979 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
14980 ) -> Result<(), ::fidl_next::EncodeError> {
14981 if let Some(inner) = this {
14982 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
14983 ::fidl_next::WireBox::encode_present(out);
14984 } else {
14985 ::fidl_next::WireBox::encode_absent(out);
14986 }
14987
14988 Ok(())
14989 }
14990}
14991
14992impl ::fidl_next::TakeFrom<WireFileGetBackingMemoryRequest> for FileGetBackingMemoryRequest {
14993 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
14994 ::fidl_next::CopyOptimization::enable_if(
14995 true && <crate::VmoFlags as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
14996 )
14997 };
14998
14999 #[inline]
15000 fn take_from(from: &WireFileGetBackingMemoryRequest) -> Self {
15001 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
15002 }
15003}
15004
15005#[derive(Clone, Debug)]
15007#[repr(C)]
15008pub struct WireFileGetBackingMemoryRequest {
15009 pub flags: crate::WireVmoFlags,
15010}
15011
15012unsafe impl ::fidl_next::ZeroPadding for WireFileGetBackingMemoryRequest {
15013 #[inline]
15014 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
15015}
15016
15017unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileGetBackingMemoryRequest
15018where
15019 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
15020{
15021 fn decode(
15022 slot: ::fidl_next::Slot<'_, Self>,
15023 decoder: &mut ___D,
15024 ) -> Result<(), ::fidl_next::DecodeError> {
15025 ::fidl_next::munge! {
15026 let Self {
15027 mut flags,
15028
15029 } = slot;
15030 }
15031
15032 ::fidl_next::Decode::decode(flags.as_mut(), decoder)?;
15033
15034 Ok(())
15035 }
15036}
15037
15038#[derive(Debug)]
15039#[repr(C)]
15040pub struct FileGetBackingMemoryResponse {
15041 pub vmo: ::fidl_next::fuchsia::zx::Handle,
15042}
15043
15044impl ::fidl_next::Encodable for FileGetBackingMemoryResponse {
15045 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
15046 ::fidl_next::CopyOptimization::enable_if(
15047 true && <::fidl_next::fuchsia::zx::Handle as ::fidl_next::Encodable>::COPY_OPTIMIZATION
15048 .is_enabled(),
15049 )
15050 };
15051
15052 type Encoded = WireFileGetBackingMemoryResponse;
15053}
15054
15055unsafe impl<___E> ::fidl_next::Encode<___E> for FileGetBackingMemoryResponse
15056where
15057 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
15058
15059 ___E: ::fidl_next::fuchsia::HandleEncoder,
15060{
15061 #[inline]
15062 fn encode(
15063 &mut self,
15064 encoder: &mut ___E,
15065 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
15066 ) -> Result<(), ::fidl_next::EncodeError> {
15067 ::fidl_next::munge! {
15068 let Self::Encoded {
15069 vmo,
15070
15071 } = out;
15072 }
15073
15074 ::fidl_next::Encode::encode(&mut self.vmo, encoder, vmo)?;
15075
15076 Ok(())
15077 }
15078}
15079
15080impl ::fidl_next::EncodableOption for Box<FileGetBackingMemoryResponse> {
15081 type EncodedOption = ::fidl_next::WireBox<WireFileGetBackingMemoryResponse>;
15082}
15083
15084unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileGetBackingMemoryResponse>
15085where
15086 ___E: ::fidl_next::Encoder + ?Sized,
15087 FileGetBackingMemoryResponse: ::fidl_next::Encode<___E>,
15088{
15089 #[inline]
15090 fn encode_option(
15091 this: Option<&mut Self>,
15092 encoder: &mut ___E,
15093 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
15094 ) -> Result<(), ::fidl_next::EncodeError> {
15095 if let Some(inner) = this {
15096 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
15097 ::fidl_next::WireBox::encode_present(out);
15098 } else {
15099 ::fidl_next::WireBox::encode_absent(out);
15100 }
15101
15102 Ok(())
15103 }
15104}
15105
15106impl ::fidl_next::TakeFrom<WireFileGetBackingMemoryResponse> for FileGetBackingMemoryResponse {
15107 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
15108 ::fidl_next::CopyOptimization::enable_if(
15109 true && <::fidl_next::fuchsia::zx::Handle as ::fidl_next::Encodable>::COPY_OPTIMIZATION
15110 .is_enabled(),
15111 )
15112 };
15113
15114 #[inline]
15115 fn take_from(from: &WireFileGetBackingMemoryResponse) -> Self {
15116 Self { vmo: ::fidl_next::TakeFrom::take_from(&from.vmo) }
15117 }
15118}
15119
15120#[derive(Debug)]
15122#[repr(C)]
15123pub struct WireFileGetBackingMemoryResponse {
15124 pub vmo: ::fidl_next::fuchsia::WireHandle,
15125}
15126
15127unsafe impl ::fidl_next::ZeroPadding for WireFileGetBackingMemoryResponse {
15128 #[inline]
15129 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
15130}
15131
15132unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileGetBackingMemoryResponse
15133where
15134 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
15135
15136 ___D: ::fidl_next::fuchsia::HandleDecoder,
15137{
15138 fn decode(
15139 slot: ::fidl_next::Slot<'_, Self>,
15140 decoder: &mut ___D,
15141 ) -> Result<(), ::fidl_next::DecodeError> {
15142 ::fidl_next::munge! {
15143 let Self {
15144 mut vmo,
15145
15146 } = slot;
15147 }
15148
15149 ::fidl_next::Decode::decode(vmo.as_mut(), decoder)?;
15150
15151 Ok(())
15152 }
15153}
15154
15155#[derive(Debug)]
15156pub struct LinkableLinkIntoRequest {
15157 pub dst_parent_token: ::fidl_next::fuchsia::zx::Handle,
15158
15159 pub dst: String,
15160}
15161
15162impl ::fidl_next::Encodable for LinkableLinkIntoRequest {
15163 type Encoded = WireLinkableLinkIntoRequest;
15164}
15165
15166unsafe impl<___E> ::fidl_next::Encode<___E> for LinkableLinkIntoRequest
15167where
15168 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
15169
15170 ___E: ::fidl_next::Encoder,
15171
15172 ___E: ::fidl_next::fuchsia::HandleEncoder,
15173{
15174 #[inline]
15175 fn encode(
15176 &mut self,
15177 encoder: &mut ___E,
15178 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
15179 ) -> Result<(), ::fidl_next::EncodeError> {
15180 ::fidl_next::munge! {
15181 let Self::Encoded {
15182 dst_parent_token,
15183 dst,
15184
15185 } = out;
15186 }
15187
15188 ::fidl_next::Encode::encode(&mut self.dst_parent_token, encoder, dst_parent_token)?;
15189
15190 ::fidl_next::Encode::encode(&mut self.dst, encoder, dst)?;
15191
15192 Ok(())
15193 }
15194}
15195
15196impl ::fidl_next::EncodableOption for Box<LinkableLinkIntoRequest> {
15197 type EncodedOption = ::fidl_next::WireBox<WireLinkableLinkIntoRequest>;
15198}
15199
15200unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<LinkableLinkIntoRequest>
15201where
15202 ___E: ::fidl_next::Encoder + ?Sized,
15203 LinkableLinkIntoRequest: ::fidl_next::Encode<___E>,
15204{
15205 #[inline]
15206 fn encode_option(
15207 this: Option<&mut Self>,
15208 encoder: &mut ___E,
15209 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
15210 ) -> Result<(), ::fidl_next::EncodeError> {
15211 if let Some(inner) = this {
15212 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
15213 ::fidl_next::WireBox::encode_present(out);
15214 } else {
15215 ::fidl_next::WireBox::encode_absent(out);
15216 }
15217
15218 Ok(())
15219 }
15220}
15221
15222impl ::fidl_next::TakeFrom<WireLinkableLinkIntoRequest> for LinkableLinkIntoRequest {
15223 #[inline]
15224 fn take_from(from: &WireLinkableLinkIntoRequest) -> Self {
15225 Self {
15226 dst_parent_token: ::fidl_next::TakeFrom::take_from(&from.dst_parent_token),
15227
15228 dst: ::fidl_next::TakeFrom::take_from(&from.dst),
15229 }
15230 }
15231}
15232
15233#[derive(Debug)]
15235#[repr(C)]
15236pub struct WireLinkableLinkIntoRequest {
15237 pub dst_parent_token: ::fidl_next::fuchsia::WireHandle,
15238
15239 pub dst: ::fidl_next::WireString,
15240}
15241
15242unsafe impl ::fidl_next::ZeroPadding for WireLinkableLinkIntoRequest {
15243 #[inline]
15244 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
15245 unsafe {
15246 out.as_mut_ptr().cast::<u8>().add(4).write_bytes(0, 4);
15247 }
15248 }
15249}
15250
15251unsafe impl<___D> ::fidl_next::Decode<___D> for WireLinkableLinkIntoRequest
15252where
15253 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
15254
15255 ___D: ::fidl_next::Decoder,
15256
15257 ___D: ::fidl_next::fuchsia::HandleDecoder,
15258{
15259 fn decode(
15260 slot: ::fidl_next::Slot<'_, Self>,
15261 decoder: &mut ___D,
15262 ) -> Result<(), ::fidl_next::DecodeError> {
15263 ::fidl_next::munge! {
15264 let Self {
15265 mut dst_parent_token,
15266 mut dst,
15267
15268 } = slot;
15269 }
15270
15271 ::fidl_next::Decode::decode(dst_parent_token.as_mut(), decoder)?;
15272
15273 ::fidl_next::Decode::decode(dst.as_mut(), decoder)?;
15274
15275 let dst = unsafe { dst.deref_unchecked() };
15276
15277 if dst.len() > 255 {
15278 return Err(::fidl_next::DecodeError::VectorTooLong {
15279 size: dst.len() as u64,
15280 limit: 255,
15281 });
15282 }
15283
15284 Ok(())
15285 }
15286}
15287
15288pub type LinkableLinkIntoResponse = ();
15289
15290pub type WireLinkableLinkIntoResponse = ();
15292
15293#[derive(Debug)]
15295pub struct Linkable;
15296
15297pub mod linkable {
15298 pub mod prelude {
15299 pub use crate::{
15300 linkable, Linkable, LinkableClientHandler, LinkableClientSender, LinkableServerHandler,
15301 LinkableServerSender,
15302 };
15303
15304 pub use crate::LinkableLinkIntoRequest;
15305
15306 pub use crate::LinkableLinkIntoResponse;
15307 }
15308
15309 pub struct LinkInto;
15310
15311 impl ::fidl_next::Method for LinkInto {
15312 const ORDINAL: u64 = 6121399674497678964;
15313
15314 type Protocol = crate::Linkable;
15315
15316 type Request = crate::WireLinkableLinkIntoRequest;
15317
15318 type Response =
15319 ::fidl_next::WireResult<crate::WireLinkableLinkIntoResponse, ::fidl_next::WireI32>;
15320 }
15321}
15322
15323pub trait LinkableClientSender {
15325 type Transport: ::fidl_next::Transport;
15326
15327 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
15328 fn link_into<___R>(
15329 &self,
15330 request: &mut ___R,
15331 ) -> Result<
15332 ::fidl_next::ResponseFuture<'_, Self::Transport, linkable::LinkInto>,
15333 ::fidl_next::EncodeError,
15334 >
15335 where
15336 ___R: ::fidl_next::Encode<
15337 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
15338 Encoded = crate::WireLinkableLinkIntoRequest,
15339 >;
15340}
15341
15342impl<___T> LinkableClientSender for ::fidl_next::ClientSender<___T, Linkable>
15343where
15344 ___T: ::fidl_next::Transport,
15345{
15346 type Transport = ___T;
15347
15348 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
15349 fn link_into<___R>(
15350 &self,
15351 request: &mut ___R,
15352 ) -> Result<
15353 ::fidl_next::ResponseFuture<'_, Self::Transport, linkable::LinkInto>,
15354 ::fidl_next::EncodeError,
15355 >
15356 where
15357 ___R: ::fidl_next::Encode<
15358 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
15359 Encoded = crate::WireLinkableLinkIntoRequest,
15360 >,
15361 {
15362 self.as_untyped()
15363 .send_two_way(6121399674497678964, request)
15364 .map(::fidl_next::ResponseFuture::from_untyped)
15365 }
15366}
15367
15368pub trait LinkableClientHandler<___T: ::fidl_next::Transport> {}
15372
15373impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for Linkable
15374where
15375 ___T: ::fidl_next::Transport,
15376 ___H: LinkableClientHandler<___T>,
15377
15378 <linkable::LinkInto as ::fidl_next::Method>::Response:
15379 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
15380{
15381 fn on_event(
15382 handler: &mut ___H,
15383 sender: &::fidl_next::ClientSender<___T, Self>,
15384 ordinal: u64,
15385 buffer: ___T::RecvBuffer,
15386 ) {
15387 match ordinal {
15388 ordinal => {
15389 sender.close();
15390 }
15391 }
15392 }
15393}
15394
15395pub trait LinkableServerSender {
15397 type Transport: ::fidl_next::Transport;
15398}
15399
15400impl<___T> LinkableServerSender for ::fidl_next::ServerSender<___T, Linkable>
15401where
15402 ___T: ::fidl_next::Transport,
15403{
15404 type Transport = ___T;
15405}
15406
15407pub trait LinkableServerHandler<___T: ::fidl_next::Transport> {
15411 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
15412 fn link_into(
15413 &mut self,
15414 sender: &::fidl_next::ServerSender<___T, Linkable>,
15415
15416 request: ::fidl_next::RequestBuffer<___T, linkable::LinkInto>,
15417
15418 responder: ::fidl_next::Responder<linkable::LinkInto>,
15419 );
15420}
15421
15422impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for Linkable
15423where
15424 ___T: ::fidl_next::Transport,
15425 ___H: LinkableServerHandler<___T>,
15426
15427 crate::WireLinkableLinkIntoRequest:
15428 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
15429{
15430 fn on_one_way(
15431 handler: &mut ___H,
15432 sender: &::fidl_next::ServerSender<___T, Self>,
15433 ordinal: u64,
15434 buffer: ___T::RecvBuffer,
15435 ) {
15436 match ordinal {
15437 ordinal => {
15438 sender.close();
15439 }
15440 }
15441 }
15442
15443 fn on_two_way(
15444 handler: &mut ___H,
15445 sender: &::fidl_next::ServerSender<___T, Self>,
15446 ordinal: u64,
15447 buffer: ___T::RecvBuffer,
15448 responder: ::fidl_next::protocol::Responder,
15449 ) {
15450 match ordinal {
15451 6121399674497678964 => {
15452 let responder = ::fidl_next::Responder::from_untyped(responder);
15453
15454 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
15455 handler.link_into(sender, buffer, responder);
15456 }
15457
15458 ordinal => {
15459 sender.close();
15460 }
15461 }
15462 }
15463}
15464
15465#[derive(Debug)]
15466pub struct FileAllocateRequest {
15467 pub offset: u64,
15468
15469 pub length: u64,
15470
15471 pub mode: crate::AllocateMode,
15472}
15473
15474impl ::fidl_next::Encodable for FileAllocateRequest {
15475 type Encoded = WireFileAllocateRequest;
15476}
15477
15478unsafe impl<___E> ::fidl_next::Encode<___E> for FileAllocateRequest
15479where
15480 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
15481
15482 ___E: ::fidl_next::fuchsia::HandleEncoder,
15483{
15484 #[inline]
15485 fn encode(
15486 &mut self,
15487 encoder: &mut ___E,
15488 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
15489 ) -> Result<(), ::fidl_next::EncodeError> {
15490 ::fidl_next::munge! {
15491 let Self::Encoded {
15492 offset,
15493 length,
15494 mode,
15495
15496 } = out;
15497 }
15498
15499 ::fidl_next::Encode::encode(&mut self.offset, encoder, offset)?;
15500
15501 ::fidl_next::Encode::encode(&mut self.length, encoder, length)?;
15502
15503 ::fidl_next::Encode::encode(&mut self.mode, encoder, mode)?;
15504
15505 Ok(())
15506 }
15507}
15508
15509impl ::fidl_next::EncodableOption for Box<FileAllocateRequest> {
15510 type EncodedOption = ::fidl_next::WireBox<WireFileAllocateRequest>;
15511}
15512
15513unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileAllocateRequest>
15514where
15515 ___E: ::fidl_next::Encoder + ?Sized,
15516 FileAllocateRequest: ::fidl_next::Encode<___E>,
15517{
15518 #[inline]
15519 fn encode_option(
15520 this: Option<&mut Self>,
15521 encoder: &mut ___E,
15522 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
15523 ) -> Result<(), ::fidl_next::EncodeError> {
15524 if let Some(inner) = this {
15525 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
15526 ::fidl_next::WireBox::encode_present(out);
15527 } else {
15528 ::fidl_next::WireBox::encode_absent(out);
15529 }
15530
15531 Ok(())
15532 }
15533}
15534
15535impl ::fidl_next::TakeFrom<WireFileAllocateRequest> for FileAllocateRequest {
15536 #[inline]
15537 fn take_from(from: &WireFileAllocateRequest) -> Self {
15538 Self {
15539 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
15540
15541 length: ::fidl_next::TakeFrom::take_from(&from.length),
15542
15543 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
15544 }
15545 }
15546}
15547
15548#[derive(Debug)]
15550#[repr(C)]
15551pub struct WireFileAllocateRequest {
15552 pub offset: ::fidl_next::WireU64,
15553
15554 pub length: ::fidl_next::WireU64,
15555
15556 pub mode: crate::WireAllocateMode,
15557}
15558
15559unsafe impl ::fidl_next::ZeroPadding for WireFileAllocateRequest {
15560 #[inline]
15561 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
15562 unsafe {
15563 out.as_mut_ptr().cast::<u8>().add(20).write_bytes(0, 4);
15564 }
15565 }
15566}
15567
15568unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileAllocateRequest
15569where
15570 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
15571
15572 ___D: ::fidl_next::fuchsia::HandleDecoder,
15573{
15574 fn decode(
15575 slot: ::fidl_next::Slot<'_, Self>,
15576 decoder: &mut ___D,
15577 ) -> Result<(), ::fidl_next::DecodeError> {
15578 ::fidl_next::munge! {
15579 let Self {
15580 mut offset,
15581 mut length,
15582 mut mode,
15583
15584 } = slot;
15585 }
15586
15587 ::fidl_next::Decode::decode(offset.as_mut(), decoder)?;
15588
15589 ::fidl_next::Decode::decode(length.as_mut(), decoder)?;
15590
15591 ::fidl_next::Decode::decode(mode.as_mut(), decoder)?;
15592
15593 Ok(())
15594 }
15595}
15596
15597pub type FileAllocateResponse = ();
15598
15599pub type WireFileAllocateResponse = ();
15601
15602#[derive(Debug)]
15603pub struct FileEnableVerityRequest {
15604 pub options: crate::VerificationOptions,
15605}
15606
15607impl ::fidl_next::Encodable for FileEnableVerityRequest {
15608 type Encoded = WireFileEnableVerityRequest;
15609}
15610
15611unsafe impl<___E> ::fidl_next::Encode<___E> for FileEnableVerityRequest
15612where
15613 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
15614
15615 ___E: ::fidl_next::Encoder,
15616
15617 ___E: ::fidl_next::fuchsia::HandleEncoder,
15618{
15619 #[inline]
15620 fn encode(
15621 &mut self,
15622 encoder: &mut ___E,
15623 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
15624 ) -> Result<(), ::fidl_next::EncodeError> {
15625 ::fidl_next::munge! {
15626 let Self::Encoded {
15627 options,
15628
15629 } = out;
15630 }
15631
15632 ::fidl_next::Encode::encode(&mut self.options, encoder, options)?;
15633
15634 Ok(())
15635 }
15636}
15637
15638impl ::fidl_next::EncodableOption for Box<FileEnableVerityRequest> {
15639 type EncodedOption = ::fidl_next::WireBox<WireFileEnableVerityRequest>;
15640}
15641
15642unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileEnableVerityRequest>
15643where
15644 ___E: ::fidl_next::Encoder + ?Sized,
15645 FileEnableVerityRequest: ::fidl_next::Encode<___E>,
15646{
15647 #[inline]
15648 fn encode_option(
15649 this: Option<&mut Self>,
15650 encoder: &mut ___E,
15651 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
15652 ) -> Result<(), ::fidl_next::EncodeError> {
15653 if let Some(inner) = this {
15654 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
15655 ::fidl_next::WireBox::encode_present(out);
15656 } else {
15657 ::fidl_next::WireBox::encode_absent(out);
15658 }
15659
15660 Ok(())
15661 }
15662}
15663
15664impl ::fidl_next::TakeFrom<WireFileEnableVerityRequest> for FileEnableVerityRequest {
15665 #[inline]
15666 fn take_from(from: &WireFileEnableVerityRequest) -> Self {
15667 Self { options: ::fidl_next::TakeFrom::take_from(&from.options) }
15668 }
15669}
15670
15671#[derive(Debug)]
15673#[repr(C)]
15674pub struct WireFileEnableVerityRequest {
15675 pub options: crate::WireVerificationOptions,
15676}
15677
15678unsafe impl ::fidl_next::ZeroPadding for WireFileEnableVerityRequest {
15679 #[inline]
15680 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
15681}
15682
15683unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileEnableVerityRequest
15684where
15685 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
15686
15687 ___D: ::fidl_next::Decoder,
15688
15689 ___D: ::fidl_next::fuchsia::HandleDecoder,
15690{
15691 fn decode(
15692 slot: ::fidl_next::Slot<'_, Self>,
15693 decoder: &mut ___D,
15694 ) -> Result<(), ::fidl_next::DecodeError> {
15695 ::fidl_next::munge! {
15696 let Self {
15697 mut options,
15698
15699 } = slot;
15700 }
15701
15702 ::fidl_next::Decode::decode(options.as_mut(), decoder)?;
15703
15704 Ok(())
15705 }
15706}
15707
15708pub type FileEnableVerityResponse = ();
15709
15710pub type WireFileEnableVerityResponse = ();
15712
15713#[doc = " A [`Node`] which contains a sequence of bytes of definite length.\n\n NOTE: cloned connections do not share their seek offset with their source\n connection.\n"]
15715#[derive(Debug)]
15716pub struct File;
15717
15718impl ::fidl_next::Discoverable for File {
15719 const PROTOCOL_NAME: &'static str = "file";
15720}
15721
15722pub mod file {
15723 pub mod prelude {
15724 pub use crate::{
15725 file, File, FileClientHandler, FileClientSender, FileServerHandler, FileServerSender,
15726 };
15727
15728 pub use crate::AdvisoryLockingAdvisoryLockRequest;
15729
15730 pub use crate::AdvisoryLockingAdvisoryLockResponse;
15731
15732 pub use crate::ConnectionInfo;
15733
15734 pub use crate::ExtendedAttributeValue;
15735
15736 pub use crate::FileAllocateRequest;
15737
15738 pub use crate::FileEnableVerityRequest;
15739
15740 pub use crate::FileGetBackingMemoryRequest;
15741
15742 pub use crate::FileInfo;
15743
15744 pub use crate::FileReadAtRequest;
15745
15746 pub use crate::FileResizeRequest;
15747
15748 pub use crate::FileSeekRequest;
15749
15750 pub use crate::FileWriteAtRequest;
15751
15752 pub use crate::FileAllocateResponse;
15753
15754 pub use crate::FileEnableVerityResponse;
15755
15756 pub use crate::FileGetBackingMemoryResponse;
15757
15758 pub use crate::FileReadAtResponse;
15759
15760 pub use crate::FileResizeResponse;
15761
15762 pub use crate::FileSeekResponse;
15763
15764 pub use crate::FileWriteAtResponse;
15765
15766 pub use crate::LinkableLinkIntoRequest;
15767
15768 pub use crate::LinkableLinkIntoResponse;
15769
15770 pub use crate::MutableNodeAttributes;
15771
15772 pub use crate::NodeAttributes2;
15773
15774 pub use crate::NodeDeprecatedCloneRequest;
15775
15776 pub use crate::NodeDeprecatedGetFlagsResponse;
15777
15778 pub use crate::NodeDeprecatedSetFlagsRequest;
15779
15780 pub use crate::NodeDeprecatedSetFlagsResponse;
15781
15782 pub use crate::NodeGetAttrResponse;
15783
15784 pub use crate::NodeGetAttributesRequest;
15785
15786 pub use crate::NodeGetExtendedAttributeRequest;
15787
15788 pub use crate::NodeListExtendedAttributesRequest;
15789
15790 pub use crate::NodeOnOpenRequest;
15791
15792 pub use crate::NodeQueryFilesystemResponse;
15793
15794 pub use crate::NodeRemoveExtendedAttributeRequest;
15795
15796 pub use crate::NodeSetAttrRequest;
15797
15798 pub use crate::NodeSetAttrResponse;
15799
15800 pub use crate::NodeSetExtendedAttributeRequest;
15801
15802 pub use crate::NodeSetFlagsRequest;
15803
15804 pub use crate::NodeGetFlagsResponse;
15805
15806 pub use crate::NodeRemoveExtendedAttributeResponse;
15807
15808 pub use crate::NodeSetExtendedAttributeResponse;
15809
15810 pub use crate::NodeSetFlagsResponse;
15811
15812 pub use crate::NodeSyncResponse;
15813
15814 pub use crate::NodeUpdateAttributesResponse;
15815
15816 pub use crate::ReadableReadRequest;
15817
15818 pub use crate::ReadableReadResponse;
15819
15820 pub use crate::Representation;
15821
15822 pub use crate::WritableWriteRequest;
15823
15824 pub use crate::WritableWriteResponse;
15825
15826 pub use ::fidl_next_fuchsia_unknown::CloneableCloneRequest;
15827
15828 pub use ::fidl_next_fuchsia_unknown::CloseableCloseResponse;
15829
15830 pub use ::fidl_next_fuchsia_unknown::QueryableQueryResponse;
15831 }
15832
15833 pub struct AdvisoryLock;
15834
15835 impl ::fidl_next::Method for AdvisoryLock {
15836 const ORDINAL: u64 = 7992130864415541162;
15837
15838 type Protocol = crate::File;
15839
15840 type Request = crate::WireAdvisoryLockingAdvisoryLockRequest;
15841
15842 type Response = ::fidl_next::WireResult<
15843 crate::WireAdvisoryLockingAdvisoryLockResponse,
15844 ::fidl_next::WireI32,
15845 >;
15846 }
15847
15848 pub struct LinkInto;
15849
15850 impl ::fidl_next::Method for LinkInto {
15851 const ORDINAL: u64 = 6121399674497678964;
15852
15853 type Protocol = crate::File;
15854
15855 type Request = crate::WireLinkableLinkIntoRequest;
15856
15857 type Response =
15858 ::fidl_next::WireResult<crate::WireLinkableLinkIntoResponse, ::fidl_next::WireI32>;
15859 }
15860
15861 pub struct Clone;
15862
15863 impl ::fidl_next::Method for Clone {
15864 const ORDINAL: u64 = 2366825959783828089;
15865
15866 type Protocol = crate::File;
15867
15868 type Request = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest;
15869
15870 type Response = ::fidl_next::Never;
15871 }
15872
15873 pub struct Close;
15874
15875 impl ::fidl_next::Method for Close {
15876 const ORDINAL: u64 = 6540867515453498750;
15877
15878 type Protocol = crate::File;
15879
15880 type Request = ();
15881
15882 type Response = ::fidl_next::WireResult<
15883 ::fidl_next_fuchsia_unknown::WireCloseableCloseResponse,
15884 ::fidl_next::WireI32,
15885 >;
15886 }
15887
15888 pub struct Query;
15889
15890 impl ::fidl_next::Method for Query {
15891 const ORDINAL: u64 = 2763219980499352582;
15892
15893 type Protocol = crate::File;
15894
15895 type Request = ();
15896
15897 type Response = ::fidl_next_fuchsia_unknown::WireQueryableQueryResponse;
15898 }
15899
15900 pub struct DeprecatedClone;
15901
15902 impl ::fidl_next::Method for DeprecatedClone {
15903 const ORDINAL: u64 = 6512600400724287855;
15904
15905 type Protocol = crate::File;
15906
15907 type Request = crate::WireNodeDeprecatedCloneRequest;
15908
15909 type Response = ::fidl_next::Never;
15910 }
15911
15912 pub struct OnOpen;
15913
15914 impl ::fidl_next::Method for OnOpen {
15915 const ORDINAL: u64 = 9207534335756671346;
15916
15917 type Protocol = crate::File;
15918
15919 type Request = ::fidl_next::Never;
15920
15921 type Response = crate::WireNodeOnOpenRequest;
15922 }
15923
15924 pub struct GetAttr;
15925
15926 impl ::fidl_next::Method for GetAttr {
15927 const ORDINAL: u64 = 8689798978500614909;
15928
15929 type Protocol = crate::File;
15930
15931 type Request = ();
15932
15933 type Response = crate::WireNodeGetAttrResponse;
15934 }
15935
15936 pub struct SetAttr;
15937
15938 impl ::fidl_next::Method for SetAttr {
15939 const ORDINAL: u64 = 4721673413776871238;
15940
15941 type Protocol = crate::File;
15942
15943 type Request = crate::WireNodeSetAttrRequest;
15944
15945 type Response = crate::WireNodeSetAttrResponse;
15946 }
15947
15948 pub struct DeprecatedGetFlags;
15949
15950 impl ::fidl_next::Method for DeprecatedGetFlags {
15951 const ORDINAL: u64 = 6595803110182632097;
15952
15953 type Protocol = crate::File;
15954
15955 type Request = ();
15956
15957 type Response = crate::WireNodeDeprecatedGetFlagsResponse;
15958 }
15959
15960 pub struct DeprecatedSetFlags;
15961
15962 impl ::fidl_next::Method for DeprecatedSetFlags {
15963 const ORDINAL: u64 = 5950864159036794675;
15964
15965 type Protocol = crate::File;
15966
15967 type Request = crate::WireNodeDeprecatedSetFlagsRequest;
15968
15969 type Response = crate::WireNodeDeprecatedSetFlagsResponse;
15970 }
15971
15972 pub struct GetFlags;
15973
15974 impl ::fidl_next::Method for GetFlags {
15975 const ORDINAL: u64 = 105530239381466147;
15976
15977 type Protocol = crate::File;
15978
15979 type Request = ();
15980
15981 type Response =
15982 ::fidl_next::WireFlexibleResult<crate::WireNodeGetFlagsResponse, ::fidl_next::WireI32>;
15983 }
15984
15985 pub struct SetFlags;
15986
15987 impl ::fidl_next::Method for SetFlags {
15988 const ORDINAL: u64 = 6172186066099445416;
15989
15990 type Protocol = crate::File;
15991
15992 type Request = crate::WireNodeSetFlagsRequest;
15993
15994 type Response =
15995 ::fidl_next::WireFlexibleResult<crate::WireNodeSetFlagsResponse, ::fidl_next::WireI32>;
15996 }
15997
15998 pub struct QueryFilesystem;
15999
16000 impl ::fidl_next::Method for QueryFilesystem {
16001 const ORDINAL: u64 = 8013111122914313744;
16002
16003 type Protocol = crate::File;
16004
16005 type Request = ();
16006
16007 type Response = crate::WireNodeQueryFilesystemResponse;
16008 }
16009
16010 pub struct OnRepresentation;
16011
16012 impl ::fidl_next::Method for OnRepresentation {
16013 const ORDINAL: u64 = 6679970090861613324;
16014
16015 type Protocol = crate::File;
16016
16017 type Request = ::fidl_next::Never;
16018
16019 type Response = crate::WireRepresentation;
16020 }
16021
16022 pub struct GetConnectionInfo;
16023
16024 impl ::fidl_next::Method for GetConnectionInfo {
16025 const ORDINAL: u64 = 6362521381364198667;
16026
16027 type Protocol = crate::File;
16028
16029 type Request = ();
16030
16031 type Response = crate::WireConnectionInfo;
16032 }
16033
16034 pub struct GetAttributes;
16035
16036 impl ::fidl_next::Method for GetAttributes {
16037 const ORDINAL: u64 = 4414537700416816443;
16038
16039 type Protocol = crate::File;
16040
16041 type Request = crate::WireNodeGetAttributesRequest;
16042
16043 type Response = ::fidl_next::WireResult<crate::WireNodeAttributes2, ::fidl_next::WireI32>;
16044 }
16045
16046 pub struct UpdateAttributes;
16047
16048 impl ::fidl_next::Method for UpdateAttributes {
16049 const ORDINAL: u64 = 3677402239314018056;
16050
16051 type Protocol = crate::File;
16052
16053 type Request = crate::WireMutableNodeAttributes;
16054
16055 type Response =
16056 ::fidl_next::WireResult<crate::WireNodeUpdateAttributesResponse, ::fidl_next::WireI32>;
16057 }
16058
16059 pub struct Sync;
16060
16061 impl ::fidl_next::Method for Sync {
16062 const ORDINAL: u64 = 3196473584242777161;
16063
16064 type Protocol = crate::File;
16065
16066 type Request = ();
16067
16068 type Response = ::fidl_next::WireResult<crate::WireNodeSyncResponse, ::fidl_next::WireI32>;
16069 }
16070
16071 pub struct ListExtendedAttributes;
16072
16073 impl ::fidl_next::Method for ListExtendedAttributes {
16074 const ORDINAL: u64 = 5431626189872037072;
16075
16076 type Protocol = crate::File;
16077
16078 type Request = crate::WireNodeListExtendedAttributesRequest;
16079
16080 type Response = ::fidl_next::Never;
16081 }
16082
16083 pub struct GetExtendedAttribute;
16084
16085 impl ::fidl_next::Method for GetExtendedAttribute {
16086 const ORDINAL: u64 = 5043930208506967771;
16087
16088 type Protocol = crate::File;
16089
16090 type Request = crate::WireNodeGetExtendedAttributeRequest;
16091
16092 type Response =
16093 ::fidl_next::WireResult<crate::WireExtendedAttributeValue, ::fidl_next::WireI32>;
16094 }
16095
16096 pub struct SetExtendedAttribute;
16097
16098 impl ::fidl_next::Method for SetExtendedAttribute {
16099 const ORDINAL: u64 = 5374223046099989052;
16100
16101 type Protocol = crate::File;
16102
16103 type Request = crate::WireNodeSetExtendedAttributeRequest;
16104
16105 type Response = ::fidl_next::WireResult<
16106 crate::WireNodeSetExtendedAttributeResponse,
16107 ::fidl_next::WireI32,
16108 >;
16109 }
16110
16111 pub struct RemoveExtendedAttribute;
16112
16113 impl ::fidl_next::Method for RemoveExtendedAttribute {
16114 const ORDINAL: u64 = 8794297771444732717;
16115
16116 type Protocol = crate::File;
16117
16118 type Request = crate::WireNodeRemoveExtendedAttributeRequest;
16119
16120 type Response = ::fidl_next::WireResult<
16121 crate::WireNodeRemoveExtendedAttributeResponse,
16122 ::fidl_next::WireI32,
16123 >;
16124 }
16125
16126 pub struct Read;
16127
16128 impl ::fidl_next::Method for Read {
16129 const ORDINAL: u64 = 395825947633028830;
16130
16131 type Protocol = crate::File;
16132
16133 type Request = crate::WireReadableReadRequest;
16134
16135 type Response =
16136 ::fidl_next::WireResult<crate::WireReadableReadResponse, ::fidl_next::WireI32>;
16137 }
16138
16139 pub struct Write;
16140
16141 impl ::fidl_next::Method for Write {
16142 const ORDINAL: u64 = 7651971425397809026;
16143
16144 type Protocol = crate::File;
16145
16146 type Request = crate::WireWritableWriteRequest;
16147
16148 type Response =
16149 ::fidl_next::WireResult<crate::WireWritableWriteResponse, ::fidl_next::WireI32>;
16150 }
16151
16152 pub struct Describe;
16153
16154 impl ::fidl_next::Method for Describe {
16155 const ORDINAL: u64 = 7545125870053689020;
16156
16157 type Protocol = crate::File;
16158
16159 type Request = ();
16160
16161 type Response = crate::WireFileInfo;
16162 }
16163
16164 pub struct Seek;
16165
16166 impl ::fidl_next::Method for Seek {
16167 const ORDINAL: u64 = 8649041485622956551;
16168
16169 type Protocol = crate::File;
16170
16171 type Request = crate::WireFileSeekRequest;
16172
16173 type Response = ::fidl_next::WireResult<crate::WireFileSeekResponse, ::fidl_next::WireI32>;
16174 }
16175
16176 pub struct ReadAt;
16177
16178 impl ::fidl_next::Method for ReadAt {
16179 const ORDINAL: u64 = 1587416148701180478;
16180
16181 type Protocol = crate::File;
16182
16183 type Request = crate::WireFileReadAtRequest;
16184
16185 type Response =
16186 ::fidl_next::WireResult<crate::WireFileReadAtResponse, ::fidl_next::WireI32>;
16187 }
16188
16189 pub struct WriteAt;
16190
16191 impl ::fidl_next::Method for WriteAt {
16192 const ORDINAL: u64 = 8736683935131400491;
16193
16194 type Protocol = crate::File;
16195
16196 type Request = crate::WireFileWriteAtRequest;
16197
16198 type Response =
16199 ::fidl_next::WireResult<crate::WireFileWriteAtResponse, ::fidl_next::WireI32>;
16200 }
16201
16202 pub struct Resize;
16203
16204 impl ::fidl_next::Method for Resize {
16205 const ORDINAL: u64 = 3134648685270758458;
16206
16207 type Protocol = crate::File;
16208
16209 type Request = crate::WireFileResizeRequest;
16210
16211 type Response =
16212 ::fidl_next::WireResult<crate::WireFileResizeResponse, ::fidl_next::WireI32>;
16213 }
16214
16215 pub struct GetBackingMemory;
16216
16217 impl ::fidl_next::Method for GetBackingMemory {
16218 const ORDINAL: u64 = 46911652864194091;
16219
16220 type Protocol = crate::File;
16221
16222 type Request = crate::WireFileGetBackingMemoryRequest;
16223
16224 type Response =
16225 ::fidl_next::WireResult<crate::WireFileGetBackingMemoryResponse, ::fidl_next::WireI32>;
16226 }
16227
16228 pub struct Allocate;
16229
16230 impl ::fidl_next::Method for Allocate {
16231 const ORDINAL: u64 = 8645235848064269614;
16232
16233 type Protocol = crate::File;
16234
16235 type Request = crate::WireFileAllocateRequest;
16236
16237 type Response =
16238 ::fidl_next::WireFlexibleResult<crate::WireFileAllocateResponse, ::fidl_next::WireI32>;
16239 }
16240
16241 pub struct EnableVerity;
16242
16243 impl ::fidl_next::Method for EnableVerity {
16244 const ORDINAL: u64 = 3189145313204943035;
16245
16246 type Protocol = crate::File;
16247
16248 type Request = crate::WireFileEnableVerityRequest;
16249
16250 type Response = ::fidl_next::WireFlexibleResult<
16251 crate::WireFileEnableVerityResponse,
16252 ::fidl_next::WireI32,
16253 >;
16254 }
16255}
16256
16257pub trait FileClientSender {
16259 type Transport: ::fidl_next::Transport;
16260
16261 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
16262 fn advisory_lock<___R>(
16263 &self,
16264 request: &mut ___R,
16265 ) -> Result<
16266 ::fidl_next::ResponseFuture<'_, Self::Transport, file::AdvisoryLock>,
16267 ::fidl_next::EncodeError,
16268 >
16269 where
16270 ___R: ::fidl_next::Encode<
16271 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16272 Encoded = crate::WireAdvisoryLockingAdvisoryLockRequest,
16273 >;
16274
16275 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
16276 fn link_into<___R>(
16277 &self,
16278 request: &mut ___R,
16279 ) -> Result<
16280 ::fidl_next::ResponseFuture<'_, Self::Transport, file::LinkInto>,
16281 ::fidl_next::EncodeError,
16282 >
16283 where
16284 ___R: ::fidl_next::Encode<
16285 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16286 Encoded = crate::WireLinkableLinkIntoRequest,
16287 >;
16288
16289 fn clone<___R>(
16290 &self,
16291 request: &mut ___R,
16292 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
16293 where
16294 ___R: ::fidl_next::Encode<
16295 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16296 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
16297 >;
16298
16299 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
16300 fn close(
16301 &self,
16302 ) -> Result<
16303 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Close>,
16304 ::fidl_next::EncodeError,
16305 >;
16306
16307 fn query(
16308 &self,
16309 ) -> Result<
16310 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Query>,
16311 ::fidl_next::EncodeError,
16312 >;
16313
16314 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
16315 fn deprecated_clone<___R>(
16316 &self,
16317 request: &mut ___R,
16318 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
16319 where
16320 ___R: ::fidl_next::Encode<
16321 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16322 Encoded = crate::WireNodeDeprecatedCloneRequest,
16323 >;
16324
16325 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
16326 fn get_attr(
16327 &self,
16328 ) -> Result<
16329 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetAttr>,
16330 ::fidl_next::EncodeError,
16331 >;
16332
16333 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
16334 fn set_attr<___R>(
16335 &self,
16336 request: &mut ___R,
16337 ) -> Result<
16338 ::fidl_next::ResponseFuture<'_, Self::Transport, file::SetAttr>,
16339 ::fidl_next::EncodeError,
16340 >
16341 where
16342 ___R: ::fidl_next::Encode<
16343 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16344 Encoded = crate::WireNodeSetAttrRequest,
16345 >;
16346
16347 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
16348 fn deprecated_get_flags(
16349 &self,
16350 ) -> Result<
16351 ::fidl_next::ResponseFuture<'_, Self::Transport, file::DeprecatedGetFlags>,
16352 ::fidl_next::EncodeError,
16353 >;
16354
16355 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
16356 fn deprecated_set_flags<___R>(
16357 &self,
16358 request: &mut ___R,
16359 ) -> Result<
16360 ::fidl_next::ResponseFuture<'_, Self::Transport, file::DeprecatedSetFlags>,
16361 ::fidl_next::EncodeError,
16362 >
16363 where
16364 ___R: ::fidl_next::Encode<
16365 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16366 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
16367 >;
16368
16369 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
16370 fn get_flags(
16371 &self,
16372 ) -> Result<
16373 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetFlags>,
16374 ::fidl_next::EncodeError,
16375 >;
16376
16377 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
16378 fn set_flags<___R>(
16379 &self,
16380 request: &mut ___R,
16381 ) -> Result<
16382 ::fidl_next::ResponseFuture<'_, Self::Transport, file::SetFlags>,
16383 ::fidl_next::EncodeError,
16384 >
16385 where
16386 ___R: ::fidl_next::Encode<
16387 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16388 Encoded = crate::WireNodeSetFlagsRequest,
16389 >;
16390
16391 #[doc = " Query the filesystem for filesystem-specific information.\n"]
16392 fn query_filesystem(
16393 &self,
16394 ) -> Result<
16395 ::fidl_next::ResponseFuture<'_, Self::Transport, file::QueryFilesystem>,
16396 ::fidl_next::EncodeError,
16397 >;
16398
16399 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
16400 fn get_connection_info(
16401 &self,
16402 ) -> Result<
16403 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetConnectionInfo>,
16404 ::fidl_next::EncodeError,
16405 >;
16406
16407 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
16408 fn get_attributes<___R>(
16409 &self,
16410 request: &mut ___R,
16411 ) -> Result<
16412 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetAttributes>,
16413 ::fidl_next::EncodeError,
16414 >
16415 where
16416 ___R: ::fidl_next::Encode<
16417 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16418 Encoded = crate::WireNodeGetAttributesRequest,
16419 >;
16420
16421 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
16422 fn update_attributes<___R>(
16423 &self,
16424 request: &mut ___R,
16425 ) -> Result<
16426 ::fidl_next::ResponseFuture<'_, Self::Transport, file::UpdateAttributes>,
16427 ::fidl_next::EncodeError,
16428 >
16429 where
16430 ___R: ::fidl_next::Encode<
16431 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16432 Encoded = crate::WireMutableNodeAttributes,
16433 >;
16434
16435 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
16436 fn sync(
16437 &self,
16438 ) -> Result<
16439 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Sync>,
16440 ::fidl_next::EncodeError,
16441 >;
16442
16443 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
16444 fn list_extended_attributes<___R>(
16445 &self,
16446 request: &mut ___R,
16447 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
16448 where
16449 ___R: ::fidl_next::Encode<
16450 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16451 Encoded = crate::WireNodeListExtendedAttributesRequest,
16452 >;
16453
16454 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
16455 fn get_extended_attribute<___R>(
16456 &self,
16457 request: &mut ___R,
16458 ) -> Result<
16459 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetExtendedAttribute>,
16460 ::fidl_next::EncodeError,
16461 >
16462 where
16463 ___R: ::fidl_next::Encode<
16464 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16465 Encoded = crate::WireNodeGetExtendedAttributeRequest,
16466 >;
16467
16468 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
16469 fn set_extended_attribute<___R>(
16470 &self,
16471 request: &mut ___R,
16472 ) -> Result<
16473 ::fidl_next::ResponseFuture<'_, Self::Transport, file::SetExtendedAttribute>,
16474 ::fidl_next::EncodeError,
16475 >
16476 where
16477 ___R: ::fidl_next::Encode<
16478 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16479 Encoded = crate::WireNodeSetExtendedAttributeRequest,
16480 >;
16481
16482 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
16483 fn remove_extended_attribute<___R>(
16484 &self,
16485 request: &mut ___R,
16486 ) -> Result<
16487 ::fidl_next::ResponseFuture<'_, Self::Transport, file::RemoveExtendedAttribute>,
16488 ::fidl_next::EncodeError,
16489 >
16490 where
16491 ___R: ::fidl_next::Encode<
16492 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16493 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
16494 >;
16495
16496 #[doc = " Reads up to \'count\' bytes at the seek offset.\n The seek offset is moved forward by the number of bytes read.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that the seek offset\n has reached the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that the\n seek offset is already at or beyond the end of file, and no data could\n be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually read anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
16497 fn read<___R>(
16498 &self,
16499 request: &mut ___R,
16500 ) -> Result<
16501 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Read>,
16502 ::fidl_next::EncodeError,
16503 >
16504 where
16505 ___R: ::fidl_next::Encode<
16506 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16507 Encoded = crate::WireReadableReadRequest,
16508 >;
16509
16510 #[doc = " Writes data at the seek offset.\n The seek offset is moved forward by the number of bytes written.\n If the file is in append mode, the seek offset is first set to the end\n of the file, followed by the write, in one atomic step.\n\n The file size may grow if the seek offset plus `data.length` is beyond\n the current end of file.\n\n + request `data` the byte buffer to write to the file.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file and return a\n successful write of zero bytes. The seek offset is still updated if\n in append mode.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
16511 fn write<___R>(
16512 &self,
16513 request: &mut ___R,
16514 ) -> Result<
16515 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Write>,
16516 ::fidl_next::EncodeError,
16517 >
16518 where
16519 ___R: ::fidl_next::Encode<
16520 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16521 Encoded = crate::WireWritableWriteRequest,
16522 >;
16523
16524 fn describe(
16525 &self,
16526 ) -> Result<
16527 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Describe>,
16528 ::fidl_next::EncodeError,
16529 >;
16530
16531 #[doc = " Moves the offset at which the next invocation of [`Read`] or [`Write`]\n will occur. The seek offset is specific to each file connection.\n\n + request `origin` the reference point where `offset` will be based on.\n + request `offset` the number of bytes to seek.\n - response `offset_from_start` the adjusted seek offset, from the start\n of the file.\n\n This method does not require any rights.\n"]
16532 fn seek<___R>(
16533 &self,
16534 request: &mut ___R,
16535 ) -> Result<
16536 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Seek>,
16537 ::fidl_next::EncodeError,
16538 >
16539 where
16540 ___R: ::fidl_next::Encode<
16541 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16542 Encoded = crate::WireFileSeekRequest,
16543 >;
16544
16545 #[doc = " Reads up to \'count\' bytes at the provided offset.\n Does not affect the seek offset.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that `ReadAt` has hit\n the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that `offset`\n is at or past the end of file, and no data can be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually reading anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
16546 fn read_at<___R>(
16547 &self,
16548 request: &mut ___R,
16549 ) -> Result<
16550 ::fidl_next::ResponseFuture<'_, Self::Transport, file::ReadAt>,
16551 ::fidl_next::EncodeError,
16552 >
16553 where
16554 ___R: ::fidl_next::Encode<
16555 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16556 Encoded = crate::WireFileReadAtRequest,
16557 >;
16558
16559 #[doc = " Writes data at the provided offset.\n Does not affect the seek offset.\n\n The file size may grow if `offset` plus `data.length` is past the\n current end of file.\n\n + request `data` the byte buffer to write to the file.\n + request `offset` the offset from start of the file to begin writing.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file, and will return a\n successful write of zero bytes.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
16560 fn write_at<___R>(
16561 &self,
16562 request: &mut ___R,
16563 ) -> Result<
16564 ::fidl_next::ResponseFuture<'_, Self::Transport, file::WriteAt>,
16565 ::fidl_next::EncodeError,
16566 >
16567 where
16568 ___R: ::fidl_next::Encode<
16569 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16570 Encoded = crate::WireFileWriteAtRequest,
16571 >;
16572
16573 #[doc = " Shrinks or grows the file size to \'length\' bytes.\n\n If file size is reduced by this operation, the extra trailing data\'\n is discarded.\n If file size is increased by this operation, the extended area appears\n as if it was zeroed.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
16574 fn resize<___R>(
16575 &self,
16576 request: &mut ___R,
16577 ) -> Result<
16578 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Resize>,
16579 ::fidl_next::EncodeError,
16580 >
16581 where
16582 ___R: ::fidl_next::Encode<
16583 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16584 Encoded = crate::WireFileResizeRequest,
16585 >;
16586
16587 #[doc = " Acquires a [`zx.Handle:VMO`] representing this file, if there is one,\n with the requested access rights.\n\n Implementations are not required to implement files backed by VMOs so\n this request may fail. Additionally, implementations may only support\n a certain subset of the flags. Clients should be prepared with fallback\n behavior if this request fails.\n\n If a client specifies neither `PRIVATE_CLONE` nor `SHARED_BUFFER`, the\n implementation is free to choose the semantics of the returned VMO.\n\n + request `flags` a [`VmoFlags`] indicating the desired mode of access.\n - response `vmo` the requested [`zx.Handle:VMO`].\n * error a [`zx.Status`] value indicating the failure.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `flags` includes [`VmoFlags.READ`].\n * [`Rights.WRITE_BYTES`] if `flags` includes [`VmoFlags.WRITE`].\n * [`Rights.EXECUTE`] if `flags` includes [`VmoFlags.EXECUTE`].\n"]
16588 fn get_backing_memory<___R>(
16589 &self,
16590 request: &mut ___R,
16591 ) -> Result<
16592 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetBackingMemory>,
16593 ::fidl_next::EncodeError,
16594 >
16595 where
16596 ___R: ::fidl_next::Encode<
16597 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16598 Encoded = crate::WireFileGetBackingMemoryRequest,
16599 >;
16600
16601 #[doc = " Pre-allocate on-disk space for this file.\n"]
16602 fn allocate<___R>(
16603 &self,
16604 request: &mut ___R,
16605 ) -> Result<
16606 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Allocate>,
16607 ::fidl_next::EncodeError,
16608 >
16609 where
16610 ___R: ::fidl_next::Encode<
16611 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16612 Encoded = crate::WireFileAllocateRequest,
16613 >;
16614
16615 #[doc = " Enables verification for the file (permanently) which involves computing a merkle tree for\n the file. Forces a flush prior to building the merkle tree to ensure cached data is\n captured. Future reads will be verified against the computed merkle tree and writes will be\n rejected. This method can take some time to complete as it depends on the size of the file.\n This method can be aborted by closing the connection that this method was issued on.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n Returns `ZX_ERR_NOT_SUPPORTED` if the filesystem does not support verity.\n Returns `ZX_ERR_ALREADY_EXISTS` if the file was already fsverity-enabled.\n Also returns any error that might arise from reading the file, or from flushing the file,\n such as `ZX_ERR_IO`.\n"]
16616 fn enable_verity<___R>(
16617 &self,
16618 request: &mut ___R,
16619 ) -> Result<
16620 ::fidl_next::ResponseFuture<'_, Self::Transport, file::EnableVerity>,
16621 ::fidl_next::EncodeError,
16622 >
16623 where
16624 ___R: ::fidl_next::Encode<
16625 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16626 Encoded = crate::WireFileEnableVerityRequest,
16627 >;
16628}
16629
16630impl<___T> FileClientSender for ::fidl_next::ClientSender<___T, File>
16631where
16632 ___T: ::fidl_next::Transport,
16633{
16634 type Transport = ___T;
16635
16636 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
16637 fn advisory_lock<___R>(
16638 &self,
16639 request: &mut ___R,
16640 ) -> Result<
16641 ::fidl_next::ResponseFuture<'_, Self::Transport, file::AdvisoryLock>,
16642 ::fidl_next::EncodeError,
16643 >
16644 where
16645 ___R: ::fidl_next::Encode<
16646 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16647 Encoded = crate::WireAdvisoryLockingAdvisoryLockRequest,
16648 >,
16649 {
16650 self.as_untyped()
16651 .send_two_way(7992130864415541162, request)
16652 .map(::fidl_next::ResponseFuture::from_untyped)
16653 }
16654
16655 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
16656 fn link_into<___R>(
16657 &self,
16658 request: &mut ___R,
16659 ) -> Result<
16660 ::fidl_next::ResponseFuture<'_, Self::Transport, file::LinkInto>,
16661 ::fidl_next::EncodeError,
16662 >
16663 where
16664 ___R: ::fidl_next::Encode<
16665 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16666 Encoded = crate::WireLinkableLinkIntoRequest,
16667 >,
16668 {
16669 self.as_untyped()
16670 .send_two_way(6121399674497678964, request)
16671 .map(::fidl_next::ResponseFuture::from_untyped)
16672 }
16673
16674 fn clone<___R>(
16675 &self,
16676 request: &mut ___R,
16677 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
16678 where
16679 ___R: ::fidl_next::Encode<
16680 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16681 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
16682 >,
16683 {
16684 self.as_untyped().send_one_way(2366825959783828089, request)
16685 }
16686
16687 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
16688 fn close(
16689 &self,
16690 ) -> Result<
16691 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Close>,
16692 ::fidl_next::EncodeError,
16693 > {
16694 self.as_untyped()
16695 .send_two_way(6540867515453498750, &mut ())
16696 .map(::fidl_next::ResponseFuture::from_untyped)
16697 }
16698
16699 fn query(
16700 &self,
16701 ) -> Result<
16702 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Query>,
16703 ::fidl_next::EncodeError,
16704 > {
16705 self.as_untyped()
16706 .send_two_way(2763219980499352582, &mut ())
16707 .map(::fidl_next::ResponseFuture::from_untyped)
16708 }
16709
16710 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
16711 fn deprecated_clone<___R>(
16712 &self,
16713 request: &mut ___R,
16714 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
16715 where
16716 ___R: ::fidl_next::Encode<
16717 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16718 Encoded = crate::WireNodeDeprecatedCloneRequest,
16719 >,
16720 {
16721 self.as_untyped().send_one_way(6512600400724287855, request)
16722 }
16723
16724 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
16725 fn get_attr(
16726 &self,
16727 ) -> Result<
16728 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetAttr>,
16729 ::fidl_next::EncodeError,
16730 > {
16731 self.as_untyped()
16732 .send_two_way(8689798978500614909, &mut ())
16733 .map(::fidl_next::ResponseFuture::from_untyped)
16734 }
16735
16736 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
16737 fn set_attr<___R>(
16738 &self,
16739 request: &mut ___R,
16740 ) -> Result<
16741 ::fidl_next::ResponseFuture<'_, Self::Transport, file::SetAttr>,
16742 ::fidl_next::EncodeError,
16743 >
16744 where
16745 ___R: ::fidl_next::Encode<
16746 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16747 Encoded = crate::WireNodeSetAttrRequest,
16748 >,
16749 {
16750 self.as_untyped()
16751 .send_two_way(4721673413776871238, request)
16752 .map(::fidl_next::ResponseFuture::from_untyped)
16753 }
16754
16755 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
16756 fn deprecated_get_flags(
16757 &self,
16758 ) -> Result<
16759 ::fidl_next::ResponseFuture<'_, Self::Transport, file::DeprecatedGetFlags>,
16760 ::fidl_next::EncodeError,
16761 > {
16762 self.as_untyped()
16763 .send_two_way(6595803110182632097, &mut ())
16764 .map(::fidl_next::ResponseFuture::from_untyped)
16765 }
16766
16767 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
16768 fn deprecated_set_flags<___R>(
16769 &self,
16770 request: &mut ___R,
16771 ) -> Result<
16772 ::fidl_next::ResponseFuture<'_, Self::Transport, file::DeprecatedSetFlags>,
16773 ::fidl_next::EncodeError,
16774 >
16775 where
16776 ___R: ::fidl_next::Encode<
16777 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16778 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
16779 >,
16780 {
16781 self.as_untyped()
16782 .send_two_way(5950864159036794675, request)
16783 .map(::fidl_next::ResponseFuture::from_untyped)
16784 }
16785
16786 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
16787 fn get_flags(
16788 &self,
16789 ) -> Result<
16790 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetFlags>,
16791 ::fidl_next::EncodeError,
16792 > {
16793 self.as_untyped()
16794 .send_two_way(105530239381466147, &mut ())
16795 .map(::fidl_next::ResponseFuture::from_untyped)
16796 }
16797
16798 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
16799 fn set_flags<___R>(
16800 &self,
16801 request: &mut ___R,
16802 ) -> Result<
16803 ::fidl_next::ResponseFuture<'_, Self::Transport, file::SetFlags>,
16804 ::fidl_next::EncodeError,
16805 >
16806 where
16807 ___R: ::fidl_next::Encode<
16808 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16809 Encoded = crate::WireNodeSetFlagsRequest,
16810 >,
16811 {
16812 self.as_untyped()
16813 .send_two_way(6172186066099445416, request)
16814 .map(::fidl_next::ResponseFuture::from_untyped)
16815 }
16816
16817 #[doc = " Query the filesystem for filesystem-specific information.\n"]
16818 fn query_filesystem(
16819 &self,
16820 ) -> Result<
16821 ::fidl_next::ResponseFuture<'_, Self::Transport, file::QueryFilesystem>,
16822 ::fidl_next::EncodeError,
16823 > {
16824 self.as_untyped()
16825 .send_two_way(8013111122914313744, &mut ())
16826 .map(::fidl_next::ResponseFuture::from_untyped)
16827 }
16828
16829 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
16830 fn get_connection_info(
16831 &self,
16832 ) -> Result<
16833 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetConnectionInfo>,
16834 ::fidl_next::EncodeError,
16835 > {
16836 self.as_untyped()
16837 .send_two_way(6362521381364198667, &mut ())
16838 .map(::fidl_next::ResponseFuture::from_untyped)
16839 }
16840
16841 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
16842 fn get_attributes<___R>(
16843 &self,
16844 request: &mut ___R,
16845 ) -> Result<
16846 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetAttributes>,
16847 ::fidl_next::EncodeError,
16848 >
16849 where
16850 ___R: ::fidl_next::Encode<
16851 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16852 Encoded = crate::WireNodeGetAttributesRequest,
16853 >,
16854 {
16855 self.as_untyped()
16856 .send_two_way(4414537700416816443, request)
16857 .map(::fidl_next::ResponseFuture::from_untyped)
16858 }
16859
16860 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
16861 fn update_attributes<___R>(
16862 &self,
16863 request: &mut ___R,
16864 ) -> Result<
16865 ::fidl_next::ResponseFuture<'_, Self::Transport, file::UpdateAttributes>,
16866 ::fidl_next::EncodeError,
16867 >
16868 where
16869 ___R: ::fidl_next::Encode<
16870 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16871 Encoded = crate::WireMutableNodeAttributes,
16872 >,
16873 {
16874 self.as_untyped()
16875 .send_two_way(3677402239314018056, request)
16876 .map(::fidl_next::ResponseFuture::from_untyped)
16877 }
16878
16879 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
16880 fn sync(
16881 &self,
16882 ) -> Result<
16883 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Sync>,
16884 ::fidl_next::EncodeError,
16885 > {
16886 self.as_untyped()
16887 .send_two_way(3196473584242777161, &mut ())
16888 .map(::fidl_next::ResponseFuture::from_untyped)
16889 }
16890
16891 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
16892 fn list_extended_attributes<___R>(
16893 &self,
16894 request: &mut ___R,
16895 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
16896 where
16897 ___R: ::fidl_next::Encode<
16898 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16899 Encoded = crate::WireNodeListExtendedAttributesRequest,
16900 >,
16901 {
16902 self.as_untyped().send_one_way(5431626189872037072, request)
16903 }
16904
16905 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
16906 fn get_extended_attribute<___R>(
16907 &self,
16908 request: &mut ___R,
16909 ) -> Result<
16910 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetExtendedAttribute>,
16911 ::fidl_next::EncodeError,
16912 >
16913 where
16914 ___R: ::fidl_next::Encode<
16915 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16916 Encoded = crate::WireNodeGetExtendedAttributeRequest,
16917 >,
16918 {
16919 self.as_untyped()
16920 .send_two_way(5043930208506967771, request)
16921 .map(::fidl_next::ResponseFuture::from_untyped)
16922 }
16923
16924 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
16925 fn set_extended_attribute<___R>(
16926 &self,
16927 request: &mut ___R,
16928 ) -> Result<
16929 ::fidl_next::ResponseFuture<'_, Self::Transport, file::SetExtendedAttribute>,
16930 ::fidl_next::EncodeError,
16931 >
16932 where
16933 ___R: ::fidl_next::Encode<
16934 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16935 Encoded = crate::WireNodeSetExtendedAttributeRequest,
16936 >,
16937 {
16938 self.as_untyped()
16939 .send_two_way(5374223046099989052, request)
16940 .map(::fidl_next::ResponseFuture::from_untyped)
16941 }
16942
16943 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
16944 fn remove_extended_attribute<___R>(
16945 &self,
16946 request: &mut ___R,
16947 ) -> Result<
16948 ::fidl_next::ResponseFuture<'_, Self::Transport, file::RemoveExtendedAttribute>,
16949 ::fidl_next::EncodeError,
16950 >
16951 where
16952 ___R: ::fidl_next::Encode<
16953 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16954 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
16955 >,
16956 {
16957 self.as_untyped()
16958 .send_two_way(8794297771444732717, request)
16959 .map(::fidl_next::ResponseFuture::from_untyped)
16960 }
16961
16962 #[doc = " Reads up to \'count\' bytes at the seek offset.\n The seek offset is moved forward by the number of bytes read.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that the seek offset\n has reached the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that the\n seek offset is already at or beyond the end of file, and no data could\n be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually read anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
16963 fn read<___R>(
16964 &self,
16965 request: &mut ___R,
16966 ) -> Result<
16967 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Read>,
16968 ::fidl_next::EncodeError,
16969 >
16970 where
16971 ___R: ::fidl_next::Encode<
16972 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16973 Encoded = crate::WireReadableReadRequest,
16974 >,
16975 {
16976 self.as_untyped()
16977 .send_two_way(395825947633028830, request)
16978 .map(::fidl_next::ResponseFuture::from_untyped)
16979 }
16980
16981 #[doc = " Writes data at the seek offset.\n The seek offset is moved forward by the number of bytes written.\n If the file is in append mode, the seek offset is first set to the end\n of the file, followed by the write, in one atomic step.\n\n The file size may grow if the seek offset plus `data.length` is beyond\n the current end of file.\n\n + request `data` the byte buffer to write to the file.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file and return a\n successful write of zero bytes. The seek offset is still updated if\n in append mode.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
16982 fn write<___R>(
16983 &self,
16984 request: &mut ___R,
16985 ) -> Result<
16986 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Write>,
16987 ::fidl_next::EncodeError,
16988 >
16989 where
16990 ___R: ::fidl_next::Encode<
16991 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
16992 Encoded = crate::WireWritableWriteRequest,
16993 >,
16994 {
16995 self.as_untyped()
16996 .send_two_way(7651971425397809026, request)
16997 .map(::fidl_next::ResponseFuture::from_untyped)
16998 }
16999
17000 fn describe(
17001 &self,
17002 ) -> Result<
17003 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Describe>,
17004 ::fidl_next::EncodeError,
17005 > {
17006 self.as_untyped()
17007 .send_two_way(7545125870053689020, &mut ())
17008 .map(::fidl_next::ResponseFuture::from_untyped)
17009 }
17010
17011 #[doc = " Moves the offset at which the next invocation of [`Read`] or [`Write`]\n will occur. The seek offset is specific to each file connection.\n\n + request `origin` the reference point where `offset` will be based on.\n + request `offset` the number of bytes to seek.\n - response `offset_from_start` the adjusted seek offset, from the start\n of the file.\n\n This method does not require any rights.\n"]
17012 fn seek<___R>(
17013 &self,
17014 request: &mut ___R,
17015 ) -> Result<
17016 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Seek>,
17017 ::fidl_next::EncodeError,
17018 >
17019 where
17020 ___R: ::fidl_next::Encode<
17021 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17022 Encoded = crate::WireFileSeekRequest,
17023 >,
17024 {
17025 self.as_untyped()
17026 .send_two_way(8649041485622956551, request)
17027 .map(::fidl_next::ResponseFuture::from_untyped)
17028 }
17029
17030 #[doc = " Reads up to \'count\' bytes at the provided offset.\n Does not affect the seek offset.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that `ReadAt` has hit\n the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that `offset`\n is at or past the end of file, and no data can be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually reading anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
17031 fn read_at<___R>(
17032 &self,
17033 request: &mut ___R,
17034 ) -> Result<
17035 ::fidl_next::ResponseFuture<'_, Self::Transport, file::ReadAt>,
17036 ::fidl_next::EncodeError,
17037 >
17038 where
17039 ___R: ::fidl_next::Encode<
17040 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17041 Encoded = crate::WireFileReadAtRequest,
17042 >,
17043 {
17044 self.as_untyped()
17045 .send_two_way(1587416148701180478, request)
17046 .map(::fidl_next::ResponseFuture::from_untyped)
17047 }
17048
17049 #[doc = " Writes data at the provided offset.\n Does not affect the seek offset.\n\n The file size may grow if `offset` plus `data.length` is past the\n current end of file.\n\n + request `data` the byte buffer to write to the file.\n + request `offset` the offset from start of the file to begin writing.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file, and will return a\n successful write of zero bytes.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
17050 fn write_at<___R>(
17051 &self,
17052 request: &mut ___R,
17053 ) -> Result<
17054 ::fidl_next::ResponseFuture<'_, Self::Transport, file::WriteAt>,
17055 ::fidl_next::EncodeError,
17056 >
17057 where
17058 ___R: ::fidl_next::Encode<
17059 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17060 Encoded = crate::WireFileWriteAtRequest,
17061 >,
17062 {
17063 self.as_untyped()
17064 .send_two_way(8736683935131400491, request)
17065 .map(::fidl_next::ResponseFuture::from_untyped)
17066 }
17067
17068 #[doc = " Shrinks or grows the file size to \'length\' bytes.\n\n If file size is reduced by this operation, the extra trailing data\'\n is discarded.\n If file size is increased by this operation, the extended area appears\n as if it was zeroed.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
17069 fn resize<___R>(
17070 &self,
17071 request: &mut ___R,
17072 ) -> Result<
17073 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Resize>,
17074 ::fidl_next::EncodeError,
17075 >
17076 where
17077 ___R: ::fidl_next::Encode<
17078 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17079 Encoded = crate::WireFileResizeRequest,
17080 >,
17081 {
17082 self.as_untyped()
17083 .send_two_way(3134648685270758458, request)
17084 .map(::fidl_next::ResponseFuture::from_untyped)
17085 }
17086
17087 #[doc = " Acquires a [`zx.Handle:VMO`] representing this file, if there is one,\n with the requested access rights.\n\n Implementations are not required to implement files backed by VMOs so\n this request may fail. Additionally, implementations may only support\n a certain subset of the flags. Clients should be prepared with fallback\n behavior if this request fails.\n\n If a client specifies neither `PRIVATE_CLONE` nor `SHARED_BUFFER`, the\n implementation is free to choose the semantics of the returned VMO.\n\n + request `flags` a [`VmoFlags`] indicating the desired mode of access.\n - response `vmo` the requested [`zx.Handle:VMO`].\n * error a [`zx.Status`] value indicating the failure.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `flags` includes [`VmoFlags.READ`].\n * [`Rights.WRITE_BYTES`] if `flags` includes [`VmoFlags.WRITE`].\n * [`Rights.EXECUTE`] if `flags` includes [`VmoFlags.EXECUTE`].\n"]
17088 fn get_backing_memory<___R>(
17089 &self,
17090 request: &mut ___R,
17091 ) -> Result<
17092 ::fidl_next::ResponseFuture<'_, Self::Transport, file::GetBackingMemory>,
17093 ::fidl_next::EncodeError,
17094 >
17095 where
17096 ___R: ::fidl_next::Encode<
17097 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17098 Encoded = crate::WireFileGetBackingMemoryRequest,
17099 >,
17100 {
17101 self.as_untyped()
17102 .send_two_way(46911652864194091, request)
17103 .map(::fidl_next::ResponseFuture::from_untyped)
17104 }
17105
17106 #[doc = " Pre-allocate on-disk space for this file.\n"]
17107 fn allocate<___R>(
17108 &self,
17109 request: &mut ___R,
17110 ) -> Result<
17111 ::fidl_next::ResponseFuture<'_, Self::Transport, file::Allocate>,
17112 ::fidl_next::EncodeError,
17113 >
17114 where
17115 ___R: ::fidl_next::Encode<
17116 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17117 Encoded = crate::WireFileAllocateRequest,
17118 >,
17119 {
17120 self.as_untyped()
17121 .send_two_way(8645235848064269614, request)
17122 .map(::fidl_next::ResponseFuture::from_untyped)
17123 }
17124
17125 #[doc = " Enables verification for the file (permanently) which involves computing a merkle tree for\n the file. Forces a flush prior to building the merkle tree to ensure cached data is\n captured. Future reads will be verified against the computed merkle tree and writes will be\n rejected. This method can take some time to complete as it depends on the size of the file.\n This method can be aborted by closing the connection that this method was issued on.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n Returns `ZX_ERR_NOT_SUPPORTED` if the filesystem does not support verity.\n Returns `ZX_ERR_ALREADY_EXISTS` if the file was already fsverity-enabled.\n Also returns any error that might arise from reading the file, or from flushing the file,\n such as `ZX_ERR_IO`.\n"]
17126 fn enable_verity<___R>(
17127 &self,
17128 request: &mut ___R,
17129 ) -> Result<
17130 ::fidl_next::ResponseFuture<'_, Self::Transport, file::EnableVerity>,
17131 ::fidl_next::EncodeError,
17132 >
17133 where
17134 ___R: ::fidl_next::Encode<
17135 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17136 Encoded = crate::WireFileEnableVerityRequest,
17137 >,
17138 {
17139 self.as_untyped()
17140 .send_two_way(3189145313204943035, request)
17141 .map(::fidl_next::ResponseFuture::from_untyped)
17142 }
17143}
17144
17145pub trait FileClientHandler<___T: ::fidl_next::Transport> {
17149 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
17150 fn on_open(
17151 &mut self,
17152 sender: &::fidl_next::ClientSender<___T, File>,
17153
17154 message: ::fidl_next::ResponseBuffer<___T, file::OnOpen>,
17155 );
17156
17157 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
17158 fn on_representation(
17159 &mut self,
17160 sender: &::fidl_next::ClientSender<___T, File>,
17161
17162 message: ::fidl_next::ResponseBuffer<___T, file::OnRepresentation>,
17163 );
17164
17165 fn on_unknown_interaction(
17166 &mut self,
17167 sender: &::fidl_next::ClientSender<___T, File>,
17168 ordinal: u64,
17169 ) {
17170 sender.close();
17171 }
17172}
17173
17174impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for File
17175where
17176 ___T: ::fidl_next::Transport,
17177 ___H: FileClientHandler<___T>,
17178
17179 <file::AdvisoryLock as ::fidl_next::Method>::Response:
17180 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17181
17182 <file::LinkInto as ::fidl_next::Method>::Response:
17183 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17184
17185 <file::Close as ::fidl_next::Method>::Response:
17186 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17187
17188 <file::Query as ::fidl_next::Method>::Response:
17189 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17190
17191 <file::OnOpen as ::fidl_next::Method>::Response:
17192 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17193
17194 <file::GetAttr as ::fidl_next::Method>::Response:
17195 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17196
17197 <file::SetAttr as ::fidl_next::Method>::Response:
17198 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17199
17200 <file::DeprecatedGetFlags as ::fidl_next::Method>::Response:
17201 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17202
17203 <file::DeprecatedSetFlags as ::fidl_next::Method>::Response:
17204 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17205
17206 <file::GetFlags as ::fidl_next::Method>::Response:
17207 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17208
17209 <file::SetFlags as ::fidl_next::Method>::Response:
17210 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17211
17212 <file::QueryFilesystem as ::fidl_next::Method>::Response:
17213 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17214
17215 <file::OnRepresentation as ::fidl_next::Method>::Response:
17216 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17217
17218 <file::GetConnectionInfo as ::fidl_next::Method>::Response:
17219 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17220
17221 <file::GetAttributes as ::fidl_next::Method>::Response:
17222 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17223
17224 <file::UpdateAttributes as ::fidl_next::Method>::Response:
17225 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17226
17227 <file::Sync as ::fidl_next::Method>::Response:
17228 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17229
17230 <file::GetExtendedAttribute as ::fidl_next::Method>::Response:
17231 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17232
17233 <file::SetExtendedAttribute as ::fidl_next::Method>::Response:
17234 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17235
17236 <file::RemoveExtendedAttribute as ::fidl_next::Method>::Response:
17237 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17238
17239 <file::Read as ::fidl_next::Method>::Response:
17240 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17241
17242 <file::Write as ::fidl_next::Method>::Response:
17243 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17244
17245 <file::Describe as ::fidl_next::Method>::Response:
17246 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17247
17248 <file::Seek as ::fidl_next::Method>::Response:
17249 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17250
17251 <file::ReadAt as ::fidl_next::Method>::Response:
17252 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17253
17254 <file::WriteAt as ::fidl_next::Method>::Response:
17255 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17256
17257 <file::Resize as ::fidl_next::Method>::Response:
17258 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17259
17260 <file::GetBackingMemory as ::fidl_next::Method>::Response:
17261 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17262
17263 <file::Allocate as ::fidl_next::Method>::Response:
17264 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17265
17266 <file::EnableVerity as ::fidl_next::Method>::Response:
17267 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17268{
17269 fn on_event(
17270 handler: &mut ___H,
17271 sender: &::fidl_next::ClientSender<___T, Self>,
17272 ordinal: u64,
17273 buffer: ___T::RecvBuffer,
17274 ) {
17275 match ordinal {
17276 9207534335756671346 => {
17277 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
17278 handler.on_open(sender, buffer);
17279 }
17280
17281 6679970090861613324 => {
17282 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
17283 handler.on_representation(sender, buffer);
17284 }
17285
17286 ordinal => handler.on_unknown_interaction(sender, ordinal),
17287 }
17288 }
17289}
17290
17291pub trait FileServerSender {
17293 type Transport: ::fidl_next::Transport;
17294
17295 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
17296
17297 fn on_open<___R>(
17298 &self,
17299 request: &mut ___R,
17300 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
17301 where
17302 ___R: ::fidl_next::Encode<
17303 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17304 Encoded = <file::OnOpen as ::fidl_next::Method>::Response,
17305 >;
17306
17307 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
17308
17309 fn on_representation<___R>(
17310 &self,
17311 request: &mut ___R,
17312 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
17313 where
17314 ___R: ::fidl_next::Encode<
17315 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17316 Encoded = <file::OnRepresentation as ::fidl_next::Method>::Response,
17317 >;
17318}
17319
17320impl<___T> FileServerSender for ::fidl_next::ServerSender<___T, File>
17321where
17322 ___T: ::fidl_next::Transport,
17323{
17324 type Transport = ___T;
17325
17326 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
17327
17328 fn on_open<___R>(
17329 &self,
17330 request: &mut ___R,
17331 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
17332 where
17333 ___R: ::fidl_next::Encode<
17334 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17335 Encoded = <file::OnOpen as ::fidl_next::Method>::Response,
17336 >,
17337 {
17338 self.as_untyped().send_event(9207534335756671346, request)
17339 }
17340
17341 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
17342
17343 fn on_representation<___R>(
17344 &self,
17345 request: &mut ___R,
17346 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
17347 where
17348 ___R: ::fidl_next::Encode<
17349 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
17350 Encoded = <file::OnRepresentation as ::fidl_next::Method>::Response,
17351 >,
17352 {
17353 self.as_untyped().send_event(6679970090861613324, request)
17354 }
17355}
17356
17357pub trait FileServerHandler<___T: ::fidl_next::Transport> {
17361 #[doc = " Acquires an advisory lock on the underlying file.\n\n The lock lasts until either this connection is closed or\n this method is called with |AdvisoryLockType.UNLOCK| to release the lock\n explicitly.\n\n Advisory locks are purely advisory. They do not prevent actual read or\n write operations from occurring on the file, either through this\n connection or through other connections.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `request.type` is [`AdvisoryLockType.READ`].\n * [`Rights.WRITE_BYTES`] if `request.type` is\n [`AdvisoryLockType.WRITE`].\n\n # Errors\n\n * `ZX_ERR_BAD_STATE` The specified type of lock cannot be acquired. For\n example, another connection might hold a conflicting lock type.\n * `ZX_ERR_NOT_SUPPORTED` This file does not support advisory locking.\n * `ZX_ERR_ACCESS_DENIED` This connection does not have sufficient rights\n to acquire the given type of lock.\n"]
17362 fn advisory_lock(
17363 &mut self,
17364 sender: &::fidl_next::ServerSender<___T, File>,
17365
17366 request: ::fidl_next::RequestBuffer<___T, file::AdvisoryLock>,
17367
17368 responder: ::fidl_next::Responder<file::AdvisoryLock>,
17369 );
17370
17371 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
17372 fn link_into(
17373 &mut self,
17374 sender: &::fidl_next::ServerSender<___T, File>,
17375
17376 request: ::fidl_next::RequestBuffer<___T, file::LinkInto>,
17377
17378 responder: ::fidl_next::Responder<file::LinkInto>,
17379 );
17380
17381 fn clone(
17382 &mut self,
17383 sender: &::fidl_next::ServerSender<___T, File>,
17384
17385 request: ::fidl_next::RequestBuffer<___T, file::Clone>,
17386 );
17387
17388 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
17389 fn close(
17390 &mut self,
17391 sender: &::fidl_next::ServerSender<___T, File>,
17392
17393 responder: ::fidl_next::Responder<file::Close>,
17394 );
17395
17396 fn query(
17397 &mut self,
17398 sender: &::fidl_next::ServerSender<___T, File>,
17399
17400 responder: ::fidl_next::Responder<file::Query>,
17401 );
17402
17403 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
17404 fn deprecated_clone(
17405 &mut self,
17406 sender: &::fidl_next::ServerSender<___T, File>,
17407
17408 request: ::fidl_next::RequestBuffer<___T, file::DeprecatedClone>,
17409 );
17410
17411 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
17412 fn get_attr(
17413 &mut self,
17414 sender: &::fidl_next::ServerSender<___T, File>,
17415
17416 responder: ::fidl_next::Responder<file::GetAttr>,
17417 );
17418
17419 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
17420 fn set_attr(
17421 &mut self,
17422 sender: &::fidl_next::ServerSender<___T, File>,
17423
17424 request: ::fidl_next::RequestBuffer<___T, file::SetAttr>,
17425
17426 responder: ::fidl_next::Responder<file::SetAttr>,
17427 );
17428
17429 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
17430 fn deprecated_get_flags(
17431 &mut self,
17432 sender: &::fidl_next::ServerSender<___T, File>,
17433
17434 responder: ::fidl_next::Responder<file::DeprecatedGetFlags>,
17435 );
17436
17437 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
17438 fn deprecated_set_flags(
17439 &mut self,
17440 sender: &::fidl_next::ServerSender<___T, File>,
17441
17442 request: ::fidl_next::RequestBuffer<___T, file::DeprecatedSetFlags>,
17443
17444 responder: ::fidl_next::Responder<file::DeprecatedSetFlags>,
17445 );
17446
17447 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
17448 fn get_flags(
17449 &mut self,
17450 sender: &::fidl_next::ServerSender<___T, File>,
17451
17452 responder: ::fidl_next::Responder<file::GetFlags>,
17453 );
17454
17455 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
17456 fn set_flags(
17457 &mut self,
17458 sender: &::fidl_next::ServerSender<___T, File>,
17459
17460 request: ::fidl_next::RequestBuffer<___T, file::SetFlags>,
17461
17462 responder: ::fidl_next::Responder<file::SetFlags>,
17463 );
17464
17465 #[doc = " Query the filesystem for filesystem-specific information.\n"]
17466 fn query_filesystem(
17467 &mut self,
17468 sender: &::fidl_next::ServerSender<___T, File>,
17469
17470 responder: ::fidl_next::Responder<file::QueryFilesystem>,
17471 );
17472
17473 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
17474 fn get_connection_info(
17475 &mut self,
17476 sender: &::fidl_next::ServerSender<___T, File>,
17477
17478 responder: ::fidl_next::Responder<file::GetConnectionInfo>,
17479 );
17480
17481 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
17482 fn get_attributes(
17483 &mut self,
17484 sender: &::fidl_next::ServerSender<___T, File>,
17485
17486 request: ::fidl_next::RequestBuffer<___T, file::GetAttributes>,
17487
17488 responder: ::fidl_next::Responder<file::GetAttributes>,
17489 );
17490
17491 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
17492 fn update_attributes(
17493 &mut self,
17494 sender: &::fidl_next::ServerSender<___T, File>,
17495
17496 request: ::fidl_next::RequestBuffer<___T, file::UpdateAttributes>,
17497
17498 responder: ::fidl_next::Responder<file::UpdateAttributes>,
17499 );
17500
17501 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
17502 fn sync(
17503 &mut self,
17504 sender: &::fidl_next::ServerSender<___T, File>,
17505
17506 responder: ::fidl_next::Responder<file::Sync>,
17507 );
17508
17509 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
17510 fn list_extended_attributes(
17511 &mut self,
17512 sender: &::fidl_next::ServerSender<___T, File>,
17513
17514 request: ::fidl_next::RequestBuffer<___T, file::ListExtendedAttributes>,
17515 );
17516
17517 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
17518 fn get_extended_attribute(
17519 &mut self,
17520 sender: &::fidl_next::ServerSender<___T, File>,
17521
17522 request: ::fidl_next::RequestBuffer<___T, file::GetExtendedAttribute>,
17523
17524 responder: ::fidl_next::Responder<file::GetExtendedAttribute>,
17525 );
17526
17527 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
17528 fn set_extended_attribute(
17529 &mut self,
17530 sender: &::fidl_next::ServerSender<___T, File>,
17531
17532 request: ::fidl_next::RequestBuffer<___T, file::SetExtendedAttribute>,
17533
17534 responder: ::fidl_next::Responder<file::SetExtendedAttribute>,
17535 );
17536
17537 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
17538 fn remove_extended_attribute(
17539 &mut self,
17540 sender: &::fidl_next::ServerSender<___T, File>,
17541
17542 request: ::fidl_next::RequestBuffer<___T, file::RemoveExtendedAttribute>,
17543
17544 responder: ::fidl_next::Responder<file::RemoveExtendedAttribute>,
17545 );
17546
17547 #[doc = " Reads up to \'count\' bytes at the seek offset.\n The seek offset is moved forward by the number of bytes read.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that the seek offset\n has reached the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that the\n seek offset is already at or beyond the end of file, and no data could\n be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually read anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
17548 fn read(
17549 &mut self,
17550 sender: &::fidl_next::ServerSender<___T, File>,
17551
17552 request: ::fidl_next::RequestBuffer<___T, file::Read>,
17553
17554 responder: ::fidl_next::Responder<file::Read>,
17555 );
17556
17557 #[doc = " Writes data at the seek offset.\n The seek offset is moved forward by the number of bytes written.\n If the file is in append mode, the seek offset is first set to the end\n of the file, followed by the write, in one atomic step.\n\n The file size may grow if the seek offset plus `data.length` is beyond\n the current end of file.\n\n + request `data` the byte buffer to write to the file.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file and return a\n successful write of zero bytes. The seek offset is still updated if\n in append mode.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
17558 fn write(
17559 &mut self,
17560 sender: &::fidl_next::ServerSender<___T, File>,
17561
17562 request: ::fidl_next::RequestBuffer<___T, file::Write>,
17563
17564 responder: ::fidl_next::Responder<file::Write>,
17565 );
17566
17567 fn describe(
17568 &mut self,
17569 sender: &::fidl_next::ServerSender<___T, File>,
17570
17571 responder: ::fidl_next::Responder<file::Describe>,
17572 );
17573
17574 #[doc = " Moves the offset at which the next invocation of [`Read`] or [`Write`]\n will occur. The seek offset is specific to each file connection.\n\n + request `origin` the reference point where `offset` will be based on.\n + request `offset` the number of bytes to seek.\n - response `offset_from_start` the adjusted seek offset, from the start\n of the file.\n\n This method does not require any rights.\n"]
17575 fn seek(
17576 &mut self,
17577 sender: &::fidl_next::ServerSender<___T, File>,
17578
17579 request: ::fidl_next::RequestBuffer<___T, file::Seek>,
17580
17581 responder: ::fidl_next::Responder<file::Seek>,
17582 );
17583
17584 #[doc = " Reads up to \'count\' bytes at the provided offset.\n Does not affect the seek offset.\n\n ## Invariants\n\n * The returned `data.length` will never be greater than `count`.\n * If `data.length` is less than `count`, it means that `ReadAt` has hit\n the end of file as part of this operation.\n * If `data.length` is zero while `count` is not, it means that `offset`\n is at or past the end of file, and no data can be read.\n * If `count` is zero, the server should perform all the checks ensuring\n read access without actually reading anything, and return an empty\n `data` vector.\n\n This method requires the [`Rights.READ_BYTES`] right.\n\n Returns `ZX_ERR_OUT_OF_RANGE` if `count` is greater than `MAX_TRANSFER_SIZE`.\n"]
17585 fn read_at(
17586 &mut self,
17587 sender: &::fidl_next::ServerSender<___T, File>,
17588
17589 request: ::fidl_next::RequestBuffer<___T, file::ReadAt>,
17590
17591 responder: ::fidl_next::Responder<file::ReadAt>,
17592 );
17593
17594 #[doc = " Writes data at the provided offset.\n Does not affect the seek offset.\n\n The file size may grow if `offset` plus `data.length` is past the\n current end of file.\n\n + request `data` the byte buffer to write to the file.\n + request `offset` the offset from start of the file to begin writing.\n - response `actual_count` the number of bytes written.\n\n ## Invariants\n\n * The returned `actual_count` will never be greater than `data.length`.\n * If the server is unable to write all the data due to e.g. not enough\n space, `actual_count` may be less than `data.length`. If no bytes\n could be written, an error is returned.\n * If `data.length` is zero, the server should perform all the checks\n ensuring write access without mutating the file, and will return a\n successful write of zero bytes.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
17595 fn write_at(
17596 &mut self,
17597 sender: &::fidl_next::ServerSender<___T, File>,
17598
17599 request: ::fidl_next::RequestBuffer<___T, file::WriteAt>,
17600
17601 responder: ::fidl_next::Responder<file::WriteAt>,
17602 );
17603
17604 #[doc = " Shrinks or grows the file size to \'length\' bytes.\n\n If file size is reduced by this operation, the extra trailing data\'\n is discarded.\n If file size is increased by this operation, the extended area appears\n as if it was zeroed.\n\n This method requires the [`Rights.WRITE_BYTES`] right.\n"]
17605 fn resize(
17606 &mut self,
17607 sender: &::fidl_next::ServerSender<___T, File>,
17608
17609 request: ::fidl_next::RequestBuffer<___T, file::Resize>,
17610
17611 responder: ::fidl_next::Responder<file::Resize>,
17612 );
17613
17614 #[doc = " Acquires a [`zx.Handle:VMO`] representing this file, if there is one,\n with the requested access rights.\n\n Implementations are not required to implement files backed by VMOs so\n this request may fail. Additionally, implementations may only support\n a certain subset of the flags. Clients should be prepared with fallback\n behavior if this request fails.\n\n If a client specifies neither `PRIVATE_CLONE` nor `SHARED_BUFFER`, the\n implementation is free to choose the semantics of the returned VMO.\n\n + request `flags` a [`VmoFlags`] indicating the desired mode of access.\n - response `vmo` the requested [`zx.Handle:VMO`].\n * error a [`zx.Status`] value indicating the failure.\n\n This method requires the following rights:\n\n * [`Rights.READ_BYTES`] if `flags` includes [`VmoFlags.READ`].\n * [`Rights.WRITE_BYTES`] if `flags` includes [`VmoFlags.WRITE`].\n * [`Rights.EXECUTE`] if `flags` includes [`VmoFlags.EXECUTE`].\n"]
17615 fn get_backing_memory(
17616 &mut self,
17617 sender: &::fidl_next::ServerSender<___T, File>,
17618
17619 request: ::fidl_next::RequestBuffer<___T, file::GetBackingMemory>,
17620
17621 responder: ::fidl_next::Responder<file::GetBackingMemory>,
17622 );
17623
17624 #[doc = " Pre-allocate on-disk space for this file.\n"]
17625 fn allocate(
17626 &mut self,
17627 sender: &::fidl_next::ServerSender<___T, File>,
17628
17629 request: ::fidl_next::RequestBuffer<___T, file::Allocate>,
17630
17631 responder: ::fidl_next::Responder<file::Allocate>,
17632 );
17633
17634 #[doc = " Enables verification for the file (permanently) which involves computing a merkle tree for\n the file. Forces a flush prior to building the merkle tree to ensure cached data is\n captured. Future reads will be verified against the computed merkle tree and writes will be\n rejected. This method can take some time to complete as it depends on the size of the file.\n This method can be aborted by closing the connection that this method was issued on.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n Returns `ZX_ERR_NOT_SUPPORTED` if the filesystem does not support verity.\n Returns `ZX_ERR_ALREADY_EXISTS` if the file was already fsverity-enabled.\n Also returns any error that might arise from reading the file, or from flushing the file,\n such as `ZX_ERR_IO`.\n"]
17635 fn enable_verity(
17636 &mut self,
17637 sender: &::fidl_next::ServerSender<___T, File>,
17638
17639 request: ::fidl_next::RequestBuffer<___T, file::EnableVerity>,
17640
17641 responder: ::fidl_next::Responder<file::EnableVerity>,
17642 );
17643
17644 fn on_unknown_interaction(
17645 &mut self,
17646 sender: &::fidl_next::ServerSender<___T, File>,
17647 ordinal: u64,
17648 ) {
17649 sender.close();
17650 }
17651}
17652
17653impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for File
17654where
17655 ___T: ::fidl_next::Transport,
17656 ___H: FileServerHandler<___T>,
17657
17658 crate::WireAdvisoryLockingAdvisoryLockRequest:
17659 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17660
17661 crate::WireLinkableLinkIntoRequest:
17662 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17663
17664 ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest:
17665 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17666
17667 crate::WireNodeDeprecatedCloneRequest:
17668 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17669
17670 crate::WireNodeSetAttrRequest:
17671 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17672
17673 crate::WireNodeDeprecatedSetFlagsRequest:
17674 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17675
17676 crate::WireNodeSetFlagsRequest:
17677 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17678
17679 crate::WireNodeGetAttributesRequest:
17680 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17681
17682 crate::WireMutableNodeAttributes:
17683 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17684
17685 crate::WireNodeListExtendedAttributesRequest:
17686 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17687
17688 crate::WireNodeGetExtendedAttributeRequest:
17689 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17690
17691 crate::WireNodeSetExtendedAttributeRequest:
17692 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17693
17694 crate::WireNodeRemoveExtendedAttributeRequest:
17695 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17696
17697 crate::WireReadableReadRequest:
17698 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17699
17700 crate::WireWritableWriteRequest:
17701 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17702
17703 crate::WireFileSeekRequest: ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17704
17705 crate::WireFileReadAtRequest: ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17706
17707 crate::WireFileWriteAtRequest:
17708 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17709
17710 crate::WireFileResizeRequest: ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17711
17712 crate::WireFileGetBackingMemoryRequest:
17713 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17714
17715 crate::WireFileAllocateRequest:
17716 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17717
17718 crate::WireFileEnableVerityRequest:
17719 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
17720{
17721 fn on_one_way(
17722 handler: &mut ___H,
17723 sender: &::fidl_next::ServerSender<___T, Self>,
17724 ordinal: u64,
17725 buffer: ___T::RecvBuffer,
17726 ) {
17727 match ordinal {
17728 2366825959783828089 => {
17729 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17730 handler.clone(sender, buffer);
17731 }
17732
17733 6512600400724287855 => {
17734 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17735 handler.deprecated_clone(sender, buffer);
17736 }
17737
17738 5431626189872037072 => {
17739 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17740 handler.list_extended_attributes(sender, buffer);
17741 }
17742
17743 ordinal => handler.on_unknown_interaction(sender, ordinal),
17744 }
17745 }
17746
17747 fn on_two_way(
17748 handler: &mut ___H,
17749 sender: &::fidl_next::ServerSender<___T, Self>,
17750 ordinal: u64,
17751 buffer: ___T::RecvBuffer,
17752 responder: ::fidl_next::protocol::Responder,
17753 ) {
17754 match ordinal {
17755 7992130864415541162 => {
17756 let responder = ::fidl_next::Responder::from_untyped(responder);
17757
17758 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17759 handler.advisory_lock(sender, buffer, responder);
17760 }
17761
17762 6121399674497678964 => {
17763 let responder = ::fidl_next::Responder::from_untyped(responder);
17764
17765 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17766 handler.link_into(sender, buffer, responder);
17767 }
17768
17769 6540867515453498750 => {
17770 let responder = ::fidl_next::Responder::from_untyped(responder);
17771
17772 handler.close(sender, responder);
17773 }
17774
17775 2763219980499352582 => {
17776 let responder = ::fidl_next::Responder::from_untyped(responder);
17777
17778 handler.query(sender, responder);
17779 }
17780
17781 8689798978500614909 => {
17782 let responder = ::fidl_next::Responder::from_untyped(responder);
17783
17784 handler.get_attr(sender, responder);
17785 }
17786
17787 4721673413776871238 => {
17788 let responder = ::fidl_next::Responder::from_untyped(responder);
17789
17790 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17791 handler.set_attr(sender, buffer, responder);
17792 }
17793
17794 6595803110182632097 => {
17795 let responder = ::fidl_next::Responder::from_untyped(responder);
17796
17797 handler.deprecated_get_flags(sender, responder);
17798 }
17799
17800 5950864159036794675 => {
17801 let responder = ::fidl_next::Responder::from_untyped(responder);
17802
17803 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17804 handler.deprecated_set_flags(sender, buffer, responder);
17805 }
17806
17807 105530239381466147 => {
17808 let responder = ::fidl_next::Responder::from_untyped(responder);
17809
17810 handler.get_flags(sender, responder);
17811 }
17812
17813 6172186066099445416 => {
17814 let responder = ::fidl_next::Responder::from_untyped(responder);
17815
17816 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17817 handler.set_flags(sender, buffer, responder);
17818 }
17819
17820 8013111122914313744 => {
17821 let responder = ::fidl_next::Responder::from_untyped(responder);
17822
17823 handler.query_filesystem(sender, responder);
17824 }
17825
17826 6362521381364198667 => {
17827 let responder = ::fidl_next::Responder::from_untyped(responder);
17828
17829 handler.get_connection_info(sender, responder);
17830 }
17831
17832 4414537700416816443 => {
17833 let responder = ::fidl_next::Responder::from_untyped(responder);
17834
17835 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17836 handler.get_attributes(sender, buffer, responder);
17837 }
17838
17839 3677402239314018056 => {
17840 let responder = ::fidl_next::Responder::from_untyped(responder);
17841
17842 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17843 handler.update_attributes(sender, buffer, responder);
17844 }
17845
17846 3196473584242777161 => {
17847 let responder = ::fidl_next::Responder::from_untyped(responder);
17848
17849 handler.sync(sender, responder);
17850 }
17851
17852 5043930208506967771 => {
17853 let responder = ::fidl_next::Responder::from_untyped(responder);
17854
17855 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17856 handler.get_extended_attribute(sender, buffer, responder);
17857 }
17858
17859 5374223046099989052 => {
17860 let responder = ::fidl_next::Responder::from_untyped(responder);
17861
17862 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17863 handler.set_extended_attribute(sender, buffer, responder);
17864 }
17865
17866 8794297771444732717 => {
17867 let responder = ::fidl_next::Responder::from_untyped(responder);
17868
17869 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17870 handler.remove_extended_attribute(sender, buffer, responder);
17871 }
17872
17873 395825947633028830 => {
17874 let responder = ::fidl_next::Responder::from_untyped(responder);
17875
17876 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17877 handler.read(sender, buffer, responder);
17878 }
17879
17880 7651971425397809026 => {
17881 let responder = ::fidl_next::Responder::from_untyped(responder);
17882
17883 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17884 handler.write(sender, buffer, responder);
17885 }
17886
17887 7545125870053689020 => {
17888 let responder = ::fidl_next::Responder::from_untyped(responder);
17889
17890 handler.describe(sender, responder);
17891 }
17892
17893 8649041485622956551 => {
17894 let responder = ::fidl_next::Responder::from_untyped(responder);
17895
17896 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17897 handler.seek(sender, buffer, responder);
17898 }
17899
17900 1587416148701180478 => {
17901 let responder = ::fidl_next::Responder::from_untyped(responder);
17902
17903 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17904 handler.read_at(sender, buffer, responder);
17905 }
17906
17907 8736683935131400491 => {
17908 let responder = ::fidl_next::Responder::from_untyped(responder);
17909
17910 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17911 handler.write_at(sender, buffer, responder);
17912 }
17913
17914 3134648685270758458 => {
17915 let responder = ::fidl_next::Responder::from_untyped(responder);
17916
17917 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17918 handler.resize(sender, buffer, responder);
17919 }
17920
17921 46911652864194091 => {
17922 let responder = ::fidl_next::Responder::from_untyped(responder);
17923
17924 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17925 handler.get_backing_memory(sender, buffer, responder);
17926 }
17927
17928 8645235848064269614 => {
17929 let responder = ::fidl_next::Responder::from_untyped(responder);
17930
17931 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17932 handler.allocate(sender, buffer, responder);
17933 }
17934
17935 3189145313204943035 => {
17936 let responder = ::fidl_next::Responder::from_untyped(responder);
17937
17938 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
17939 handler.enable_verity(sender, buffer, responder);
17940 }
17941
17942 ordinal => handler.on_unknown_interaction(sender, ordinal),
17943 }
17944 }
17945}
17946
17947#[derive(Debug)]
17948#[repr(C)]
17949pub struct FileObject {
17950 pub event: Option<::fidl_next::fuchsia::zx::Handle>,
17951
17952 pub stream: Option<::fidl_next::fuchsia::zx::Handle>,
17953}
17954
17955impl ::fidl_next::Encodable for FileObject {
17956 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
17957 ::fidl_next::CopyOptimization::enable_if(
17958 true
17959
17960 && <
17961 Option<::fidl_next::fuchsia::zx::Handle> as ::fidl_next::Encodable
17962 >::COPY_OPTIMIZATION.is_enabled()
17963
17964 && <
17965 Option<::fidl_next::fuchsia::zx::Handle> as ::fidl_next::Encodable
17966 >::COPY_OPTIMIZATION.is_enabled()
17967
17968 )
17969 };
17970
17971 type Encoded = WireFileObject;
17972}
17973
17974unsafe impl<___E> ::fidl_next::Encode<___E> for FileObject
17975where
17976 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
17977
17978 ___E: ::fidl_next::fuchsia::HandleEncoder,
17979{
17980 #[inline]
17981 fn encode(
17982 &mut self,
17983 encoder: &mut ___E,
17984 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
17985 ) -> Result<(), ::fidl_next::EncodeError> {
17986 ::fidl_next::munge! {
17987 let Self::Encoded {
17988 event,
17989 stream,
17990
17991 } = out;
17992 }
17993
17994 ::fidl_next::Encode::encode(&mut self.event, encoder, event)?;
17995
17996 ::fidl_next::Encode::encode(&mut self.stream, encoder, stream)?;
17997
17998 Ok(())
17999 }
18000}
18001
18002impl ::fidl_next::EncodableOption for Box<FileObject> {
18003 type EncodedOption = ::fidl_next::WireBox<WireFileObject>;
18004}
18005
18006unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FileObject>
18007where
18008 ___E: ::fidl_next::Encoder + ?Sized,
18009 FileObject: ::fidl_next::Encode<___E>,
18010{
18011 #[inline]
18012 fn encode_option(
18013 this: Option<&mut Self>,
18014 encoder: &mut ___E,
18015 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
18016 ) -> Result<(), ::fidl_next::EncodeError> {
18017 if let Some(inner) = this {
18018 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
18019 ::fidl_next::WireBox::encode_present(out);
18020 } else {
18021 ::fidl_next::WireBox::encode_absent(out);
18022 }
18023
18024 Ok(())
18025 }
18026}
18027
18028impl ::fidl_next::TakeFrom<WireFileObject> for FileObject {
18029 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
18030 ::fidl_next::CopyOptimization::enable_if(
18031 true
18032
18033 && <
18034 Option<::fidl_next::fuchsia::zx::Handle> as ::fidl_next::Encodable
18035 >::COPY_OPTIMIZATION.is_enabled()
18036
18037 && <
18038 Option<::fidl_next::fuchsia::zx::Handle> as ::fidl_next::Encodable
18039 >::COPY_OPTIMIZATION.is_enabled()
18040
18041 )
18042 };
18043
18044 #[inline]
18045 fn take_from(from: &WireFileObject) -> Self {
18046 Self {
18047 event: ::fidl_next::TakeFrom::take_from(&from.event),
18048
18049 stream: ::fidl_next::TakeFrom::take_from(&from.stream),
18050 }
18051 }
18052}
18053
18054#[derive(Debug)]
18056#[repr(C)]
18057pub struct WireFileObject {
18058 pub event: ::fidl_next::fuchsia::WireOptionalHandle,
18059
18060 pub stream: ::fidl_next::fuchsia::WireOptionalHandle,
18061}
18062
18063unsafe impl ::fidl_next::ZeroPadding for WireFileObject {
18064 #[inline]
18065 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
18066}
18067
18068unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileObject
18069where
18070 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
18071
18072 ___D: ::fidl_next::fuchsia::HandleDecoder,
18073{
18074 fn decode(
18075 slot: ::fidl_next::Slot<'_, Self>,
18076 decoder: &mut ___D,
18077 ) -> Result<(), ::fidl_next::DecodeError> {
18078 ::fidl_next::munge! {
18079 let Self {
18080 mut event,
18081 mut stream,
18082
18083 } = slot;
18084 }
18085
18086 ::fidl_next::Decode::decode(event.as_mut(), decoder)?;
18087
18088 ::fidl_next::Decode::decode(stream.as_mut(), decoder)?;
18089
18090 Ok(())
18091 }
18092}
18093
18094::fidl_next::bitflags! {
18095 #[derive(
18096 Clone,
18097 Copy,
18098 Debug,
18099 PartialEq,
18100 Eq,
18101 Hash,
18102 )]
18103 pub struct FileSignal: u32 {
18104 #[doc = " Indicates the file is ready for reading.\n"]const READABLE = 16777216;
18105 #[doc = " Indicates the file is ready for writing.\n"]const WRITABLE = 33554432;
18106
18107 }
18108}
18109
18110impl ::fidl_next::Encodable for FileSignal {
18111 type Encoded = WireFileSignal;
18112}
18113
18114unsafe impl<___E> ::fidl_next::Encode<___E> for FileSignal
18115where
18116 ___E: ?Sized,
18117{
18118 #[inline]
18119 fn encode(
18120 &mut self,
18121 _: &mut ___E,
18122 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
18123 ) -> Result<(), ::fidl_next::EncodeError> {
18124 ::fidl_next::munge!(let WireFileSignal { value } = out);
18125 let _ = value.write(::fidl_next::WireU32::from(self.bits()));
18126 Ok(())
18127 }
18128}
18129
18130impl ::core::convert::From<WireFileSignal> for FileSignal {
18131 fn from(wire: WireFileSignal) -> Self {
18132 Self::from_bits_retain(u32::from(wire.value))
18133 }
18134}
18135
18136impl ::fidl_next::TakeFrom<WireFileSignal> for FileSignal {
18137 #[inline]
18138 fn take_from(from: &WireFileSignal) -> Self {
18139 Self::from(*from)
18140 }
18141}
18142
18143#[derive(Clone, Copy, Debug)]
18145#[repr(transparent)]
18146pub struct WireFileSignal {
18147 value: ::fidl_next::WireU32,
18148}
18149
18150unsafe impl ::fidl_next::ZeroPadding for WireFileSignal {
18151 #[inline]
18152 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
18153 }
18155}
18156
18157unsafe impl<___D> ::fidl_next::Decode<___D> for WireFileSignal
18158where
18159 ___D: ?Sized,
18160{
18161 fn decode(
18162 slot: ::fidl_next::Slot<'_, Self>,
18163 _: &mut ___D,
18164 ) -> Result<(), ::fidl_next::DecodeError> {
18165 ::fidl_next::munge!(let Self { value } = slot);
18166 let set = u32::from(*value);
18167 if set & !FileSignal::all().bits() != 0 {
18168 return Err(::fidl_next::DecodeError::InvalidBits {
18169 expected: FileSignal::all().bits() as usize,
18170 actual: set as usize,
18171 });
18172 }
18173
18174 Ok(())
18175 }
18176}
18177
18178impl ::core::convert::From<FileSignal> for WireFileSignal {
18179 fn from(natural: FileSignal) -> Self {
18180 Self { value: ::fidl_next::WireU32::from(natural.bits()) }
18181 }
18182}
18183
18184pub const MAX_FS_NAME_BUFFER: u64 = 32;
18185
18186#[derive(Clone, Debug)]
18187#[repr(C)]
18188pub struct FilesystemInfo {
18189 pub total_bytes: u64,
18190
18191 pub used_bytes: u64,
18192
18193 pub total_nodes: u64,
18194
18195 pub used_nodes: u64,
18196
18197 pub free_shared_pool_bytes: u64,
18198
18199 pub fs_id: u64,
18200
18201 pub block_size: u32,
18202
18203 pub max_filename_size: u32,
18204
18205 pub fs_type: u32,
18206
18207 pub padding: u32,
18208
18209 pub name: [i8; 32],
18210}
18211
18212impl ::fidl_next::Encodable for FilesystemInfo {
18213 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
18214 ::fidl_next::CopyOptimization::enable_if(
18215 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18216 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18217 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18218 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18219 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18220 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18221 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18222 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18223 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18224 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18225 && <[i8; 32] as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
18226 )
18227 };
18228
18229 type Encoded = WireFilesystemInfo;
18230}
18231
18232unsafe impl<___E> ::fidl_next::Encode<___E> for FilesystemInfo
18233where
18234 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
18235{
18236 #[inline]
18237 fn encode(
18238 &mut self,
18239 encoder: &mut ___E,
18240 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
18241 ) -> Result<(), ::fidl_next::EncodeError> {
18242 ::fidl_next::munge! {
18243 let Self::Encoded {
18244 total_bytes,
18245 used_bytes,
18246 total_nodes,
18247 used_nodes,
18248 free_shared_pool_bytes,
18249 fs_id,
18250 block_size,
18251 max_filename_size,
18252 fs_type,
18253 padding,
18254 name,
18255
18256 } = out;
18257 }
18258
18259 ::fidl_next::Encode::encode(&mut self.total_bytes, encoder, total_bytes)?;
18260
18261 ::fidl_next::Encode::encode(&mut self.used_bytes, encoder, used_bytes)?;
18262
18263 ::fidl_next::Encode::encode(&mut self.total_nodes, encoder, total_nodes)?;
18264
18265 ::fidl_next::Encode::encode(&mut self.used_nodes, encoder, used_nodes)?;
18266
18267 ::fidl_next::Encode::encode(
18268 &mut self.free_shared_pool_bytes,
18269 encoder,
18270 free_shared_pool_bytes,
18271 )?;
18272
18273 ::fidl_next::Encode::encode(&mut self.fs_id, encoder, fs_id)?;
18274
18275 ::fidl_next::Encode::encode(&mut self.block_size, encoder, block_size)?;
18276
18277 ::fidl_next::Encode::encode(&mut self.max_filename_size, encoder, max_filename_size)?;
18278
18279 ::fidl_next::Encode::encode(&mut self.fs_type, encoder, fs_type)?;
18280
18281 ::fidl_next::Encode::encode(&mut self.padding, encoder, padding)?;
18282
18283 ::fidl_next::Encode::encode(&mut self.name, encoder, name)?;
18284
18285 Ok(())
18286 }
18287}
18288
18289impl ::fidl_next::EncodableOption for Box<FilesystemInfo> {
18290 type EncodedOption = ::fidl_next::WireBox<WireFilesystemInfo>;
18291}
18292
18293unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<FilesystemInfo>
18294where
18295 ___E: ::fidl_next::Encoder + ?Sized,
18296 FilesystemInfo: ::fidl_next::Encode<___E>,
18297{
18298 #[inline]
18299 fn encode_option(
18300 this: Option<&mut Self>,
18301 encoder: &mut ___E,
18302 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
18303 ) -> Result<(), ::fidl_next::EncodeError> {
18304 if let Some(inner) = this {
18305 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
18306 ::fidl_next::WireBox::encode_present(out);
18307 } else {
18308 ::fidl_next::WireBox::encode_absent(out);
18309 }
18310
18311 Ok(())
18312 }
18313}
18314
18315impl ::fidl_next::TakeFrom<WireFilesystemInfo> for FilesystemInfo {
18316 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> = unsafe {
18317 ::fidl_next::CopyOptimization::enable_if(
18318 true && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18319 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18320 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18321 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18322 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18323 && <u64 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18324 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18325 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18326 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18327 && <u32 as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled()
18328 && <[i8; 32] as ::fidl_next::Encodable>::COPY_OPTIMIZATION.is_enabled(),
18329 )
18330 };
18331
18332 #[inline]
18333 fn take_from(from: &WireFilesystemInfo) -> Self {
18334 Self {
18335 total_bytes: ::fidl_next::TakeFrom::take_from(&from.total_bytes),
18336
18337 used_bytes: ::fidl_next::TakeFrom::take_from(&from.used_bytes),
18338
18339 total_nodes: ::fidl_next::TakeFrom::take_from(&from.total_nodes),
18340
18341 used_nodes: ::fidl_next::TakeFrom::take_from(&from.used_nodes),
18342
18343 free_shared_pool_bytes: ::fidl_next::TakeFrom::take_from(&from.free_shared_pool_bytes),
18344
18345 fs_id: ::fidl_next::TakeFrom::take_from(&from.fs_id),
18346
18347 block_size: ::fidl_next::TakeFrom::take_from(&from.block_size),
18348
18349 max_filename_size: ::fidl_next::TakeFrom::take_from(&from.max_filename_size),
18350
18351 fs_type: ::fidl_next::TakeFrom::take_from(&from.fs_type),
18352
18353 padding: ::fidl_next::TakeFrom::take_from(&from.padding),
18354
18355 name: ::fidl_next::TakeFrom::take_from(&from.name),
18356 }
18357 }
18358}
18359
18360#[derive(Clone, Debug)]
18362#[repr(C)]
18363pub struct WireFilesystemInfo {
18364 pub total_bytes: ::fidl_next::WireU64,
18365
18366 pub used_bytes: ::fidl_next::WireU64,
18367
18368 pub total_nodes: ::fidl_next::WireU64,
18369
18370 pub used_nodes: ::fidl_next::WireU64,
18371
18372 pub free_shared_pool_bytes: ::fidl_next::WireU64,
18373
18374 pub fs_id: ::fidl_next::WireU64,
18375
18376 pub block_size: ::fidl_next::WireU32,
18377
18378 pub max_filename_size: ::fidl_next::WireU32,
18379
18380 pub fs_type: ::fidl_next::WireU32,
18381
18382 pub padding: ::fidl_next::WireU32,
18383
18384 pub name: [i8; 32],
18385}
18386
18387unsafe impl ::fidl_next::ZeroPadding for WireFilesystemInfo {
18388 #[inline]
18389 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
18390}
18391
18392unsafe impl<___D> ::fidl_next::Decode<___D> for WireFilesystemInfo
18393where
18394 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
18395{
18396 fn decode(
18397 slot: ::fidl_next::Slot<'_, Self>,
18398 decoder: &mut ___D,
18399 ) -> Result<(), ::fidl_next::DecodeError> {
18400 ::fidl_next::munge! {
18401 let Self {
18402 mut total_bytes,
18403 mut used_bytes,
18404 mut total_nodes,
18405 mut used_nodes,
18406 mut free_shared_pool_bytes,
18407 mut fs_id,
18408 mut block_size,
18409 mut max_filename_size,
18410 mut fs_type,
18411 mut padding,
18412 mut name,
18413
18414 } = slot;
18415 }
18416
18417 ::fidl_next::Decode::decode(total_bytes.as_mut(), decoder)?;
18418
18419 ::fidl_next::Decode::decode(used_bytes.as_mut(), decoder)?;
18420
18421 ::fidl_next::Decode::decode(total_nodes.as_mut(), decoder)?;
18422
18423 ::fidl_next::Decode::decode(used_nodes.as_mut(), decoder)?;
18424
18425 ::fidl_next::Decode::decode(free_shared_pool_bytes.as_mut(), decoder)?;
18426
18427 ::fidl_next::Decode::decode(fs_id.as_mut(), decoder)?;
18428
18429 ::fidl_next::Decode::decode(block_size.as_mut(), decoder)?;
18430
18431 ::fidl_next::Decode::decode(max_filename_size.as_mut(), decoder)?;
18432
18433 ::fidl_next::Decode::decode(fs_type.as_mut(), decoder)?;
18434
18435 ::fidl_next::Decode::decode(padding.as_mut(), decoder)?;
18436
18437 ::fidl_next::Decode::decode(name.as_mut(), decoder)?;
18438
18439 Ok(())
18440 }
18441}
18442
18443#[doc = " Set of rights that [`Flags.PERM_INHERIT_WRITE`] will inherit from the parent connection if\n specified. Note that if any of these permissions are missing from the connection, none of these\n permissions will be inherited.\n"]
18444pub const INHERITED_WRITE_PERMISSIONS: crate::Operations = crate::Operations::from_bits_retain(356);
18445
18446#[doc = " Nodes which do not have ino values should return this value\n from Readdir and GetAttr.\n"]
18447pub const INO_UNKNOWN: u64 = 18446744073709551615;
18448
18449pub const MASK_KNOWN_PERMISSIONS: crate::Flags = crate::Flags::from_bits_retain(25087);
18450
18451pub const MASK_KNOWN_PROTOCOLS: crate::Flags = crate::Flags::from_bits_retain(30069489664);
18452
18453pub const MASK_PERMISSION_FLAGS: u64 = 65535;
18454
18455pub const MASK_POSIX_FLAGS: u64 = 4294967295;
18456
18457#[doc = " The maximum length, in bytes, of a single filesystem component.\n"]
18458pub const MAX_FILENAME: u64 = 255;
18459
18460#[doc = " Bits reserved for posix protections. Native fuchsia filesystems\n are not required to set bits contained within `MODE_PROTECTION_MASK`,\n but filesystems that wish to do so may refer to sys/stat.h for their\n definitions.\n"]
18461pub const MODE_PROTECTION_MASK: u32 = 4095;
18462
18463pub const MODE_TYPE_BLOCK_DEVICE: u32 = 24576;
18464
18465pub const MODE_TYPE_DIRECTORY: u32 = 16384;
18466
18467pub const MODE_TYPE_FILE: u32 = 32768;
18468
18469#[doc = " Bits indicating node type. The canonical mechanism to check\n for a node type is to take \'mode\', bitwise AND it with the\n `MODE_TYPE_MASK`, and check exact equality against a mode type.\n"]
18470pub const MODE_TYPE_MASK: u32 = 1044480;
18471
18472pub const MODE_TYPE_SERVICE: u32 = 65536;
18473
18474pub const MODE_TYPE_SYMLINK: u32 = 40960;
18475
18476pub const NODE_PROTOCOL_NAME: &str = "fuchsia.io/Node";
18477
18478#[derive(Clone, Debug)]
18479#[repr(C)]
18480pub struct Service {}
18481
18482impl ::fidl_next::Encodable for Service {
18483 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> =
18484 unsafe { ::fidl_next::CopyOptimization::enable_if(true) };
18485
18486 type Encoded = WireService;
18487}
18488
18489unsafe impl<___E> ::fidl_next::Encode<___E> for Service
18490where
18491 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
18492{
18493 #[inline]
18494 fn encode(
18495 &mut self,
18496 encoder: &mut ___E,
18497 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
18498 ) -> Result<(), ::fidl_next::EncodeError> {
18499 ::fidl_next::munge! {
18500 let Self::Encoded {
18501
18502 } = out;
18503 }
18504
18505 Ok(())
18506 }
18507}
18508
18509impl ::fidl_next::EncodableOption for Box<Service> {
18510 type EncodedOption = ::fidl_next::WireBox<WireService>;
18511}
18512
18513unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<Service>
18514where
18515 ___E: ::fidl_next::Encoder + ?Sized,
18516 Service: ::fidl_next::Encode<___E>,
18517{
18518 #[inline]
18519 fn encode_option(
18520 this: Option<&mut Self>,
18521 encoder: &mut ___E,
18522 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
18523 ) -> Result<(), ::fidl_next::EncodeError> {
18524 if let Some(inner) = this {
18525 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
18526 ::fidl_next::WireBox::encode_present(out);
18527 } else {
18528 ::fidl_next::WireBox::encode_absent(out);
18529 }
18530
18531 Ok(())
18532 }
18533}
18534
18535impl ::fidl_next::TakeFrom<WireService> for Service {
18536 const COPY_OPTIMIZATION: ::fidl_next::CopyOptimization<Self> =
18537 unsafe { ::fidl_next::CopyOptimization::enable_if(true) };
18538
18539 #[inline]
18540 fn take_from(from: &WireService) -> Self {
18541 Self {}
18542 }
18543}
18544
18545#[derive(Clone, Debug)]
18547#[repr(C)]
18548pub struct WireService {}
18549
18550unsafe impl ::fidl_next::ZeroPadding for WireService {
18551 #[inline]
18552 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
18553}
18554
18555unsafe impl<___D> ::fidl_next::Decode<___D> for WireService
18556where
18557 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
18558{
18559 fn decode(
18560 slot: ::fidl_next::Slot<'_, Self>,
18561 decoder: &mut ___D,
18562 ) -> Result<(), ::fidl_next::DecodeError> {
18563 ::fidl_next::munge! {
18564 let Self {
18565
18566 } = slot;
18567 }
18568
18569 Ok(())
18570 }
18571}
18572
18573#[derive(Clone, Debug)]
18574pub struct SymlinkObject {
18575 pub target: Vec<u8>,
18576}
18577
18578impl ::fidl_next::Encodable for SymlinkObject {
18579 type Encoded = WireSymlinkObject;
18580}
18581
18582unsafe impl<___E> ::fidl_next::Encode<___E> for SymlinkObject
18583where
18584 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
18585
18586 ___E: ::fidl_next::Encoder,
18587{
18588 #[inline]
18589 fn encode(
18590 &mut self,
18591 encoder: &mut ___E,
18592 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
18593 ) -> Result<(), ::fidl_next::EncodeError> {
18594 ::fidl_next::munge! {
18595 let Self::Encoded {
18596 target,
18597
18598 } = out;
18599 }
18600
18601 ::fidl_next::Encode::encode(&mut self.target, encoder, target)?;
18602
18603 Ok(())
18604 }
18605}
18606
18607impl ::fidl_next::EncodableOption for Box<SymlinkObject> {
18608 type EncodedOption = ::fidl_next::WireBox<WireSymlinkObject>;
18609}
18610
18611unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<SymlinkObject>
18612where
18613 ___E: ::fidl_next::Encoder + ?Sized,
18614 SymlinkObject: ::fidl_next::Encode<___E>,
18615{
18616 #[inline]
18617 fn encode_option(
18618 this: Option<&mut Self>,
18619 encoder: &mut ___E,
18620 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
18621 ) -> Result<(), ::fidl_next::EncodeError> {
18622 if let Some(inner) = this {
18623 ::fidl_next::EncoderExt::encode_next(encoder, inner)?;
18624 ::fidl_next::WireBox::encode_present(out);
18625 } else {
18626 ::fidl_next::WireBox::encode_absent(out);
18627 }
18628
18629 Ok(())
18630 }
18631}
18632
18633impl ::fidl_next::TakeFrom<WireSymlinkObject> for SymlinkObject {
18634 #[inline]
18635 fn take_from(from: &WireSymlinkObject) -> Self {
18636 Self { target: ::fidl_next::TakeFrom::take_from(&from.target) }
18637 }
18638}
18639
18640#[derive(Debug)]
18642#[repr(C)]
18643pub struct WireSymlinkObject {
18644 pub target: ::fidl_next::WireVector<u8>,
18645}
18646
18647unsafe impl ::fidl_next::ZeroPadding for WireSymlinkObject {
18648 #[inline]
18649 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {}
18650}
18651
18652unsafe impl<___D> ::fidl_next::Decode<___D> for WireSymlinkObject
18653where
18654 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
18655
18656 ___D: ::fidl_next::Decoder,
18657{
18658 fn decode(
18659 slot: ::fidl_next::Slot<'_, Self>,
18660 decoder: &mut ___D,
18661 ) -> Result<(), ::fidl_next::DecodeError> {
18662 ::fidl_next::munge! {
18663 let Self {
18664 mut target,
18665
18666 } = slot;
18667 }
18668
18669 ::fidl_next::Decode::decode(target.as_mut(), decoder)?;
18670
18671 let target = unsafe { target.deref_unchecked() };
18672
18673 if target.len() > 4095 {
18674 return Err(::fidl_next::DecodeError::VectorTooLong {
18675 size: target.len() as u64,
18676 limit: 4095,
18677 });
18678 }
18679
18680 Ok(())
18681 }
18682}
18683
18684#[derive(Debug)]
18685pub enum NodeInfoDeprecated {
18686 Service(crate::Service),
18687
18688 File(crate::FileObject),
18689
18690 Directory(crate::DirectoryObject),
18691
18692 Symlink(crate::SymlinkObject),
18693}
18694
18695impl ::fidl_next::Encodable for NodeInfoDeprecated {
18696 type Encoded = WireNodeInfoDeprecated;
18697}
18698
18699unsafe impl<___E> ::fidl_next::Encode<___E> for NodeInfoDeprecated
18700where
18701 ___E: ::fidl_next::encoder::InternalHandleEncoder + ?Sized,
18702
18703 ___E: ::fidl_next::Encoder,
18704
18705 ___E: ::fidl_next::fuchsia::HandleEncoder,
18706{
18707 #[inline]
18708 fn encode(
18709 &mut self,
18710 encoder: &mut ___E,
18711 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
18712 ) -> Result<(), ::fidl_next::EncodeError> {
18713 ::fidl_next::munge!(let WireNodeInfoDeprecated { raw } = out);
18714
18715 match self {
18716 Self::Service(value) => ::fidl_next::RawWireUnion::encode_as::<___E, crate::Service>(
18717 value, 1, encoder, raw,
18718 )?,
18719
18720 Self::File(value) => ::fidl_next::RawWireUnion::encode_as::<___E, crate::FileObject>(
18721 value, 2, encoder, raw,
18722 )?,
18723
18724 Self::Directory(value) => ::fidl_next::RawWireUnion::encode_as::<
18725 ___E,
18726 crate::DirectoryObject,
18727 >(value, 3, encoder, raw)?,
18728
18729 Self::Symlink(value) => ::fidl_next::RawWireUnion::encode_as::<
18730 ___E,
18731 crate::SymlinkObject,
18732 >(value, 4, encoder, raw)?,
18733 }
18734
18735 Ok(())
18736 }
18737}
18738
18739impl ::fidl_next::EncodableOption for Box<NodeInfoDeprecated> {
18740 type EncodedOption = WireOptionalNodeInfoDeprecated;
18741}
18742
18743unsafe impl<___E> ::fidl_next::EncodeOption<___E> for Box<NodeInfoDeprecated>
18744where
18745 ___E: ?Sized,
18746 NodeInfoDeprecated: ::fidl_next::Encode<___E>,
18747{
18748 #[inline]
18749 fn encode_option(
18750 this: Option<&mut Self>,
18751 encoder: &mut ___E,
18752 out: &mut ::core::mem::MaybeUninit<Self::EncodedOption>,
18753 ) -> Result<(), ::fidl_next::EncodeError> {
18754 ::fidl_next::munge!(let WireOptionalNodeInfoDeprecated { raw } = &mut *out);
18755
18756 if let Some(inner) = this {
18757 let value_out = unsafe { &mut *out.as_mut_ptr().cast() };
18758 ::fidl_next::Encode::encode(&mut **inner, encoder, value_out)?;
18759 } else {
18760 ::fidl_next::RawWireUnion::encode_absent(raw);
18761 }
18762
18763 Ok(())
18764 }
18765}
18766
18767impl ::fidl_next::TakeFrom<WireNodeInfoDeprecated> for NodeInfoDeprecated {
18768 #[inline]
18769 fn take_from(from: &WireNodeInfoDeprecated) -> Self {
18770 match from.raw.ordinal() {
18771 1 => Self::Service(::fidl_next::TakeFrom::take_from(unsafe {
18772 from.raw.get().deref_unchecked::<crate::WireService>()
18773 })),
18774
18775 2 => Self::File(::fidl_next::TakeFrom::take_from(unsafe {
18776 from.raw.get().deref_unchecked::<crate::WireFileObject>()
18777 })),
18778
18779 3 => Self::Directory(::fidl_next::TakeFrom::take_from(unsafe {
18780 from.raw.get().deref_unchecked::<crate::WireDirectoryObject>()
18781 })),
18782
18783 4 => Self::Symlink(::fidl_next::TakeFrom::take_from(unsafe {
18784 from.raw.get().deref_unchecked::<crate::WireSymlinkObject>()
18785 })),
18786
18787 _ => unsafe { ::core::hint::unreachable_unchecked() },
18788 }
18789 }
18790}
18791
18792impl ::fidl_next::TakeFrom<WireOptionalNodeInfoDeprecated> for Option<Box<NodeInfoDeprecated>> {
18793 #[inline]
18794 fn take_from(from: &WireOptionalNodeInfoDeprecated) -> Self {
18795 if let Some(inner) = from.as_ref() {
18796 Some(::fidl_next::TakeFrom::take_from(inner))
18797 } else {
18798 None
18799 }
18800 }
18801}
18802
18803#[repr(transparent)]
18805pub struct WireNodeInfoDeprecated {
18806 raw: ::fidl_next::RawWireUnion,
18807}
18808
18809unsafe impl ::fidl_next::ZeroPadding for WireNodeInfoDeprecated {
18810 #[inline]
18811 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
18812 ::fidl_next::munge!(let Self { raw } = out);
18813 ::fidl_next::RawWireUnion::zero_padding(raw);
18814 }
18815}
18816
18817pub mod node_info_deprecated {
18818 pub enum Ref<'union> {
18819 Service(&'union crate::WireService),
18820
18821 File(&'union crate::WireFileObject),
18822
18823 Directory(&'union crate::WireDirectoryObject),
18824
18825 Symlink(&'union crate::WireSymlinkObject),
18826 }
18827}
18828
18829impl WireNodeInfoDeprecated {
18830 pub fn as_ref(&self) -> crate::node_info_deprecated::Ref<'_> {
18831 match self.raw.ordinal() {
18832 1 => crate::node_info_deprecated::Ref::Service(unsafe {
18833 self.raw.get().deref_unchecked::<crate::WireService>()
18834 }),
18835
18836 2 => crate::node_info_deprecated::Ref::File(unsafe {
18837 self.raw.get().deref_unchecked::<crate::WireFileObject>()
18838 }),
18839
18840 3 => crate::node_info_deprecated::Ref::Directory(unsafe {
18841 self.raw.get().deref_unchecked::<crate::WireDirectoryObject>()
18842 }),
18843
18844 4 => crate::node_info_deprecated::Ref::Symlink(unsafe {
18845 self.raw.get().deref_unchecked::<crate::WireSymlinkObject>()
18846 }),
18847
18848 _ => unsafe { ::core::hint::unreachable_unchecked() },
18849 }
18850 }
18851}
18852
18853unsafe impl<___D> ::fidl_next::Decode<___D> for WireNodeInfoDeprecated
18854where
18855 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
18856
18857 ___D: ::fidl_next::Decoder,
18858
18859 ___D: ::fidl_next::fuchsia::HandleDecoder,
18860{
18861 fn decode(
18862 mut slot: ::fidl_next::Slot<'_, Self>,
18863 decoder: &mut ___D,
18864 ) -> Result<(), ::fidl_next::DecodeError> {
18865 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
18866 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
18867 1 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireService>(raw, decoder)?,
18868
18869 2 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireFileObject>(raw, decoder)?,
18870
18871 3 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireDirectoryObject>(
18872 raw, decoder,
18873 )?,
18874
18875 4 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireSymlinkObject>(
18876 raw, decoder,
18877 )?,
18878
18879 ord => return Err(::fidl_next::DecodeError::InvalidUnionOrdinal(ord as usize)),
18880 }
18881
18882 Ok(())
18883 }
18884}
18885
18886impl ::core::fmt::Debug for WireNodeInfoDeprecated {
18887 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
18888 match self.raw.ordinal() {
18889 1 => unsafe { self.raw.get().deref_unchecked::<crate::WireService>().fmt(f) },
18890 2 => unsafe { self.raw.get().deref_unchecked::<crate::WireFileObject>().fmt(f) },
18891 3 => unsafe { self.raw.get().deref_unchecked::<crate::WireDirectoryObject>().fmt(f) },
18892 4 => unsafe { self.raw.get().deref_unchecked::<crate::WireSymlinkObject>().fmt(f) },
18893 _ => unsafe { ::core::hint::unreachable_unchecked() },
18894 }
18895 }
18896}
18897
18898#[repr(transparent)]
18899pub struct WireOptionalNodeInfoDeprecated {
18900 raw: ::fidl_next::RawWireUnion,
18901}
18902
18903unsafe impl ::fidl_next::ZeroPadding for WireOptionalNodeInfoDeprecated {
18904 #[inline]
18905 fn zero_padding(out: &mut ::core::mem::MaybeUninit<Self>) {
18906 ::fidl_next::munge!(let Self { raw } = out);
18907 ::fidl_next::RawWireUnion::zero_padding(raw);
18908 }
18909}
18910
18911impl WireOptionalNodeInfoDeprecated {
18912 pub fn is_some(&self) -> bool {
18913 self.raw.is_some()
18914 }
18915
18916 pub fn is_none(&self) -> bool {
18917 self.raw.is_none()
18918 }
18919
18920 pub fn as_ref(&self) -> Option<&WireNodeInfoDeprecated> {
18921 if self.is_some() {
18922 Some(unsafe { &*(self as *const Self).cast() })
18923 } else {
18924 None
18925 }
18926 }
18927}
18928
18929unsafe impl<___D> ::fidl_next::Decode<___D> for WireOptionalNodeInfoDeprecated
18930where
18931 ___D: ::fidl_next::decoder::InternalHandleDecoder + ?Sized,
18932
18933 ___D: ::fidl_next::Decoder,
18934
18935 ___D: ::fidl_next::fuchsia::HandleDecoder,
18936{
18937 fn decode(
18938 mut slot: ::fidl_next::Slot<'_, Self>,
18939 decoder: &mut ___D,
18940 ) -> Result<(), ::fidl_next::DecodeError> {
18941 ::fidl_next::munge!(let Self { mut raw } = slot.as_mut());
18942 match ::fidl_next::RawWireUnion::encoded_ordinal(raw.as_mut()) {
18943 1 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireService>(raw, decoder)?,
18944
18945 2 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireFileObject>(raw, decoder)?,
18946
18947 3 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireDirectoryObject>(
18948 raw, decoder,
18949 )?,
18950
18951 4 => ::fidl_next::RawWireUnion::decode_as::<___D, crate::WireSymlinkObject>(
18952 raw, decoder,
18953 )?,
18954
18955 0 => ::fidl_next::RawWireUnion::decode_absent(raw)?,
18956 _ => ::fidl_next::RawWireUnion::decode_unknown(raw, decoder)?,
18957 }
18958
18959 Ok(())
18960 }
18961}
18962
18963impl ::core::fmt::Debug for WireOptionalNodeInfoDeprecated {
18964 fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
18965 self.as_ref().fmt(f)
18966 }
18967}
18968
18969#[doc = " Flags used when opening a node reference must fall within this mask.\n"]
18970pub const OPEN_FLAGS_ALLOWED_WITH_NODE_REFERENCE: crate::OpenFlags =
18971 crate::OpenFlags::from_bits_retain(46661632);
18972
18973#[doc = " All known rights.\n"]
18974pub const OPEN_RIGHTS: crate::OpenFlags = crate::OpenFlags::from_bits_retain(11);
18975
18976#[doc = " Set of permissions that are expected when opening a node as executable.\n"]
18977pub const PERM_EXECUTABLE: crate::Flags = crate::Flags::from_bits_retain(201);
18978
18979#[doc = " Set of permissions that are expected when opening a node as readable.\n"]
18980pub const PERM_READABLE: crate::Flags = crate::Flags::from_bits_retain(211);
18981
18982#[doc = " Set of permissions that are expected when opening a node as writable.\n"]
18983pub const PERM_WRITABLE: crate::Flags = crate::Flags::from_bits_retain(485);
18984
18985#[doc = " Alias for directory permission alias rw*\n"]
18986pub const RW_STAR_DIR: crate::Operations = crate::Operations::from_bits_retain(503);
18987
18988#[doc = " Alias for directory permission alias rx*\n"]
18989pub const RX_STAR_DIR: crate::Operations = crate::Operations::from_bits_retain(219);
18990
18991#[doc = " Alias for directory permission alias r*\n"]
18992pub const R_STAR_DIR: crate::Operations = crate::Operations::from_bits_retain(211);
18993
18994#[doc = " The name of the extended attribute accessible via the SELinux context attribute.\n"]
18995pub const SELINUX_CONTEXT_NAME: &str = "security.selinux";
18996
18997pub const SYMLINK_PROTOCOL_NAME: &str = "fuchsia.io/Symlink";
18998
18999#[doc = " A [\'Node\'] which contains a symbolic link.\n"]
19001#[derive(Debug)]
19002pub struct Symlink;
19003
19004impl ::fidl_next::Discoverable for Symlink {
19005 const PROTOCOL_NAME: &'static str = "symlink";
19006}
19007
19008pub mod symlink {
19009 pub mod prelude {
19010 pub use crate::{
19011 symlink, Symlink, SymlinkClientHandler, SymlinkClientSender, SymlinkServerHandler,
19012 SymlinkServerSender,
19013 };
19014
19015 pub use crate::ConnectionInfo;
19016
19017 pub use crate::ExtendedAttributeValue;
19018
19019 pub use crate::LinkableLinkIntoRequest;
19020
19021 pub use crate::LinkableLinkIntoResponse;
19022
19023 pub use crate::MutableNodeAttributes;
19024
19025 pub use crate::NodeAttributes2;
19026
19027 pub use crate::NodeDeprecatedCloneRequest;
19028
19029 pub use crate::NodeDeprecatedGetFlagsResponse;
19030
19031 pub use crate::NodeDeprecatedSetFlagsRequest;
19032
19033 pub use crate::NodeDeprecatedSetFlagsResponse;
19034
19035 pub use crate::NodeGetAttrResponse;
19036
19037 pub use crate::NodeGetAttributesRequest;
19038
19039 pub use crate::NodeGetExtendedAttributeRequest;
19040
19041 pub use crate::NodeListExtendedAttributesRequest;
19042
19043 pub use crate::NodeOnOpenRequest;
19044
19045 pub use crate::NodeQueryFilesystemResponse;
19046
19047 pub use crate::NodeRemoveExtendedAttributeRequest;
19048
19049 pub use crate::NodeSetAttrRequest;
19050
19051 pub use crate::NodeSetAttrResponse;
19052
19053 pub use crate::NodeSetExtendedAttributeRequest;
19054
19055 pub use crate::NodeSetFlagsRequest;
19056
19057 pub use crate::NodeGetFlagsResponse;
19058
19059 pub use crate::NodeRemoveExtendedAttributeResponse;
19060
19061 pub use crate::NodeSetExtendedAttributeResponse;
19062
19063 pub use crate::NodeSetFlagsResponse;
19064
19065 pub use crate::NodeSyncResponse;
19066
19067 pub use crate::NodeUpdateAttributesResponse;
19068
19069 pub use crate::Representation;
19070
19071 pub use crate::SymlinkInfo;
19072
19073 pub use ::fidl_next_fuchsia_unknown::CloneableCloneRequest;
19074
19075 pub use ::fidl_next_fuchsia_unknown::CloseableCloseResponse;
19076
19077 pub use ::fidl_next_fuchsia_unknown::QueryableQueryResponse;
19078 }
19079
19080 pub struct LinkInto;
19081
19082 impl ::fidl_next::Method for LinkInto {
19083 const ORDINAL: u64 = 6121399674497678964;
19084
19085 type Protocol = crate::Symlink;
19086
19087 type Request = crate::WireLinkableLinkIntoRequest;
19088
19089 type Response =
19090 ::fidl_next::WireResult<crate::WireLinkableLinkIntoResponse, ::fidl_next::WireI32>;
19091 }
19092
19093 pub struct Clone;
19094
19095 impl ::fidl_next::Method for Clone {
19096 const ORDINAL: u64 = 2366825959783828089;
19097
19098 type Protocol = crate::Symlink;
19099
19100 type Request = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest;
19101
19102 type Response = ::fidl_next::Never;
19103 }
19104
19105 pub struct Close;
19106
19107 impl ::fidl_next::Method for Close {
19108 const ORDINAL: u64 = 6540867515453498750;
19109
19110 type Protocol = crate::Symlink;
19111
19112 type Request = ();
19113
19114 type Response = ::fidl_next::WireResult<
19115 ::fidl_next_fuchsia_unknown::WireCloseableCloseResponse,
19116 ::fidl_next::WireI32,
19117 >;
19118 }
19119
19120 pub struct Query;
19121
19122 impl ::fidl_next::Method for Query {
19123 const ORDINAL: u64 = 2763219980499352582;
19124
19125 type Protocol = crate::Symlink;
19126
19127 type Request = ();
19128
19129 type Response = ::fidl_next_fuchsia_unknown::WireQueryableQueryResponse;
19130 }
19131
19132 pub struct DeprecatedClone;
19133
19134 impl ::fidl_next::Method for DeprecatedClone {
19135 const ORDINAL: u64 = 6512600400724287855;
19136
19137 type Protocol = crate::Symlink;
19138
19139 type Request = crate::WireNodeDeprecatedCloneRequest;
19140
19141 type Response = ::fidl_next::Never;
19142 }
19143
19144 pub struct OnOpen;
19145
19146 impl ::fidl_next::Method for OnOpen {
19147 const ORDINAL: u64 = 9207534335756671346;
19148
19149 type Protocol = crate::Symlink;
19150
19151 type Request = ::fidl_next::Never;
19152
19153 type Response = crate::WireNodeOnOpenRequest;
19154 }
19155
19156 pub struct GetAttr;
19157
19158 impl ::fidl_next::Method for GetAttr {
19159 const ORDINAL: u64 = 8689798978500614909;
19160
19161 type Protocol = crate::Symlink;
19162
19163 type Request = ();
19164
19165 type Response = crate::WireNodeGetAttrResponse;
19166 }
19167
19168 pub struct SetAttr;
19169
19170 impl ::fidl_next::Method for SetAttr {
19171 const ORDINAL: u64 = 4721673413776871238;
19172
19173 type Protocol = crate::Symlink;
19174
19175 type Request = crate::WireNodeSetAttrRequest;
19176
19177 type Response = crate::WireNodeSetAttrResponse;
19178 }
19179
19180 pub struct DeprecatedGetFlags;
19181
19182 impl ::fidl_next::Method for DeprecatedGetFlags {
19183 const ORDINAL: u64 = 6595803110182632097;
19184
19185 type Protocol = crate::Symlink;
19186
19187 type Request = ();
19188
19189 type Response = crate::WireNodeDeprecatedGetFlagsResponse;
19190 }
19191
19192 pub struct DeprecatedSetFlags;
19193
19194 impl ::fidl_next::Method for DeprecatedSetFlags {
19195 const ORDINAL: u64 = 5950864159036794675;
19196
19197 type Protocol = crate::Symlink;
19198
19199 type Request = crate::WireNodeDeprecatedSetFlagsRequest;
19200
19201 type Response = crate::WireNodeDeprecatedSetFlagsResponse;
19202 }
19203
19204 pub struct GetFlags;
19205
19206 impl ::fidl_next::Method for GetFlags {
19207 const ORDINAL: u64 = 105530239381466147;
19208
19209 type Protocol = crate::Symlink;
19210
19211 type Request = ();
19212
19213 type Response =
19214 ::fidl_next::WireFlexibleResult<crate::WireNodeGetFlagsResponse, ::fidl_next::WireI32>;
19215 }
19216
19217 pub struct SetFlags;
19218
19219 impl ::fidl_next::Method for SetFlags {
19220 const ORDINAL: u64 = 6172186066099445416;
19221
19222 type Protocol = crate::Symlink;
19223
19224 type Request = crate::WireNodeSetFlagsRequest;
19225
19226 type Response =
19227 ::fidl_next::WireFlexibleResult<crate::WireNodeSetFlagsResponse, ::fidl_next::WireI32>;
19228 }
19229
19230 pub struct QueryFilesystem;
19231
19232 impl ::fidl_next::Method for QueryFilesystem {
19233 const ORDINAL: u64 = 8013111122914313744;
19234
19235 type Protocol = crate::Symlink;
19236
19237 type Request = ();
19238
19239 type Response = crate::WireNodeQueryFilesystemResponse;
19240 }
19241
19242 pub struct OnRepresentation;
19243
19244 impl ::fidl_next::Method for OnRepresentation {
19245 const ORDINAL: u64 = 6679970090861613324;
19246
19247 type Protocol = crate::Symlink;
19248
19249 type Request = ::fidl_next::Never;
19250
19251 type Response = crate::WireRepresentation;
19252 }
19253
19254 pub struct GetConnectionInfo;
19255
19256 impl ::fidl_next::Method for GetConnectionInfo {
19257 const ORDINAL: u64 = 6362521381364198667;
19258
19259 type Protocol = crate::Symlink;
19260
19261 type Request = ();
19262
19263 type Response = crate::WireConnectionInfo;
19264 }
19265
19266 pub struct GetAttributes;
19267
19268 impl ::fidl_next::Method for GetAttributes {
19269 const ORDINAL: u64 = 4414537700416816443;
19270
19271 type Protocol = crate::Symlink;
19272
19273 type Request = crate::WireNodeGetAttributesRequest;
19274
19275 type Response = ::fidl_next::WireResult<crate::WireNodeAttributes2, ::fidl_next::WireI32>;
19276 }
19277
19278 pub struct UpdateAttributes;
19279
19280 impl ::fidl_next::Method for UpdateAttributes {
19281 const ORDINAL: u64 = 3677402239314018056;
19282
19283 type Protocol = crate::Symlink;
19284
19285 type Request = crate::WireMutableNodeAttributes;
19286
19287 type Response =
19288 ::fidl_next::WireResult<crate::WireNodeUpdateAttributesResponse, ::fidl_next::WireI32>;
19289 }
19290
19291 pub struct Sync;
19292
19293 impl ::fidl_next::Method for Sync {
19294 const ORDINAL: u64 = 3196473584242777161;
19295
19296 type Protocol = crate::Symlink;
19297
19298 type Request = ();
19299
19300 type Response = ::fidl_next::WireResult<crate::WireNodeSyncResponse, ::fidl_next::WireI32>;
19301 }
19302
19303 pub struct ListExtendedAttributes;
19304
19305 impl ::fidl_next::Method for ListExtendedAttributes {
19306 const ORDINAL: u64 = 5431626189872037072;
19307
19308 type Protocol = crate::Symlink;
19309
19310 type Request = crate::WireNodeListExtendedAttributesRequest;
19311
19312 type Response = ::fidl_next::Never;
19313 }
19314
19315 pub struct GetExtendedAttribute;
19316
19317 impl ::fidl_next::Method for GetExtendedAttribute {
19318 const ORDINAL: u64 = 5043930208506967771;
19319
19320 type Protocol = crate::Symlink;
19321
19322 type Request = crate::WireNodeGetExtendedAttributeRequest;
19323
19324 type Response =
19325 ::fidl_next::WireResult<crate::WireExtendedAttributeValue, ::fidl_next::WireI32>;
19326 }
19327
19328 pub struct SetExtendedAttribute;
19329
19330 impl ::fidl_next::Method for SetExtendedAttribute {
19331 const ORDINAL: u64 = 5374223046099989052;
19332
19333 type Protocol = crate::Symlink;
19334
19335 type Request = crate::WireNodeSetExtendedAttributeRequest;
19336
19337 type Response = ::fidl_next::WireResult<
19338 crate::WireNodeSetExtendedAttributeResponse,
19339 ::fidl_next::WireI32,
19340 >;
19341 }
19342
19343 pub struct RemoveExtendedAttribute;
19344
19345 impl ::fidl_next::Method for RemoveExtendedAttribute {
19346 const ORDINAL: u64 = 8794297771444732717;
19347
19348 type Protocol = crate::Symlink;
19349
19350 type Request = crate::WireNodeRemoveExtendedAttributeRequest;
19351
19352 type Response = ::fidl_next::WireResult<
19353 crate::WireNodeRemoveExtendedAttributeResponse,
19354 ::fidl_next::WireI32,
19355 >;
19356 }
19357
19358 pub struct Describe;
19359
19360 impl ::fidl_next::Method for Describe {
19361 const ORDINAL: u64 = 8371117097481679347;
19362
19363 type Protocol = crate::Symlink;
19364
19365 type Request = ();
19366
19367 type Response = ::fidl_next::WireFlexible<crate::WireSymlinkInfo>;
19368 }
19369}
19370
19371pub trait SymlinkClientSender {
19373 type Transport: ::fidl_next::Transport;
19374
19375 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
19376 fn link_into<___R>(
19377 &self,
19378 request: &mut ___R,
19379 ) -> Result<
19380 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::LinkInto>,
19381 ::fidl_next::EncodeError,
19382 >
19383 where
19384 ___R: ::fidl_next::Encode<
19385 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19386 Encoded = crate::WireLinkableLinkIntoRequest,
19387 >;
19388
19389 fn clone<___R>(
19390 &self,
19391 request: &mut ___R,
19392 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
19393 where
19394 ___R: ::fidl_next::Encode<
19395 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19396 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
19397 >;
19398
19399 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
19400 fn close(
19401 &self,
19402 ) -> Result<
19403 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Close>,
19404 ::fidl_next::EncodeError,
19405 >;
19406
19407 fn query(
19408 &self,
19409 ) -> Result<
19410 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Query>,
19411 ::fidl_next::EncodeError,
19412 >;
19413
19414 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
19415 fn deprecated_clone<___R>(
19416 &self,
19417 request: &mut ___R,
19418 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
19419 where
19420 ___R: ::fidl_next::Encode<
19421 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19422 Encoded = crate::WireNodeDeprecatedCloneRequest,
19423 >;
19424
19425 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
19426 fn get_attr(
19427 &self,
19428 ) -> Result<
19429 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetAttr>,
19430 ::fidl_next::EncodeError,
19431 >;
19432
19433 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
19434 fn set_attr<___R>(
19435 &self,
19436 request: &mut ___R,
19437 ) -> Result<
19438 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::SetAttr>,
19439 ::fidl_next::EncodeError,
19440 >
19441 where
19442 ___R: ::fidl_next::Encode<
19443 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19444 Encoded = crate::WireNodeSetAttrRequest,
19445 >;
19446
19447 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
19448 fn deprecated_get_flags(
19449 &self,
19450 ) -> Result<
19451 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::DeprecatedGetFlags>,
19452 ::fidl_next::EncodeError,
19453 >;
19454
19455 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
19456 fn deprecated_set_flags<___R>(
19457 &self,
19458 request: &mut ___R,
19459 ) -> Result<
19460 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::DeprecatedSetFlags>,
19461 ::fidl_next::EncodeError,
19462 >
19463 where
19464 ___R: ::fidl_next::Encode<
19465 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19466 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
19467 >;
19468
19469 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
19470 fn get_flags(
19471 &self,
19472 ) -> Result<
19473 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetFlags>,
19474 ::fidl_next::EncodeError,
19475 >;
19476
19477 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
19478 fn set_flags<___R>(
19479 &self,
19480 request: &mut ___R,
19481 ) -> Result<
19482 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::SetFlags>,
19483 ::fidl_next::EncodeError,
19484 >
19485 where
19486 ___R: ::fidl_next::Encode<
19487 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19488 Encoded = crate::WireNodeSetFlagsRequest,
19489 >;
19490
19491 #[doc = " Query the filesystem for filesystem-specific information.\n"]
19492 fn query_filesystem(
19493 &self,
19494 ) -> Result<
19495 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::QueryFilesystem>,
19496 ::fidl_next::EncodeError,
19497 >;
19498
19499 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
19500 fn get_connection_info(
19501 &self,
19502 ) -> Result<
19503 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetConnectionInfo>,
19504 ::fidl_next::EncodeError,
19505 >;
19506
19507 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
19508 fn get_attributes<___R>(
19509 &self,
19510 request: &mut ___R,
19511 ) -> Result<
19512 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetAttributes>,
19513 ::fidl_next::EncodeError,
19514 >
19515 where
19516 ___R: ::fidl_next::Encode<
19517 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19518 Encoded = crate::WireNodeGetAttributesRequest,
19519 >;
19520
19521 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
19522 fn update_attributes<___R>(
19523 &self,
19524 request: &mut ___R,
19525 ) -> Result<
19526 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::UpdateAttributes>,
19527 ::fidl_next::EncodeError,
19528 >
19529 where
19530 ___R: ::fidl_next::Encode<
19531 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19532 Encoded = crate::WireMutableNodeAttributes,
19533 >;
19534
19535 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
19536 fn sync(
19537 &self,
19538 ) -> Result<
19539 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Sync>,
19540 ::fidl_next::EncodeError,
19541 >;
19542
19543 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
19544 fn list_extended_attributes<___R>(
19545 &self,
19546 request: &mut ___R,
19547 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
19548 where
19549 ___R: ::fidl_next::Encode<
19550 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19551 Encoded = crate::WireNodeListExtendedAttributesRequest,
19552 >;
19553
19554 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
19555 fn get_extended_attribute<___R>(
19556 &self,
19557 request: &mut ___R,
19558 ) -> Result<
19559 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetExtendedAttribute>,
19560 ::fidl_next::EncodeError,
19561 >
19562 where
19563 ___R: ::fidl_next::Encode<
19564 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19565 Encoded = crate::WireNodeGetExtendedAttributeRequest,
19566 >;
19567
19568 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
19569 fn set_extended_attribute<___R>(
19570 &self,
19571 request: &mut ___R,
19572 ) -> Result<
19573 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::SetExtendedAttribute>,
19574 ::fidl_next::EncodeError,
19575 >
19576 where
19577 ___R: ::fidl_next::Encode<
19578 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19579 Encoded = crate::WireNodeSetExtendedAttributeRequest,
19580 >;
19581
19582 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
19583 fn remove_extended_attribute<___R>(
19584 &self,
19585 request: &mut ___R,
19586 ) -> Result<
19587 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::RemoveExtendedAttribute>,
19588 ::fidl_next::EncodeError,
19589 >
19590 where
19591 ___R: ::fidl_next::Encode<
19592 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19593 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
19594 >;
19595
19596 fn describe(
19597 &self,
19598 ) -> Result<
19599 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Describe>,
19600 ::fidl_next::EncodeError,
19601 >;
19602}
19603
19604impl<___T> SymlinkClientSender for ::fidl_next::ClientSender<___T, Symlink>
19605where
19606 ___T: ::fidl_next::Transport,
19607{
19608 type Transport = ___T;
19609
19610 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
19611 fn link_into<___R>(
19612 &self,
19613 request: &mut ___R,
19614 ) -> Result<
19615 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::LinkInto>,
19616 ::fidl_next::EncodeError,
19617 >
19618 where
19619 ___R: ::fidl_next::Encode<
19620 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19621 Encoded = crate::WireLinkableLinkIntoRequest,
19622 >,
19623 {
19624 self.as_untyped()
19625 .send_two_way(6121399674497678964, request)
19626 .map(::fidl_next::ResponseFuture::from_untyped)
19627 }
19628
19629 fn clone<___R>(
19630 &self,
19631 request: &mut ___R,
19632 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
19633 where
19634 ___R: ::fidl_next::Encode<
19635 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19636 Encoded = ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest,
19637 >,
19638 {
19639 self.as_untyped().send_one_way(2366825959783828089, request)
19640 }
19641
19642 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
19643 fn close(
19644 &self,
19645 ) -> Result<
19646 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Close>,
19647 ::fidl_next::EncodeError,
19648 > {
19649 self.as_untyped()
19650 .send_two_way(6540867515453498750, &mut ())
19651 .map(::fidl_next::ResponseFuture::from_untyped)
19652 }
19653
19654 fn query(
19655 &self,
19656 ) -> Result<
19657 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Query>,
19658 ::fidl_next::EncodeError,
19659 > {
19660 self.as_untyped()
19661 .send_two_way(2763219980499352582, &mut ())
19662 .map(::fidl_next::ResponseFuture::from_untyped)
19663 }
19664
19665 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
19666 fn deprecated_clone<___R>(
19667 &self,
19668 request: &mut ___R,
19669 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
19670 where
19671 ___R: ::fidl_next::Encode<
19672 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19673 Encoded = crate::WireNodeDeprecatedCloneRequest,
19674 >,
19675 {
19676 self.as_untyped().send_one_way(6512600400724287855, request)
19677 }
19678
19679 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
19680 fn get_attr(
19681 &self,
19682 ) -> Result<
19683 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetAttr>,
19684 ::fidl_next::EncodeError,
19685 > {
19686 self.as_untyped()
19687 .send_two_way(8689798978500614909, &mut ())
19688 .map(::fidl_next::ResponseFuture::from_untyped)
19689 }
19690
19691 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
19692 fn set_attr<___R>(
19693 &self,
19694 request: &mut ___R,
19695 ) -> Result<
19696 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::SetAttr>,
19697 ::fidl_next::EncodeError,
19698 >
19699 where
19700 ___R: ::fidl_next::Encode<
19701 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19702 Encoded = crate::WireNodeSetAttrRequest,
19703 >,
19704 {
19705 self.as_untyped()
19706 .send_two_way(4721673413776871238, request)
19707 .map(::fidl_next::ResponseFuture::from_untyped)
19708 }
19709
19710 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
19711 fn deprecated_get_flags(
19712 &self,
19713 ) -> Result<
19714 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::DeprecatedGetFlags>,
19715 ::fidl_next::EncodeError,
19716 > {
19717 self.as_untyped()
19718 .send_two_way(6595803110182632097, &mut ())
19719 .map(::fidl_next::ResponseFuture::from_untyped)
19720 }
19721
19722 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
19723 fn deprecated_set_flags<___R>(
19724 &self,
19725 request: &mut ___R,
19726 ) -> Result<
19727 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::DeprecatedSetFlags>,
19728 ::fidl_next::EncodeError,
19729 >
19730 where
19731 ___R: ::fidl_next::Encode<
19732 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19733 Encoded = crate::WireNodeDeprecatedSetFlagsRequest,
19734 >,
19735 {
19736 self.as_untyped()
19737 .send_two_way(5950864159036794675, request)
19738 .map(::fidl_next::ResponseFuture::from_untyped)
19739 }
19740
19741 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
19742 fn get_flags(
19743 &self,
19744 ) -> Result<
19745 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetFlags>,
19746 ::fidl_next::EncodeError,
19747 > {
19748 self.as_untyped()
19749 .send_two_way(105530239381466147, &mut ())
19750 .map(::fidl_next::ResponseFuture::from_untyped)
19751 }
19752
19753 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
19754 fn set_flags<___R>(
19755 &self,
19756 request: &mut ___R,
19757 ) -> Result<
19758 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::SetFlags>,
19759 ::fidl_next::EncodeError,
19760 >
19761 where
19762 ___R: ::fidl_next::Encode<
19763 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19764 Encoded = crate::WireNodeSetFlagsRequest,
19765 >,
19766 {
19767 self.as_untyped()
19768 .send_two_way(6172186066099445416, request)
19769 .map(::fidl_next::ResponseFuture::from_untyped)
19770 }
19771
19772 #[doc = " Query the filesystem for filesystem-specific information.\n"]
19773 fn query_filesystem(
19774 &self,
19775 ) -> Result<
19776 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::QueryFilesystem>,
19777 ::fidl_next::EncodeError,
19778 > {
19779 self.as_untyped()
19780 .send_two_way(8013111122914313744, &mut ())
19781 .map(::fidl_next::ResponseFuture::from_untyped)
19782 }
19783
19784 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
19785 fn get_connection_info(
19786 &self,
19787 ) -> Result<
19788 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetConnectionInfo>,
19789 ::fidl_next::EncodeError,
19790 > {
19791 self.as_untyped()
19792 .send_two_way(6362521381364198667, &mut ())
19793 .map(::fidl_next::ResponseFuture::from_untyped)
19794 }
19795
19796 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
19797 fn get_attributes<___R>(
19798 &self,
19799 request: &mut ___R,
19800 ) -> Result<
19801 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetAttributes>,
19802 ::fidl_next::EncodeError,
19803 >
19804 where
19805 ___R: ::fidl_next::Encode<
19806 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19807 Encoded = crate::WireNodeGetAttributesRequest,
19808 >,
19809 {
19810 self.as_untyped()
19811 .send_two_way(4414537700416816443, request)
19812 .map(::fidl_next::ResponseFuture::from_untyped)
19813 }
19814
19815 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
19816 fn update_attributes<___R>(
19817 &self,
19818 request: &mut ___R,
19819 ) -> Result<
19820 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::UpdateAttributes>,
19821 ::fidl_next::EncodeError,
19822 >
19823 where
19824 ___R: ::fidl_next::Encode<
19825 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19826 Encoded = crate::WireMutableNodeAttributes,
19827 >,
19828 {
19829 self.as_untyped()
19830 .send_two_way(3677402239314018056, request)
19831 .map(::fidl_next::ResponseFuture::from_untyped)
19832 }
19833
19834 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
19835 fn sync(
19836 &self,
19837 ) -> Result<
19838 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Sync>,
19839 ::fidl_next::EncodeError,
19840 > {
19841 self.as_untyped()
19842 .send_two_way(3196473584242777161, &mut ())
19843 .map(::fidl_next::ResponseFuture::from_untyped)
19844 }
19845
19846 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
19847 fn list_extended_attributes<___R>(
19848 &self,
19849 request: &mut ___R,
19850 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
19851 where
19852 ___R: ::fidl_next::Encode<
19853 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19854 Encoded = crate::WireNodeListExtendedAttributesRequest,
19855 >,
19856 {
19857 self.as_untyped().send_one_way(5431626189872037072, request)
19858 }
19859
19860 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
19861 fn get_extended_attribute<___R>(
19862 &self,
19863 request: &mut ___R,
19864 ) -> Result<
19865 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::GetExtendedAttribute>,
19866 ::fidl_next::EncodeError,
19867 >
19868 where
19869 ___R: ::fidl_next::Encode<
19870 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19871 Encoded = crate::WireNodeGetExtendedAttributeRequest,
19872 >,
19873 {
19874 self.as_untyped()
19875 .send_two_way(5043930208506967771, request)
19876 .map(::fidl_next::ResponseFuture::from_untyped)
19877 }
19878
19879 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
19880 fn set_extended_attribute<___R>(
19881 &self,
19882 request: &mut ___R,
19883 ) -> Result<
19884 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::SetExtendedAttribute>,
19885 ::fidl_next::EncodeError,
19886 >
19887 where
19888 ___R: ::fidl_next::Encode<
19889 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19890 Encoded = crate::WireNodeSetExtendedAttributeRequest,
19891 >,
19892 {
19893 self.as_untyped()
19894 .send_two_way(5374223046099989052, request)
19895 .map(::fidl_next::ResponseFuture::from_untyped)
19896 }
19897
19898 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
19899 fn remove_extended_attribute<___R>(
19900 &self,
19901 request: &mut ___R,
19902 ) -> Result<
19903 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::RemoveExtendedAttribute>,
19904 ::fidl_next::EncodeError,
19905 >
19906 where
19907 ___R: ::fidl_next::Encode<
19908 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
19909 Encoded = crate::WireNodeRemoveExtendedAttributeRequest,
19910 >,
19911 {
19912 self.as_untyped()
19913 .send_two_way(8794297771444732717, request)
19914 .map(::fidl_next::ResponseFuture::from_untyped)
19915 }
19916
19917 fn describe(
19918 &self,
19919 ) -> Result<
19920 ::fidl_next::ResponseFuture<'_, Self::Transport, symlink::Describe>,
19921 ::fidl_next::EncodeError,
19922 > {
19923 self.as_untyped()
19924 .send_two_way(8371117097481679347, &mut ())
19925 .map(::fidl_next::ResponseFuture::from_untyped)
19926 }
19927}
19928
19929pub trait SymlinkClientHandler<___T: ::fidl_next::Transport> {
19933 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
19934 fn on_open(
19935 &mut self,
19936 sender: &::fidl_next::ClientSender<___T, Symlink>,
19937
19938 message: ::fidl_next::ResponseBuffer<___T, symlink::OnOpen>,
19939 );
19940
19941 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
19942 fn on_representation(
19943 &mut self,
19944 sender: &::fidl_next::ClientSender<___T, Symlink>,
19945
19946 message: ::fidl_next::ResponseBuffer<___T, symlink::OnRepresentation>,
19947 );
19948
19949 fn on_unknown_interaction(
19950 &mut self,
19951 sender: &::fidl_next::ClientSender<___T, Symlink>,
19952 ordinal: u64,
19953 ) {
19954 sender.close();
19955 }
19956}
19957
19958impl<___T, ___H> ::fidl_next::ClientProtocol<___T, ___H> for Symlink
19959where
19960 ___T: ::fidl_next::Transport,
19961 ___H: SymlinkClientHandler<___T>,
19962
19963 <symlink::LinkInto as ::fidl_next::Method>::Response:
19964 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19965
19966 <symlink::Close as ::fidl_next::Method>::Response:
19967 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19968
19969 <symlink::Query as ::fidl_next::Method>::Response:
19970 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19971
19972 <symlink::OnOpen as ::fidl_next::Method>::Response:
19973 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19974
19975 <symlink::GetAttr as ::fidl_next::Method>::Response:
19976 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19977
19978 <symlink::SetAttr as ::fidl_next::Method>::Response:
19979 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19980
19981 <symlink::DeprecatedGetFlags as ::fidl_next::Method>::Response:
19982 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19983
19984 <symlink::DeprecatedSetFlags as ::fidl_next::Method>::Response:
19985 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19986
19987 <symlink::GetFlags as ::fidl_next::Method>::Response:
19988 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19989
19990 <symlink::SetFlags as ::fidl_next::Method>::Response:
19991 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19992
19993 <symlink::QueryFilesystem as ::fidl_next::Method>::Response:
19994 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19995
19996 <symlink::OnRepresentation as ::fidl_next::Method>::Response:
19997 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
19998
19999 <symlink::GetConnectionInfo as ::fidl_next::Method>::Response:
20000 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20001
20002 <symlink::GetAttributes as ::fidl_next::Method>::Response:
20003 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20004
20005 <symlink::UpdateAttributes as ::fidl_next::Method>::Response:
20006 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20007
20008 <symlink::Sync as ::fidl_next::Method>::Response:
20009 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20010
20011 <symlink::GetExtendedAttribute as ::fidl_next::Method>::Response:
20012 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20013
20014 <symlink::SetExtendedAttribute as ::fidl_next::Method>::Response:
20015 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20016
20017 <symlink::RemoveExtendedAttribute as ::fidl_next::Method>::Response:
20018 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20019
20020 <symlink::Describe as ::fidl_next::Method>::Response:
20021 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20022{
20023 fn on_event(
20024 handler: &mut ___H,
20025 sender: &::fidl_next::ClientSender<___T, Self>,
20026 ordinal: u64,
20027 buffer: ___T::RecvBuffer,
20028 ) {
20029 match ordinal {
20030 9207534335756671346 => {
20031 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
20032 handler.on_open(sender, buffer);
20033 }
20034
20035 6679970090861613324 => {
20036 let buffer = ::fidl_next::ResponseBuffer::from_untyped(buffer);
20037 handler.on_representation(sender, buffer);
20038 }
20039
20040 ordinal => handler.on_unknown_interaction(sender, ordinal),
20041 }
20042 }
20043}
20044
20045pub trait SymlinkServerSender {
20047 type Transport: ::fidl_next::Transport;
20048
20049 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
20050
20051 fn on_open<___R>(
20052 &self,
20053 request: &mut ___R,
20054 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
20055 where
20056 ___R: ::fidl_next::Encode<
20057 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
20058 Encoded = <symlink::OnOpen as ::fidl_next::Method>::Response,
20059 >;
20060
20061 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
20062
20063 fn on_representation<___R>(
20064 &self,
20065 request: &mut ___R,
20066 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
20067 where
20068 ___R: ::fidl_next::Encode<
20069 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
20070 Encoded = <symlink::OnRepresentation as ::fidl_next::Method>::Response,
20071 >;
20072}
20073
20074impl<___T> SymlinkServerSender for ::fidl_next::ServerSender<___T, Symlink>
20075where
20076 ___T: ::fidl_next::Transport,
20077{
20078 type Transport = ___T;
20079
20080 #[doc = " An event produced eagerly by a FIDL server if requested by `OpenFlags.DESCRIBE`.\n\n Indicates the success or failure of the open operation, and optionally describes the\n object. If the status is `ZX_OK`, `info` contains descriptive information about the object\n (the same as would be returned by `Describe`).\n"]
20081
20082 fn on_open<___R>(
20083 &self,
20084 request: &mut ___R,
20085 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
20086 where
20087 ___R: ::fidl_next::Encode<
20088 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
20089 Encoded = <symlink::OnOpen as ::fidl_next::Method>::Response,
20090 >,
20091 {
20092 self.as_untyped().send_event(9207534335756671346, request)
20093 }
20094
20095 #[doc = " An event produced eagerly by the server if requested by [`Flags.FLAG_SEND_REPRESENTATION`].\n This event will be sent as the first message from the server, and is sent exactly once.\n\n The active variant corresponds to the negotiated protocol for the target node (i.e. the\n protocol which this channel now speaks). Additionally, auxiliary handles and requested\n attributes are also returned in the event.\n"]
20096
20097 fn on_representation<___R>(
20098 &self,
20099 request: &mut ___R,
20100 ) -> Result<::fidl_next::SendFuture<'_, Self::Transport>, ::fidl_next::EncodeError>
20101 where
20102 ___R: ::fidl_next::Encode<
20103 <Self::Transport as ::fidl_next::Transport>::SendBuffer,
20104 Encoded = <symlink::OnRepresentation as ::fidl_next::Method>::Response,
20105 >,
20106 {
20107 self.as_untyped().send_event(6679970090861613324, request)
20108 }
20109}
20110
20111pub trait SymlinkServerHandler<___T: ::fidl_next::Transport> {
20115 #[doc = " Creates a link to this this object with name `dst` in the directory represented by\n `dst_parent_token`.\n\n `dst` must be a resolved object name. Including \"/\" in the string will return\n `ZX_ERR_INVALID_ARGS`.\n\n This method requires the maximal set of rights supported by the filesystem for this object.\n For files this would typically be [`Rights.READ_BYTES`], [`Rights.WRITE_BYTES`],\n [`Rights.GET_ATTRIBUTES`] and [`Rights.UPDATE_ATTRIBUTES`]. Some filesystems might also\n support the [`Rights.EXECUTE`] right. Insufficient rights will result in\n `ZX_ERR_ACCESS_DENIED`.\n\n If this object has no links and is *NOT* an unnamed temporary object (objects opened with\n `Flags.FLAG_CREATE_AS_UNNAMED_TEMPORARY`), it will fail with `ZX_ERR_NOT_FOUND`.\n\n For unnamed temporary objects, use LinkInto to give it a name. Upon successful completion,\n the object will be permanently linked to the filesystem. Requires that the unnamed temporary\n object is linkable, if not, it will fail with `ZX_ERR_NOT_FOUND`.\n\n This method does not have the same atomicity properties has the `Directory::Link` method,\n which means that calling `Open` then `LinkInto` is not equivalent to `Directory::Link`\n because `LinkInto` will not prevent the source from being renamed or unlinked.\n"]
20116 fn link_into(
20117 &mut self,
20118 sender: &::fidl_next::ServerSender<___T, Symlink>,
20119
20120 request: ::fidl_next::RequestBuffer<___T, symlink::LinkInto>,
20121
20122 responder: ::fidl_next::Responder<symlink::LinkInto>,
20123 );
20124
20125 fn clone(
20126 &mut self,
20127 sender: &::fidl_next::ServerSender<___T, Symlink>,
20128
20129 request: ::fidl_next::RequestBuffer<___T, symlink::Clone>,
20130 );
20131
20132 #[doc = " Terminates the connection.\n\n After calling `Close`, the client must not send any other requests.\n\n Servers, after sending the status response, should close the connection\n regardless of status and without sending an epitaph.\n\n Closing the client end of the channel should be semantically equivalent\n to calling `Close` without knowing when the close has completed or its\n status.\n"]
20133 fn close(
20134 &mut self,
20135 sender: &::fidl_next::ServerSender<___T, Symlink>,
20136
20137 responder: ::fidl_next::Responder<symlink::Close>,
20138 );
20139
20140 fn query(
20141 &mut self,
20142 sender: &::fidl_next::ServerSender<___T, Symlink>,
20143
20144 responder: ::fidl_next::Responder<symlink::Query>,
20145 );
20146
20147 #[doc = " DEPRECATED - Use `fuchsia.unknown/Cloneable.Clone` instead.\n"]
20148 fn deprecated_clone(
20149 &mut self,
20150 sender: &::fidl_next::ServerSender<___T, Symlink>,
20151
20152 request: ::fidl_next::RequestBuffer<___T, symlink::DeprecatedClone>,
20153 );
20154
20155 #[doc = " Acquires information about the node.\n\n This method does not require any rights.\n"]
20156 fn get_attr(
20157 &mut self,
20158 sender: &::fidl_next::ServerSender<___T, Symlink>,
20159
20160 responder: ::fidl_next::Responder<symlink::GetAttr>,
20161 );
20162
20163 #[doc = " Updates information about the node.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if any attributes specified by [`flags`] are not supported.\n\n This method requires following rights: `OpenFlags.RIGHT_WRITABLE`, otherwise returns\n `ZX_ERR_BAD_HANDLE`.\n"]
20164 fn set_attr(
20165 &mut self,
20166 sender: &::fidl_next::ServerSender<___T, Symlink>,
20167
20168 request: ::fidl_next::RequestBuffer<___T, symlink::SetAttr>,
20169
20170 responder: ::fidl_next::Responder<symlink::SetAttr>,
20171 );
20172
20173 #[doc = " [DEPRECATED - Use new GetFlags method instead.]\n"]
20174 fn deprecated_get_flags(
20175 &mut self,
20176 sender: &::fidl_next::ServerSender<___T, Symlink>,
20177
20178 responder: ::fidl_next::Responder<symlink::DeprecatedGetFlags>,
20179 );
20180
20181 #[doc = " [DEPRECATED - Use new SetFlags method instead.]\n"]
20182 fn deprecated_set_flags(
20183 &mut self,
20184 sender: &::fidl_next::ServerSender<___T, Symlink>,
20185
20186 request: ::fidl_next::RequestBuffer<___T, symlink::DeprecatedSetFlags>,
20187
20188 responder: ::fidl_next::Responder<symlink::DeprecatedSetFlags>,
20189 );
20190
20191 #[doc = " Queries the flags that apply to this node after it has been opened/created. This method does\n not require any rights.\n\n Note that the final set of flags that apply to the connection may differ from those\n specified with the `fuchsia.io/Directory.Open` request used to create it:\n - `Flags.PERM_INHERIT_*`: Only applies when determining connection rights.\n - `Flags.PROTOCOL_*`: Only the protocol of the connection will be present.\n - `Flags.FLAG_*`: Only applies when opening the resource, not part of the connection.\n"]
20192 fn get_flags(
20193 &mut self,
20194 sender: &::fidl_next::ServerSender<___T, Symlink>,
20195
20196 responder: ::fidl_next::Responder<symlink::GetFlags>,
20197 );
20198
20199 #[doc = " Sets the flags that apply to this node after it has been opened. This method does not\n require any rights.\n\n Only `Flags.FILE_APPEND` is currently supported. Calling this method without any flags will\n clear append mode.\n\n Errors:\n - `ZX_ERR_NOT_SUPPORTED`: The object does not support this feature or the specified flags.\n - `ZX_ERR_INVALID_ARGS`: `flags` other than `Flags.FILE_APPEND` were specified.\n"]
20200 fn set_flags(
20201 &mut self,
20202 sender: &::fidl_next::ServerSender<___T, Symlink>,
20203
20204 request: ::fidl_next::RequestBuffer<___T, symlink::SetFlags>,
20205
20206 responder: ::fidl_next::Responder<symlink::SetFlags>,
20207 );
20208
20209 #[doc = " Query the filesystem for filesystem-specific information.\n"]
20210 fn query_filesystem(
20211 &mut self,
20212 sender: &::fidl_next::ServerSender<___T, Symlink>,
20213
20214 responder: ::fidl_next::Responder<symlink::QueryFilesystem>,
20215 );
20216
20217 #[doc = " Acquires information about the connection.\n\n This method does not require any rights.\n"]
20218 fn get_connection_info(
20219 &mut self,
20220 sender: &::fidl_next::ServerSender<___T, Symlink>,
20221
20222 responder: ::fidl_next::Responder<symlink::GetConnectionInfo>,
20223 );
20224
20225 #[doc = " Acquires information about the node.\n\n The attributes of a node should be stable, independent of the\n specific protocol used to access it.\n\n If a particular attribute is not applicable or not supported,\n filesystems should leave the corresponding field absent.\n\n + `query` a bit-mask specifying which attributes to fetch. The server\n should not return more than necessary.\n - `attributes` the returned attributes.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
20226 fn get_attributes(
20227 &mut self,
20228 sender: &::fidl_next::ServerSender<___T, Symlink>,
20229
20230 request: ::fidl_next::RequestBuffer<___T, symlink::GetAttributes>,
20231
20232 responder: ::fidl_next::Responder<symlink::GetAttributes>,
20233 );
20234
20235 #[doc = " Updates information about the node.\n\n + `attributes` the presence of a table field in `attributes` indicates\n the intent to update the corresponding attribute.\n\n Returns `ZX_ERR_NOT_SUPPORTED` if the node does not support any of the specified attributes.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
20236 fn update_attributes(
20237 &mut self,
20238 sender: &::fidl_next::ServerSender<___T, Symlink>,
20239
20240 request: ::fidl_next::RequestBuffer<___T, symlink::UpdateAttributes>,
20241
20242 responder: ::fidl_next::Responder<symlink::UpdateAttributes>,
20243 );
20244
20245 #[doc = " Synchronizes updates to the node to the underlying media, if it exists.\n\n This method will return when the filesystem server has flushed the\n relevant updates to the underlying media, but does not guarantee the\n underlying media has persisted the information, nor that any information\n is committed to hardware. Clients may use `Sync` to ensure ordering\n between operations.\n\n This method does not require any rights.\n"]
20246 fn sync(
20247 &mut self,
20248 sender: &::fidl_next::ServerSender<___T, Symlink>,
20249
20250 responder: ::fidl_next::Responder<symlink::Sync>,
20251 );
20252
20253 #[doc = " Creates an iterator over all the extended attribute names associated\n with this node. If an error occurs it is returned as an epitaph on the\n iterator request channel, and then the channel is closed.\n\n GetExtendedAttributes can be used with any of these names to retrieve\n the associated value.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
20254 fn list_extended_attributes(
20255 &mut self,
20256 sender: &::fidl_next::ServerSender<___T, Symlink>,
20257
20258 request: ::fidl_next::RequestBuffer<___T, symlink::ListExtendedAttributes>,
20259 );
20260
20261 #[doc = " Get the value associated with the given attribute `name` for this node.\n\n Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No\n particular structure is imposed on them.\n\n This method requires the [`Rights.GET_ATTRIBUTES`] right.\n"]
20262 fn get_extended_attribute(
20263 &mut self,
20264 sender: &::fidl_next::ServerSender<___T, Symlink>,
20265
20266 request: ::fidl_next::RequestBuffer<___T, symlink::GetExtendedAttribute>,
20267
20268 responder: ::fidl_next::Responder<symlink::GetExtendedAttribute>,
20269 );
20270
20271 #[doc = " Set the value for the given attribute `name` to `value` for this node.\n\n The attribute name may exist, in which case the attribute is updated.\n If the attribute doesn\'t exist, it is created. The name should have no\n null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
20272 fn set_extended_attribute(
20273 &mut self,
20274 sender: &::fidl_next::ServerSender<___T, Symlink>,
20275
20276 request: ::fidl_next::RequestBuffer<___T, symlink::SetExtendedAttribute>,
20277
20278 responder: ::fidl_next::Responder<symlink::SetExtendedAttribute>,
20279 );
20280
20281 #[doc = " Remove the specified extended attribute.\n\n If the attribute doesn\'t exist, ZX_ERR_NOT_FOUND is returned.\n\n This method requires the [`Rights.UPDATE_ATTRIBUTES`] right.\n"]
20282 fn remove_extended_attribute(
20283 &mut self,
20284 sender: &::fidl_next::ServerSender<___T, Symlink>,
20285
20286 request: ::fidl_next::RequestBuffer<___T, symlink::RemoveExtendedAttribute>,
20287
20288 responder: ::fidl_next::Responder<symlink::RemoveExtendedAttribute>,
20289 );
20290
20291 fn describe(
20292 &mut self,
20293 sender: &::fidl_next::ServerSender<___T, Symlink>,
20294
20295 responder: ::fidl_next::Responder<symlink::Describe>,
20296 );
20297
20298 fn on_unknown_interaction(
20299 &mut self,
20300 sender: &::fidl_next::ServerSender<___T, Symlink>,
20301 ordinal: u64,
20302 ) {
20303 sender.close();
20304 }
20305}
20306
20307impl<___T, ___H> ::fidl_next::ServerProtocol<___T, ___H> for Symlink
20308where
20309 ___T: ::fidl_next::Transport,
20310 ___H: SymlinkServerHandler<___T>,
20311
20312 crate::WireLinkableLinkIntoRequest:
20313 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20314
20315 ::fidl_next_fuchsia_unknown::WireCloneableCloneRequest:
20316 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20317
20318 crate::WireNodeDeprecatedCloneRequest:
20319 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20320
20321 crate::WireNodeSetAttrRequest:
20322 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20323
20324 crate::WireNodeDeprecatedSetFlagsRequest:
20325 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20326
20327 crate::WireNodeSetFlagsRequest:
20328 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20329
20330 crate::WireNodeGetAttributesRequest:
20331 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20332
20333 crate::WireMutableNodeAttributes:
20334 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20335
20336 crate::WireNodeListExtendedAttributesRequest:
20337 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20338
20339 crate::WireNodeGetExtendedAttributeRequest:
20340 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20341
20342 crate::WireNodeSetExtendedAttributeRequest:
20343 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20344
20345 crate::WireNodeRemoveExtendedAttributeRequest:
20346 ::fidl_next::Decode<<___T as ::fidl_next::Transport>::RecvBuffer>,
20347{
20348 fn on_one_way(
20349 handler: &mut ___H,
20350 sender: &::fidl_next::ServerSender<___T, Self>,
20351 ordinal: u64,
20352 buffer: ___T::RecvBuffer,
20353 ) {
20354 match ordinal {
20355 2366825959783828089 => {
20356 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20357 handler.clone(sender, buffer);
20358 }
20359
20360 6512600400724287855 => {
20361 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20362 handler.deprecated_clone(sender, buffer);
20363 }
20364
20365 5431626189872037072 => {
20366 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20367 handler.list_extended_attributes(sender, buffer);
20368 }
20369
20370 ordinal => handler.on_unknown_interaction(sender, ordinal),
20371 }
20372 }
20373
20374 fn on_two_way(
20375 handler: &mut ___H,
20376 sender: &::fidl_next::ServerSender<___T, Self>,
20377 ordinal: u64,
20378 buffer: ___T::RecvBuffer,
20379 responder: ::fidl_next::protocol::Responder,
20380 ) {
20381 match ordinal {
20382 6121399674497678964 => {
20383 let responder = ::fidl_next::Responder::from_untyped(responder);
20384
20385 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20386 handler.link_into(sender, buffer, responder);
20387 }
20388
20389 6540867515453498750 => {
20390 let responder = ::fidl_next::Responder::from_untyped(responder);
20391
20392 handler.close(sender, responder);
20393 }
20394
20395 2763219980499352582 => {
20396 let responder = ::fidl_next::Responder::from_untyped(responder);
20397
20398 handler.query(sender, responder);
20399 }
20400
20401 8689798978500614909 => {
20402 let responder = ::fidl_next::Responder::from_untyped(responder);
20403
20404 handler.get_attr(sender, responder);
20405 }
20406
20407 4721673413776871238 => {
20408 let responder = ::fidl_next::Responder::from_untyped(responder);
20409
20410 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20411 handler.set_attr(sender, buffer, responder);
20412 }
20413
20414 6595803110182632097 => {
20415 let responder = ::fidl_next::Responder::from_untyped(responder);
20416
20417 handler.deprecated_get_flags(sender, responder);
20418 }
20419
20420 5950864159036794675 => {
20421 let responder = ::fidl_next::Responder::from_untyped(responder);
20422
20423 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20424 handler.deprecated_set_flags(sender, buffer, responder);
20425 }
20426
20427 105530239381466147 => {
20428 let responder = ::fidl_next::Responder::from_untyped(responder);
20429
20430 handler.get_flags(sender, responder);
20431 }
20432
20433 6172186066099445416 => {
20434 let responder = ::fidl_next::Responder::from_untyped(responder);
20435
20436 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20437 handler.set_flags(sender, buffer, responder);
20438 }
20439
20440 8013111122914313744 => {
20441 let responder = ::fidl_next::Responder::from_untyped(responder);
20442
20443 handler.query_filesystem(sender, responder);
20444 }
20445
20446 6362521381364198667 => {
20447 let responder = ::fidl_next::Responder::from_untyped(responder);
20448
20449 handler.get_connection_info(sender, responder);
20450 }
20451
20452 4414537700416816443 => {
20453 let responder = ::fidl_next::Responder::from_untyped(responder);
20454
20455 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20456 handler.get_attributes(sender, buffer, responder);
20457 }
20458
20459 3677402239314018056 => {
20460 let responder = ::fidl_next::Responder::from_untyped(responder);
20461
20462 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20463 handler.update_attributes(sender, buffer, responder);
20464 }
20465
20466 3196473584242777161 => {
20467 let responder = ::fidl_next::Responder::from_untyped(responder);
20468
20469 handler.sync(sender, responder);
20470 }
20471
20472 5043930208506967771 => {
20473 let responder = ::fidl_next::Responder::from_untyped(responder);
20474
20475 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20476 handler.get_extended_attribute(sender, buffer, responder);
20477 }
20478
20479 5374223046099989052 => {
20480 let responder = ::fidl_next::Responder::from_untyped(responder);
20481
20482 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20483 handler.set_extended_attribute(sender, buffer, responder);
20484 }
20485
20486 8794297771444732717 => {
20487 let responder = ::fidl_next::Responder::from_untyped(responder);
20488
20489 let buffer = ::fidl_next::RequestBuffer::from_untyped(buffer);
20490 handler.remove_extended_attribute(sender, buffer, responder);
20491 }
20492
20493 8371117097481679347 => {
20494 let responder = ::fidl_next::Responder::from_untyped(responder);
20495
20496 handler.describe(sender, responder);
20497 }
20498
20499 ordinal => handler.on_unknown_interaction(sender, ordinal),
20500 }
20501 }
20502}
20503
20504#[doc = " Alias for directory permission alias w*\n"]
20505pub const W_STAR_DIR: crate::Operations = crate::Operations::from_bits_retain(485);
20506
20507#[derive(Clone, Copy, Debug, PartialEq, Eq)]
20508#[repr(u8)]
20509pub enum WatchEvent {
20510 Deleted = 0,
20511 Added = 1,
20512 Removed = 2,
20513 Existing = 3,
20514 Idle = 4,
20515}
20516
20517impl ::fidl_next::Encodable for WatchEvent {
20518 type Encoded = WireWatchEvent;
20519}
20520
20521unsafe impl<___E> ::fidl_next::Encode<___E> for WatchEvent
20522where
20523 ___E: ?Sized,
20524{
20525 #[inline]
20526 fn encode(
20527 &mut self,
20528 _: &mut ___E,
20529 out: &mut ::core::mem::MaybeUninit<Self::Encoded>,
20530 ) -> Result<(), ::fidl_next::EncodeError> {
20531 ::fidl_next::munge!(let WireWatchEvent { value } = out);
20532 let _ = value.write(u8::from(match *self {
20533 Self::Deleted => 0,
20534
20535 Self::Added => 1,
20536
20537 Self::Removed => 2,
20538
20539 Self::Existing => 3,
20540
20541 Self::Idle => 4,
20542 }));
20543
20544 Ok(())
20545 }
20546}
20547
20548impl ::core::convert::From<WireWatchEvent> for WatchEvent {
20549 fn from(wire: WireWatchEvent) -> Self {
20550 match u8::from(wire.value) {
20551 0 => Self::Deleted,
20552
20553 1 => Self::Added,
20554
20555 2 => Self::Removed,
20556
20557 3 => Self::Existing,
20558
20559 4 => Self::Idle,
20560
20561 _ => unsafe { ::core::hint::unreachable_unchecked() },
20562 }
20563 }
20564}
20565
20566impl ::fidl_next::TakeFrom<WireWatchEvent> for WatchEvent {
20567 #[inline]
20568 fn take_from(from: &WireWatchEvent) -> Self {
20569 Self::from(*from)
20570 }
20571}
20572
20573#[derive(Clone, Copy, Debug, PartialEq, Eq)]
20575#[repr(transparent)]
20576pub struct WireWatchEvent {
20577 value: u8,
20578}
20579
20580unsafe impl ::fidl_next::ZeroPadding for WireWatchEvent {
20581 #[inline]
20582 fn zero_padding(_: &mut ::core::mem::MaybeUninit<Self>) {
20583 }
20585}
20586
20587impl WireWatchEvent {
20588 pub const DELETED: WireWatchEvent = WireWatchEvent { value: 0 };
20589
20590 pub const ADDED: WireWatchEvent = WireWatchEvent { value: 1 };
20591
20592 pub const REMOVED: WireWatchEvent = WireWatchEvent { value: 2 };
20593
20594 pub const EXISTING: WireWatchEvent = WireWatchEvent { value: 3 };
20595
20596 pub const IDLE: WireWatchEvent = WireWatchEvent { value: 4 };
20597}
20598
20599unsafe impl<___D> ::fidl_next::Decode<___D> for WireWatchEvent
20600where
20601 ___D: ?Sized,
20602{
20603 fn decode(
20604 slot: ::fidl_next::Slot<'_, Self>,
20605 _: &mut ___D,
20606 ) -> Result<(), ::fidl_next::DecodeError> {
20607 ::fidl_next::munge!(let Self { value } = slot);
20608
20609 match u8::from(*value) {
20610 0 | 1 | 2 | 3 | 4 => (),
20611 unknown => return Err(::fidl_next::DecodeError::InvalidEnumOrdinal(unknown as i128)),
20612 }
20613
20614 Ok(())
20615 }
20616}
20617
20618impl ::core::convert::From<WatchEvent> for WireWatchEvent {
20619 fn from(natural: WatchEvent) -> Self {
20620 match natural {
20621 WatchEvent::Deleted => WireWatchEvent::DELETED,
20622
20623 WatchEvent::Added => WireWatchEvent::ADDED,
20624
20625 WatchEvent::Removed => WireWatchEvent::REMOVED,
20626
20627 WatchEvent::Existing => WireWatchEvent::EXISTING,
20628
20629 WatchEvent::Idle => WireWatchEvent::IDLE,
20630 }
20631 }
20632}
20633
20634#[doc = " Alias for directory permission alias x*\n"]
20635pub const X_STAR_DIR: crate::Operations = crate::Operations::from_bits_retain(201);
20636
20637pub mod compat {
20639
20640 impl ::fidl_next::TakeFrom<crate::WireOperations> for ::fidl_fuchsia_io::Operations {
20641 #[inline]
20642 fn take_from(from: &crate::WireOperations) -> Self {
20643 Self::from_bits_retain(from.value.into())
20644 }
20645 }
20646
20647 impl ::fidl_next::TakeFrom<crate::WireSeekOrigin> for ::fidl_fuchsia_io::SeekOrigin {
20648 #[inline]
20649 fn take_from(from: &crate::WireSeekOrigin) -> Self {
20650 match crate::SeekOrigin::from(*from) {
20651 crate::SeekOrigin::Start => Self::Start,
20652
20653 crate::SeekOrigin::Current => Self::Current,
20654
20655 crate::SeekOrigin::End => Self::End,
20656 }
20657 }
20658 }
20659
20660 impl ::fidl_next::TakeFrom<crate::WireAdvisoryLockRange> for ::fidl_fuchsia_io::AdvisoryLockRange {
20661 #[inline]
20662 fn take_from(from: &crate::WireAdvisoryLockRange) -> Self {
20663 Self {
20664 origin: ::fidl_next::TakeFrom::take_from(&from.origin),
20665
20666 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
20667
20668 length: ::fidl_next::TakeFrom::take_from(&from.length),
20669 }
20670 }
20671 }
20672
20673 impl ::fidl_next::TakeFrom<crate::WireAdvisoryLockType> for ::fidl_fuchsia_io::AdvisoryLockType {
20674 #[inline]
20675 fn take_from(from: &crate::WireAdvisoryLockType) -> Self {
20676 match crate::AdvisoryLockType::from(*from) {
20677 crate::AdvisoryLockType::Read => Self::Read,
20678
20679 crate::AdvisoryLockType::Write => Self::Write,
20680
20681 crate::AdvisoryLockType::Unlock => Self::Unlock,
20682 }
20683 }
20684 }
20685
20686 impl ::fidl_next::TakeFrom<crate::WireAdvisoryLockRequest>
20687 for ::fidl_fuchsia_io::AdvisoryLockRequest
20688 {
20689 #[inline]
20690 fn take_from(from: &crate::WireAdvisoryLockRequest) -> Self {
20691 Self {
20692 type_: from.type_().map(::fidl_next::TakeFrom::take_from),
20693
20694 range: from.range().map(::fidl_next::TakeFrom::take_from),
20695
20696 wait: from.wait().map(::fidl_next::TakeFrom::take_from),
20697
20698 __source_breaking: ::fidl::marker::SourceBreaking,
20699 }
20700 }
20701 }
20702
20703 impl ::fidl_next::TakeFrom<crate::WireAdvisoryLockingAdvisoryLockRequest>
20704 for ::fidl_fuchsia_io::AdvisoryLockingAdvisoryLockRequest
20705 {
20706 #[inline]
20707 fn take_from(from: &crate::WireAdvisoryLockingAdvisoryLockRequest) -> Self {
20708 Self { request: ::fidl_next::TakeFrom::take_from(&from.request) }
20709 }
20710 }
20711
20712 #[cfg(target_os = "fuchsia")]
20713 pub type AdvisoryLockingProxy =
20716 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::AdvisoryLocking>;
20717
20718 impl ::fidl_next::TakeFrom<crate::AdvisoryLocking> for ::fidl_fuchsia_io::AdvisoryLockingMarker {
20719 #[inline]
20720 fn take_from(from: &crate::AdvisoryLocking) -> Self {
20721 Self
20722 }
20723 }
20724
20725 impl ::fidl_next::TakeFrom<crate::WireAllocateMode> for ::fidl_fuchsia_io::AllocateMode {
20726 #[inline]
20727 fn take_from(from: &crate::WireAllocateMode) -> Self {
20728 Self::from_bits_retain(from.value.into())
20729 }
20730 }
20731
20732 impl ::fidl_next::TakeFrom<crate::WireConnectionInfo> for ::fidl_fuchsia_io::ConnectionInfo {
20733 #[inline]
20734 fn take_from(from: &crate::WireConnectionInfo) -> Self {
20735 Self {
20736 rights: from.rights().map(::fidl_next::TakeFrom::take_from),
20737
20738 __source_breaking: ::fidl::marker::SourceBreaking,
20739 }
20740 }
20741 }
20742
20743 impl ::fidl_next::TakeFrom<crate::WireOpenFlags> for ::fidl_fuchsia_io::OpenFlags {
20744 #[inline]
20745 fn take_from(from: &crate::WireOpenFlags) -> Self {
20746 Self::from_bits_retain(from.value.into())
20747 }
20748 }
20749
20750 impl ::fidl_next::TakeFrom<crate::WireNodeAttributes> for ::fidl_fuchsia_io::NodeAttributes {
20751 #[inline]
20752 fn take_from(from: &crate::WireNodeAttributes) -> Self {
20753 Self {
20754 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
20755
20756 id: ::fidl_next::TakeFrom::take_from(&from.id),
20757
20758 content_size: ::fidl_next::TakeFrom::take_from(&from.content_size),
20759
20760 storage_size: ::fidl_next::TakeFrom::take_from(&from.storage_size),
20761
20762 link_count: ::fidl_next::TakeFrom::take_from(&from.link_count),
20763
20764 creation_time: ::fidl_next::TakeFrom::take_from(&from.creation_time),
20765
20766 modification_time: ::fidl_next::TakeFrom::take_from(&from.modification_time),
20767 }
20768 }
20769 }
20770
20771 impl ::fidl_next::TakeFrom<crate::WireNodeGetAttrResponse>
20772 for ::fidl_fuchsia_io::NodeGetAttrResponse
20773 {
20774 #[inline]
20775 fn take_from(from: &crate::WireNodeGetAttrResponse) -> Self {
20776 Self {
20777 s: ::fidl_next::TakeFrom::take_from(&from.s),
20778
20779 attributes: ::fidl_next::TakeFrom::take_from(&from.attributes),
20780 }
20781 }
20782 }
20783
20784 impl ::fidl_next::TakeFrom<crate::WireNodeAttributeFlags>
20785 for ::fidl_fuchsia_io::NodeAttributeFlags
20786 {
20787 #[inline]
20788 fn take_from(from: &crate::WireNodeAttributeFlags) -> Self {
20789 Self::from_bits_retain(from.value.into())
20790 }
20791 }
20792
20793 impl ::fidl_next::TakeFrom<crate::WireNodeSetAttrRequest>
20794 for ::fidl_fuchsia_io::NodeSetAttrRequest
20795 {
20796 #[inline]
20797 fn take_from(from: &crate::WireNodeSetAttrRequest) -> Self {
20798 Self {
20799 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
20800
20801 attributes: ::fidl_next::TakeFrom::take_from(&from.attributes),
20802 }
20803 }
20804 }
20805
20806 impl ::fidl_next::TakeFrom<crate::WireNodeSetAttrResponse>
20807 for ::fidl_fuchsia_io::NodeSetAttrResponse
20808 {
20809 #[inline]
20810 fn take_from(from: &crate::WireNodeSetAttrResponse) -> Self {
20811 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
20812 }
20813 }
20814
20815 impl ::fidl_next::TakeFrom<crate::WireNodeQueryFilesystemResponse>
20816 for ::fidl_fuchsia_io::NodeQueryFilesystemResponse
20817 {
20818 #[inline]
20819 fn take_from(from: &crate::WireNodeQueryFilesystemResponse) -> Self {
20820 Self {
20821 s: ::fidl_next::TakeFrom::take_from(&from.s),
20822
20823 info: ::fidl_next::TakeFrom::take_from(&from.info),
20824 }
20825 }
20826 }
20827
20828 impl ::fidl_next::TakeFrom<crate::WireModeType> for ::fidl_fuchsia_io::ModeType {
20829 #[inline]
20830 fn take_from(from: &crate::WireModeType) -> Self {
20831 Self::from_bits_retain(from.value.into())
20832 }
20833 }
20834
20835 impl ::fidl_next::TakeFrom<crate::WireDirectoryReadDirentsRequest>
20836 for ::fidl_fuchsia_io::DirectoryReadDirentsRequest
20837 {
20838 #[inline]
20839 fn take_from(from: &crate::WireDirectoryReadDirentsRequest) -> Self {
20840 Self { max_bytes: ::fidl_next::TakeFrom::take_from(&from.max_bytes) }
20841 }
20842 }
20843
20844 impl ::fidl_next::TakeFrom<crate::WireDirectoryReadDirentsResponse>
20845 for ::fidl_fuchsia_io::DirectoryReadDirentsResponse
20846 {
20847 #[inline]
20848 fn take_from(from: &crate::WireDirectoryReadDirentsResponse) -> Self {
20849 Self {
20850 s: ::fidl_next::TakeFrom::take_from(&from.s),
20851
20852 dirents: ::fidl_next::TakeFrom::take_from(&from.dirents),
20853 }
20854 }
20855 }
20856
20857 impl ::fidl_next::TakeFrom<crate::WireDirectoryRewindResponse>
20858 for ::fidl_fuchsia_io::DirectoryRewindResponse
20859 {
20860 #[inline]
20861 fn take_from(from: &crate::WireDirectoryRewindResponse) -> Self {
20862 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
20863 }
20864 }
20865
20866 impl ::fidl_next::TakeFrom<crate::WireDirectoryGetTokenResponse>
20867 for ::fidl_fuchsia_io::DirectoryGetTokenResponse
20868 {
20869 #[inline]
20870 fn take_from(from: &crate::WireDirectoryGetTokenResponse) -> Self {
20871 Self {
20872 s: ::fidl_next::TakeFrom::take_from(&from.s),
20873
20874 token: ::fidl_next::TakeFrom::take_from(&from.token),
20875 }
20876 }
20877 }
20878
20879 impl ::fidl_next::TakeFrom<crate::WireDirectoryLinkRequest>
20880 for ::fidl_fuchsia_io::DirectoryLinkRequest
20881 {
20882 #[inline]
20883 fn take_from(from: &crate::WireDirectoryLinkRequest) -> Self {
20884 Self {
20885 src: ::fidl_next::TakeFrom::take_from(&from.src),
20886
20887 dst_parent_token: ::fidl_next::TakeFrom::take_from(&from.dst_parent_token),
20888
20889 dst: ::fidl_next::TakeFrom::take_from(&from.dst),
20890 }
20891 }
20892 }
20893
20894 impl ::fidl_next::TakeFrom<crate::WireDirectoryLinkResponse>
20895 for ::fidl_fuchsia_io::DirectoryLinkResponse
20896 {
20897 #[inline]
20898 fn take_from(from: &crate::WireDirectoryLinkResponse) -> Self {
20899 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
20900 }
20901 }
20902
20903 impl ::fidl_next::TakeFrom<crate::WireUnlinkFlags> for ::fidl_fuchsia_io::UnlinkFlags {
20904 #[inline]
20905 fn take_from(from: &crate::WireUnlinkFlags) -> Self {
20906 Self::from_bits_retain(from.value.into())
20907 }
20908 }
20909
20910 impl ::fidl_next::TakeFrom<crate::WireUnlinkOptions> for ::fidl_fuchsia_io::UnlinkOptions {
20911 #[inline]
20912 fn take_from(from: &crate::WireUnlinkOptions) -> Self {
20913 Self {
20914 flags: from.flags().map(::fidl_next::TakeFrom::take_from),
20915
20916 __source_breaking: ::fidl::marker::SourceBreaking,
20917 }
20918 }
20919 }
20920
20921 impl ::fidl_next::TakeFrom<crate::WireDirectoryUnlinkRequest>
20922 for ::fidl_fuchsia_io::DirectoryUnlinkRequest
20923 {
20924 #[inline]
20925 fn take_from(from: &crate::WireDirectoryUnlinkRequest) -> Self {
20926 Self {
20927 name: ::fidl_next::TakeFrom::take_from(&from.name),
20928
20929 options: ::fidl_next::TakeFrom::take_from(&from.options),
20930 }
20931 }
20932 }
20933
20934 impl ::fidl_next::TakeFrom<crate::WireDirectoryRenameRequest>
20935 for ::fidl_fuchsia_io::DirectoryRenameRequest
20936 {
20937 #[inline]
20938 fn take_from(from: &crate::WireDirectoryRenameRequest) -> Self {
20939 Self {
20940 src: ::fidl_next::TakeFrom::take_from(&from.src),
20941
20942 dst_parent_token: ::fidl_next::TakeFrom::take_from(&from.dst_parent_token),
20943
20944 dst: ::fidl_next::TakeFrom::take_from(&from.dst),
20945 }
20946 }
20947 }
20948
20949 impl ::fidl_next::TakeFrom<crate::WireWatchMask> for ::fidl_fuchsia_io::WatchMask {
20950 #[inline]
20951 fn take_from(from: &crate::WireWatchMask) -> Self {
20952 Self::from_bits_retain(from.value.into())
20953 }
20954 }
20955
20956 impl ::fidl_next::TakeFrom<crate::WireDirectoryWatchRequest>
20957 for ::fidl_fuchsia_io::DirectoryWatchRequest
20958 {
20959 #[inline]
20960 fn take_from(from: &crate::WireDirectoryWatchRequest) -> Self {
20961 Self {
20962 mask: ::fidl_next::TakeFrom::take_from(&from.mask),
20963
20964 options: ::fidl_next::TakeFrom::take_from(&from.options),
20965
20966 watcher: ::fidl_next::TakeFrom::take_from(&from.watcher),
20967 }
20968 }
20969 }
20970
20971 impl ::fidl_next::TakeFrom<crate::WireDirectoryWatchResponse>
20972 for ::fidl_fuchsia_io::DirectoryWatchResponse
20973 {
20974 #[inline]
20975 fn take_from(from: &crate::WireDirectoryWatchResponse) -> Self {
20976 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
20977 }
20978 }
20979
20980 impl ::fidl_next::TakeFrom<crate::WireNodeOnOpenRequest> for ::fidl_fuchsia_io::NodeOnOpenRequest {
20981 #[inline]
20982 fn take_from(from: &crate::WireNodeOnOpenRequest) -> Self {
20983 Self {
20984 s: ::fidl_next::TakeFrom::take_from(&from.s),
20985
20986 info: ::fidl_next::TakeFrom::take_from(&from.info),
20987 }
20988 }
20989 }
20990
20991 impl ::fidl_next::TakeFrom<crate::WireNodeListExtendedAttributesRequest>
20992 for ::fidl_fuchsia_io::NodeListExtendedAttributesRequest
20993 {
20994 #[inline]
20995 fn take_from(from: &crate::WireNodeListExtendedAttributesRequest) -> Self {
20996 Self { iterator: ::fidl_next::TakeFrom::take_from(&from.iterator) }
20997 }
20998 }
20999
21000 impl ::fidl_next::TakeFrom<crate::WireNodeGetExtendedAttributeRequest>
21001 for ::fidl_fuchsia_io::NodeGetExtendedAttributeRequest
21002 {
21003 #[inline]
21004 fn take_from(from: &crate::WireNodeGetExtendedAttributeRequest) -> Self {
21005 Self { name: ::fidl_next::TakeFrom::take_from(&from.name) }
21006 }
21007 }
21008
21009 impl ::fidl_next::TakeFrom<crate::WireExtendedAttributeValue>
21010 for ::fidl_fuchsia_io::ExtendedAttributeValue
21011 {
21012 #[inline]
21013 fn take_from(from: &crate::WireExtendedAttributeValue) -> Self {
21014 match from.as_ref() {
21015 crate::extended_attribute_value::Ref::Bytes(value) => {
21016 Self::Bytes(::fidl_next::TakeFrom::take_from(value))
21017 }
21018
21019 crate::extended_attribute_value::Ref::Buffer(value) => {
21020 Self::Buffer(::fidl_next::TakeFrom::take_from(value))
21021 }
21022
21023 crate::extended_attribute_value::Ref::UnknownOrdinal_(unknown_ordinal) => {
21024 Self::__SourceBreaking { unknown_ordinal }
21025 }
21026 }
21027 }
21028 }
21029
21030 impl ::fidl_next::TakeFrom<crate::WireOptionalExtendedAttributeValue>
21031 for Option<Box<::fidl_fuchsia_io::ExtendedAttributeValue>>
21032 {
21033 #[inline]
21034 fn take_from(from: &crate::WireOptionalExtendedAttributeValue) -> Self {
21035 if let Some(inner) = from.as_ref() {
21036 Some(::fidl_next::TakeFrom::take_from(inner))
21037 } else {
21038 None
21039 }
21040 }
21041 }
21042
21043 impl ::fidl_next::TakeFrom<crate::WireSetExtendedAttributeMode>
21044 for ::fidl_fuchsia_io::SetExtendedAttributeMode
21045 {
21046 #[inline]
21047 fn take_from(from: &crate::WireSetExtendedAttributeMode) -> Self {
21048 match crate::SetExtendedAttributeMode::from(*from) {
21049 crate::SetExtendedAttributeMode::Set => Self::Set,
21050
21051 crate::SetExtendedAttributeMode::Create => Self::Create,
21052
21053 crate::SetExtendedAttributeMode::Replace => Self::Replace,
21054 }
21055 }
21056 }
21057
21058 impl ::fidl_next::TakeFrom<crate::WireNodeSetExtendedAttributeRequest>
21059 for ::fidl_fuchsia_io::NodeSetExtendedAttributeRequest
21060 {
21061 #[inline]
21062 fn take_from(from: &crate::WireNodeSetExtendedAttributeRequest) -> Self {
21063 Self {
21064 name: ::fidl_next::TakeFrom::take_from(&from.name),
21065
21066 value: ::fidl_next::TakeFrom::take_from(&from.value),
21067
21068 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
21069 }
21070 }
21071 }
21072
21073 impl ::fidl_next::TakeFrom<crate::WireNodeRemoveExtendedAttributeRequest>
21074 for ::fidl_fuchsia_io::NodeRemoveExtendedAttributeRequest
21075 {
21076 #[inline]
21077 fn take_from(from: &crate::WireNodeRemoveExtendedAttributeRequest) -> Self {
21078 Self { name: ::fidl_next::TakeFrom::take_from(&from.name) }
21079 }
21080 }
21081
21082 impl ::fidl_next::TakeFrom<crate::WireNodeDeprecatedCloneRequest>
21083 for ::fidl_fuchsia_io::NodeDeprecatedCloneRequest
21084 {
21085 #[inline]
21086 fn take_from(from: &crate::WireNodeDeprecatedCloneRequest) -> Self {
21087 Self {
21088 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
21089
21090 object: ::fidl_next::TakeFrom::take_from(&from.object),
21091 }
21092 }
21093 }
21094
21095 impl ::fidl_next::TakeFrom<crate::WireNodeDeprecatedGetFlagsResponse>
21096 for ::fidl_fuchsia_io::NodeDeprecatedGetFlagsResponse
21097 {
21098 #[inline]
21099 fn take_from(from: &crate::WireNodeDeprecatedGetFlagsResponse) -> Self {
21100 Self {
21101 s: ::fidl_next::TakeFrom::take_from(&from.s),
21102
21103 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
21104 }
21105 }
21106 }
21107
21108 impl ::fidl_next::TakeFrom<crate::WireNodeDeprecatedSetFlagsRequest>
21109 for ::fidl_fuchsia_io::NodeDeprecatedSetFlagsRequest
21110 {
21111 #[inline]
21112 fn take_from(from: &crate::WireNodeDeprecatedSetFlagsRequest) -> Self {
21113 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
21114 }
21115 }
21116
21117 impl ::fidl_next::TakeFrom<crate::WireNodeDeprecatedSetFlagsResponse>
21118 for ::fidl_fuchsia_io::NodeDeprecatedSetFlagsResponse
21119 {
21120 #[inline]
21121 fn take_from(from: &crate::WireNodeDeprecatedSetFlagsResponse) -> Self {
21122 Self { s: ::fidl_next::TakeFrom::take_from(&from.s) }
21123 }
21124 }
21125
21126 impl ::fidl_next::TakeFrom<crate::WireFlags> for ::fidl_fuchsia_io::Flags {
21127 #[inline]
21128 fn take_from(from: &crate::WireFlags) -> Self {
21129 Self::from_bits_retain(from.value.into())
21130 }
21131 }
21132
21133 impl ::fidl_next::TakeFrom<crate::WireNodeGetFlagsResponse>
21134 for ::fidl_fuchsia_io::NodeGetFlagsResponse
21135 {
21136 #[inline]
21137 fn take_from(from: &crate::WireNodeGetFlagsResponse) -> Self {
21138 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
21139 }
21140 }
21141
21142 impl ::fidl_next::TakeFrom<crate::WireNodeSetFlagsRequest>
21143 for ::fidl_fuchsia_io::NodeSetFlagsRequest
21144 {
21145 #[inline]
21146 fn take_from(from: &crate::WireNodeSetFlagsRequest) -> Self {
21147 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
21148 }
21149 }
21150
21151 impl ::fidl_next::TakeFrom<crate::WireEmptyStruct> for ::fidl_fuchsia_io::EmptyStruct {
21152 #[inline]
21153 fn take_from(from: &crate::WireEmptyStruct) -> Self {
21154 Self {}
21155 }
21156 }
21157
21158 impl ::fidl_next::TakeFrom<crate::WireSelinuxContext> for ::fidl_fuchsia_io::SelinuxContext {
21159 #[inline]
21160 fn take_from(from: &crate::WireSelinuxContext) -> Self {
21161 match from.as_ref() {
21162 crate::selinux_context::Ref::Data(value) => {
21163 Self::Data(::fidl_next::TakeFrom::take_from(value))
21164 }
21165
21166 crate::selinux_context::Ref::UseExtendedAttributes(value) => {
21167 Self::UseExtendedAttributes(::fidl_next::TakeFrom::take_from(value))
21168 }
21169
21170 crate::selinux_context::Ref::UnknownOrdinal_(unknown_ordinal) => {
21171 Self::__SourceBreaking { unknown_ordinal }
21172 }
21173 }
21174 }
21175 }
21176
21177 impl ::fidl_next::TakeFrom<crate::WireOptionalSelinuxContext>
21178 for Option<Box<::fidl_fuchsia_io::SelinuxContext>>
21179 {
21180 #[inline]
21181 fn take_from(from: &crate::WireOptionalSelinuxContext) -> Self {
21182 if let Some(inner) = from.as_ref() {
21183 Some(::fidl_next::TakeFrom::take_from(inner))
21184 } else {
21185 None
21186 }
21187 }
21188 }
21189
21190 impl ::fidl_next::TakeFrom<crate::WireMutableNodeAttributes>
21191 for ::fidl_fuchsia_io::MutableNodeAttributes
21192 {
21193 #[inline]
21194 fn take_from(from: &crate::WireMutableNodeAttributes) -> Self {
21195 Self {
21196 creation_time: from.creation_time().map(::fidl_next::TakeFrom::take_from),
21197
21198 modification_time: from.modification_time().map(::fidl_next::TakeFrom::take_from),
21199
21200 mode: from.mode().map(::fidl_next::TakeFrom::take_from),
21201
21202 uid: from.uid().map(::fidl_next::TakeFrom::take_from),
21203
21204 gid: from.gid().map(::fidl_next::TakeFrom::take_from),
21205
21206 rdev: from.rdev().map(::fidl_next::TakeFrom::take_from),
21207
21208 access_time: from.access_time().map(::fidl_next::TakeFrom::take_from),
21209
21210 casefold: from.casefold().map(::fidl_next::TakeFrom::take_from),
21211
21212 selinux_context: from.selinux_context().map(::fidl_next::TakeFrom::take_from),
21213
21214 wrapping_key_id: from.wrapping_key_id().map(::fidl_next::TakeFrom::take_from),
21215
21216 __source_breaking: ::fidl::marker::SourceBreaking,
21217 }
21218 }
21219 }
21220
21221 impl ::fidl_next::TakeFrom<crate::WireNodeProtocolKinds> for ::fidl_fuchsia_io::NodeProtocolKinds {
21222 #[inline]
21223 fn take_from(from: &crate::WireNodeProtocolKinds) -> Self {
21224 Self::from_bits_retain(from.value.into())
21225 }
21226 }
21227
21228 impl ::fidl_next::TakeFrom<crate::WireHashAlgorithm> for ::fidl_fuchsia_io::HashAlgorithm {
21229 #[inline]
21230 fn take_from(from: &crate::WireHashAlgorithm) -> Self {
21231 match crate::HashAlgorithm::from(*from) {
21232 crate::HashAlgorithm::Sha256 => Self::Sha256,
21233
21234 crate::HashAlgorithm::Sha512 => Self::Sha512,
21235
21236 crate::HashAlgorithm::UnknownOrdinal_(value) => {
21237 Self::__SourceBreaking { unknown_ordinal: value }
21238 }
21239 }
21240 }
21241 }
21242
21243 impl ::fidl_next::TakeFrom<crate::WireVerificationOptions>
21244 for ::fidl_fuchsia_io::VerificationOptions
21245 {
21246 #[inline]
21247 fn take_from(from: &crate::WireVerificationOptions) -> Self {
21248 Self {
21249 hash_algorithm: from.hash_algorithm().map(::fidl_next::TakeFrom::take_from),
21250
21251 salt: from.salt().map(::fidl_next::TakeFrom::take_from),
21252
21253 __source_breaking: ::fidl::marker::SourceBreaking,
21254 }
21255 }
21256 }
21257
21258 impl ::fidl_next::TakeFrom<crate::WireImmutableNodeAttributes>
21259 for ::fidl_fuchsia_io::ImmutableNodeAttributes
21260 {
21261 #[inline]
21262 fn take_from(from: &crate::WireImmutableNodeAttributes) -> Self {
21263 Self {
21264 protocols: from.protocols().map(::fidl_next::TakeFrom::take_from),
21265
21266 abilities: from.abilities().map(::fidl_next::TakeFrom::take_from),
21267
21268 content_size: from.content_size().map(::fidl_next::TakeFrom::take_from),
21269
21270 storage_size: from.storage_size().map(::fidl_next::TakeFrom::take_from),
21271
21272 link_count: from.link_count().map(::fidl_next::TakeFrom::take_from),
21273
21274 id: from.id().map(::fidl_next::TakeFrom::take_from),
21275
21276 change_time: from.change_time().map(::fidl_next::TakeFrom::take_from),
21277
21278 options: from.options().map(::fidl_next::TakeFrom::take_from),
21279
21280 root_hash: from.root_hash().map(::fidl_next::TakeFrom::take_from),
21281
21282 verity_enabled: from.verity_enabled().map(::fidl_next::TakeFrom::take_from),
21283
21284 __source_breaking: ::fidl::marker::SourceBreaking,
21285 }
21286 }
21287 }
21288
21289 impl ::fidl_next::TakeFrom<crate::WireNodeAttributes2> for ::fidl_fuchsia_io::NodeAttributes2 {
21290 #[inline]
21291 fn take_from(from: &crate::WireNodeAttributes2) -> Self {
21292 Self {
21293 mutable_attributes: ::fidl_next::TakeFrom::take_from(&from.mutable_attributes),
21294
21295 immutable_attributes: ::fidl_next::TakeFrom::take_from(&from.immutable_attributes),
21296 }
21297 }
21298 }
21299
21300 impl ::fidl_next::TakeFrom<crate::WireNodeInfo> for ::fidl_fuchsia_io::NodeInfo {
21301 #[inline]
21302 fn take_from(from: &crate::WireNodeInfo) -> Self {
21303 Self {
21304 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
21305
21306 __source_breaking: ::fidl::marker::SourceBreaking,
21307 }
21308 }
21309 }
21310
21311 impl ::fidl_next::TakeFrom<crate::WireDirectoryInfo> for ::fidl_fuchsia_io::DirectoryInfo {
21312 #[inline]
21313 fn take_from(from: &crate::WireDirectoryInfo) -> Self {
21314 Self {
21315 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
21316
21317 __source_breaking: ::fidl::marker::SourceBreaking,
21318 }
21319 }
21320 }
21321
21322 impl ::fidl_next::TakeFrom<crate::WireFileInfo> for ::fidl_fuchsia_io::FileInfo {
21323 #[inline]
21324 fn take_from(from: &crate::WireFileInfo) -> Self {
21325 Self {
21326 is_append: from.is_append().map(::fidl_next::TakeFrom::take_from),
21327
21328 observer: from.observer().map(::fidl_next::TakeFrom::take_from),
21329
21330 stream: from.stream().map(::fidl_next::TakeFrom::take_from),
21331
21332 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
21333
21334 __source_breaking: ::fidl::marker::SourceBreaking,
21335 }
21336 }
21337 }
21338
21339 impl ::fidl_next::TakeFrom<crate::WireSymlinkInfo> for ::fidl_fuchsia_io::SymlinkInfo {
21340 #[inline]
21341 fn take_from(from: &crate::WireSymlinkInfo) -> Self {
21342 Self {
21343 target: from.target().map(::fidl_next::TakeFrom::take_from),
21344
21345 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
21346
21347 __source_breaking: ::fidl::marker::SourceBreaking,
21348 }
21349 }
21350 }
21351
21352 impl ::fidl_next::TakeFrom<crate::WireRepresentation> for ::fidl_fuchsia_io::Representation {
21353 #[inline]
21354 fn take_from(from: &crate::WireRepresentation) -> Self {
21355 match from.as_ref() {
21356 crate::representation::Ref::Node(value) => {
21357 Self::Node(::fidl_next::TakeFrom::take_from(value))
21358 }
21359
21360 crate::representation::Ref::Directory(value) => {
21361 Self::Directory(::fidl_next::TakeFrom::take_from(value))
21362 }
21363
21364 crate::representation::Ref::File(value) => {
21365 Self::File(::fidl_next::TakeFrom::take_from(value))
21366 }
21367
21368 crate::representation::Ref::Symlink(value) => {
21369 Self::Symlink(::fidl_next::TakeFrom::take_from(value))
21370 }
21371
21372 crate::representation::Ref::UnknownOrdinal_(unknown_ordinal) => {
21373 Self::__SourceBreaking { unknown_ordinal }
21374 }
21375 }
21376 }
21377 }
21378
21379 impl ::fidl_next::TakeFrom<crate::WireOptionalRepresentation>
21380 for Option<Box<::fidl_fuchsia_io::Representation>>
21381 {
21382 #[inline]
21383 fn take_from(from: &crate::WireOptionalRepresentation) -> Self {
21384 if let Some(inner) = from.as_ref() {
21385 Some(::fidl_next::TakeFrom::take_from(inner))
21386 } else {
21387 None
21388 }
21389 }
21390 }
21391
21392 impl ::fidl_next::TakeFrom<crate::WireNodeAttributesQuery>
21393 for ::fidl_fuchsia_io::NodeAttributesQuery
21394 {
21395 #[inline]
21396 fn take_from(from: &crate::WireNodeAttributesQuery) -> Self {
21397 Self::from_bits_retain(from.value.into())
21398 }
21399 }
21400
21401 impl ::fidl_next::TakeFrom<crate::WireNodeGetAttributesRequest>
21402 for ::fidl_fuchsia_io::NodeGetAttributesRequest
21403 {
21404 #[inline]
21405 fn take_from(from: &crate::WireNodeGetAttributesRequest) -> Self {
21406 Self { query: ::fidl_next::TakeFrom::take_from(&from.query) }
21407 }
21408 }
21409
21410 #[cfg(target_os = "fuchsia")]
21411 pub type NodeProxy = ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::Node>;
21414
21415 impl ::fidl_next::TakeFrom<crate::Node> for ::fidl_fuchsia_io::NodeMarker {
21416 #[inline]
21417 fn take_from(from: &crate::Node) -> Self {
21418 Self
21419 }
21420 }
21421
21422 impl ::fidl_next::TakeFrom<crate::WireDirectoryDeprecatedOpenRequest>
21423 for ::fidl_fuchsia_io::DirectoryDeprecatedOpenRequest
21424 {
21425 #[inline]
21426 fn take_from(from: &crate::WireDirectoryDeprecatedOpenRequest) -> Self {
21427 Self {
21428 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
21429
21430 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
21431
21432 path: ::fidl_next::TakeFrom::take_from(&from.path),
21433
21434 object: ::fidl_next::TakeFrom::take_from(&from.object),
21435 }
21436 }
21437 }
21438
21439 impl ::fidl_next::TakeFrom<crate::WireOptions> for ::fidl_fuchsia_io::Options {
21440 #[inline]
21441 fn take_from(from: &crate::WireOptions) -> Self {
21442 Self {
21443 attributes: from.attributes().map(::fidl_next::TakeFrom::take_from),
21444
21445 create_attributes: from.create_attributes().map(::fidl_next::TakeFrom::take_from),
21446
21447 __source_breaking: ::fidl::marker::SourceBreaking,
21448 }
21449 }
21450 }
21451
21452 impl ::fidl_next::TakeFrom<crate::WireDirectoryOpenRequest>
21453 for ::fidl_fuchsia_io::DirectoryOpenRequest
21454 {
21455 #[inline]
21456 fn take_from(from: &crate::WireDirectoryOpenRequest) -> Self {
21457 Self {
21458 path: ::fidl_next::TakeFrom::take_from(&from.path),
21459
21460 flags: ::fidl_next::TakeFrom::take_from(&from.flags),
21461
21462 options: ::fidl_next::TakeFrom::take_from(&from.options),
21463
21464 object: ::fidl_next::TakeFrom::take_from(&from.object),
21465 }
21466 }
21467 }
21468
21469 impl ::fidl_next::TakeFrom<crate::WireDirectoryCreateSymlinkRequest>
21470 for ::fidl_fuchsia_io::DirectoryCreateSymlinkRequest
21471 {
21472 #[inline]
21473 fn take_from(from: &crate::WireDirectoryCreateSymlinkRequest) -> Self {
21474 Self {
21475 name: ::fidl_next::TakeFrom::take_from(&from.name),
21476
21477 target: ::fidl_next::TakeFrom::take_from(&from.target),
21478
21479 connection: ::fidl_next::TakeFrom::take_from(&from.connection),
21480 }
21481 }
21482 }
21483
21484 #[cfg(target_os = "fuchsia")]
21485 pub type DirectoryProxy =
21488 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::Directory>;
21489
21490 impl ::fidl_next::TakeFrom<crate::Directory> for ::fidl_fuchsia_io::DirectoryMarker {
21491 #[inline]
21492 fn take_from(from: &crate::Directory) -> Self {
21493 Self
21494 }
21495 }
21496
21497 impl ::fidl_next::TakeFrom<crate::WireDirectoryObject> for ::fidl_fuchsia_io::DirectoryObject {
21498 #[inline]
21499 fn take_from(from: &crate::WireDirectoryObject) -> Self {
21500 Self {}
21501 }
21502 }
21503
21504 #[cfg(target_os = "fuchsia")]
21505 pub type DirectoryWatcherProxy =
21508 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::DirectoryWatcher>;
21509
21510 impl ::fidl_next::TakeFrom<crate::DirectoryWatcher> for ::fidl_fuchsia_io::DirectoryWatcherMarker {
21511 #[inline]
21512 fn take_from(from: &crate::DirectoryWatcher) -> Self {
21513 Self
21514 }
21515 }
21516
21517 impl ::fidl_next::TakeFrom<crate::WireDirentType> for ::fidl_fuchsia_io::DirentType {
21518 #[inline]
21519 fn take_from(from: &crate::WireDirentType) -> Self {
21520 match crate::DirentType::from(*from) {
21521 crate::DirentType::Unknown => Self::Unknown,
21522
21523 crate::DirentType::Directory => Self::Directory,
21524
21525 crate::DirentType::BlockDevice => Self::BlockDevice,
21526
21527 crate::DirentType::File => Self::File,
21528
21529 crate::DirentType::Symlink => Self::Symlink,
21530
21531 crate::DirentType::Service => Self::Service,
21532
21533 crate::DirentType::UnknownOrdinal_(value) => {
21534 Self::__SourceBreaking { unknown_ordinal: value }
21535 }
21536 }
21537 }
21538 }
21539
21540 impl ::fidl_next::TakeFrom<crate::WireExtendedAttributeIteratorGetNextResponse>
21541 for ::fidl_fuchsia_io::ExtendedAttributeIteratorGetNextResponse
21542 {
21543 #[inline]
21544 fn take_from(from: &crate::WireExtendedAttributeIteratorGetNextResponse) -> Self {
21545 Self {
21546 attributes: ::fidl_next::TakeFrom::take_from(&from.attributes),
21547
21548 last: ::fidl_next::TakeFrom::take_from(&from.last),
21549 }
21550 }
21551 }
21552
21553 #[cfg(target_os = "fuchsia")]
21554 pub type ExtendedAttributeIteratorProxy = ::fidl_next::ClientSender<
21557 ::fidl_next::fuchsia::zx::Channel,
21558 crate::ExtendedAttributeIterator,
21559 >;
21560
21561 impl ::fidl_next::TakeFrom<crate::ExtendedAttributeIterator>
21562 for ::fidl_fuchsia_io::ExtendedAttributeIteratorMarker
21563 {
21564 #[inline]
21565 fn take_from(from: &crate::ExtendedAttributeIterator) -> Self {
21566 Self
21567 }
21568 }
21569
21570 impl ::fidl_next::TakeFrom<crate::WireReadableReadRequest>
21571 for ::fidl_fuchsia_io::ReadableReadRequest
21572 {
21573 #[inline]
21574 fn take_from(from: &crate::WireReadableReadRequest) -> Self {
21575 Self { count: ::fidl_next::TakeFrom::take_from(&from.count) }
21576 }
21577 }
21578
21579 impl ::fidl_next::TakeFrom<crate::WireReadableReadResponse>
21580 for ::fidl_fuchsia_io::ReadableReadResponse
21581 {
21582 #[inline]
21583 fn take_from(from: &crate::WireReadableReadResponse) -> Self {
21584 Self { data: ::fidl_next::TakeFrom::take_from(&from.data) }
21585 }
21586 }
21587
21588 #[cfg(target_os = "fuchsia")]
21589 pub type ReadableProxy =
21592 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::Readable>;
21593
21594 impl ::fidl_next::TakeFrom<crate::Readable> for ::fidl_fuchsia_io::ReadableMarker {
21595 #[inline]
21596 fn take_from(from: &crate::Readable) -> Self {
21597 Self
21598 }
21599 }
21600
21601 impl ::fidl_next::TakeFrom<crate::WireWritableWriteRequest>
21602 for ::fidl_fuchsia_io::WritableWriteRequest
21603 {
21604 #[inline]
21605 fn take_from(from: &crate::WireWritableWriteRequest) -> Self {
21606 Self { data: ::fidl_next::TakeFrom::take_from(&from.data) }
21607 }
21608 }
21609
21610 impl ::fidl_next::TakeFrom<crate::WireWritableWriteResponse>
21611 for ::fidl_fuchsia_io::WritableWriteResponse
21612 {
21613 #[inline]
21614 fn take_from(from: &crate::WireWritableWriteResponse) -> Self {
21615 Self { actual_count: ::fidl_next::TakeFrom::take_from(&from.actual_count) }
21616 }
21617 }
21618
21619 #[cfg(target_os = "fuchsia")]
21620 pub type WritableProxy =
21623 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::Writable>;
21624
21625 impl ::fidl_next::TakeFrom<crate::Writable> for ::fidl_fuchsia_io::WritableMarker {
21626 #[inline]
21627 fn take_from(from: &crate::Writable) -> Self {
21628 Self
21629 }
21630 }
21631
21632 impl ::fidl_next::TakeFrom<crate::WireFileSeekRequest> for ::fidl_fuchsia_io::FileSeekRequest {
21633 #[inline]
21634 fn take_from(from: &crate::WireFileSeekRequest) -> Self {
21635 Self {
21636 origin: ::fidl_next::TakeFrom::take_from(&from.origin),
21637
21638 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
21639 }
21640 }
21641 }
21642
21643 impl ::fidl_next::TakeFrom<crate::WireFileSeekResponse> for ::fidl_fuchsia_io::FileSeekResponse {
21644 #[inline]
21645 fn take_from(from: &crate::WireFileSeekResponse) -> Self {
21646 Self { offset_from_start: ::fidl_next::TakeFrom::take_from(&from.offset_from_start) }
21647 }
21648 }
21649
21650 impl ::fidl_next::TakeFrom<crate::WireFileReadAtRequest> for ::fidl_fuchsia_io::FileReadAtRequest {
21651 #[inline]
21652 fn take_from(from: &crate::WireFileReadAtRequest) -> Self {
21653 Self {
21654 count: ::fidl_next::TakeFrom::take_from(&from.count),
21655
21656 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
21657 }
21658 }
21659 }
21660
21661 impl ::fidl_next::TakeFrom<crate::WireFileReadAtResponse>
21662 for ::fidl_fuchsia_io::FileReadAtResponse
21663 {
21664 #[inline]
21665 fn take_from(from: &crate::WireFileReadAtResponse) -> Self {
21666 Self { data: ::fidl_next::TakeFrom::take_from(&from.data) }
21667 }
21668 }
21669
21670 impl ::fidl_next::TakeFrom<crate::WireFileWriteAtRequest>
21671 for ::fidl_fuchsia_io::FileWriteAtRequest
21672 {
21673 #[inline]
21674 fn take_from(from: &crate::WireFileWriteAtRequest) -> Self {
21675 Self {
21676 data: ::fidl_next::TakeFrom::take_from(&from.data),
21677
21678 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
21679 }
21680 }
21681 }
21682
21683 impl ::fidl_next::TakeFrom<crate::WireFileWriteAtResponse>
21684 for ::fidl_fuchsia_io::FileWriteAtResponse
21685 {
21686 #[inline]
21687 fn take_from(from: &crate::WireFileWriteAtResponse) -> Self {
21688 Self { actual_count: ::fidl_next::TakeFrom::take_from(&from.actual_count) }
21689 }
21690 }
21691
21692 impl ::fidl_next::TakeFrom<crate::WireFileResizeRequest> for ::fidl_fuchsia_io::FileResizeRequest {
21693 #[inline]
21694 fn take_from(from: &crate::WireFileResizeRequest) -> Self {
21695 Self { length: ::fidl_next::TakeFrom::take_from(&from.length) }
21696 }
21697 }
21698
21699 impl ::fidl_next::TakeFrom<crate::WireVmoFlags> for ::fidl_fuchsia_io::VmoFlags {
21700 #[inline]
21701 fn take_from(from: &crate::WireVmoFlags) -> Self {
21702 Self::from_bits_retain(from.value.into())
21703 }
21704 }
21705
21706 impl ::fidl_next::TakeFrom<crate::WireFileGetBackingMemoryRequest>
21707 for ::fidl_fuchsia_io::FileGetBackingMemoryRequest
21708 {
21709 #[inline]
21710 fn take_from(from: &crate::WireFileGetBackingMemoryRequest) -> Self {
21711 Self { flags: ::fidl_next::TakeFrom::take_from(&from.flags) }
21712 }
21713 }
21714
21715 impl ::fidl_next::TakeFrom<crate::WireFileGetBackingMemoryResponse>
21716 for ::fidl_fuchsia_io::FileGetBackingMemoryResponse
21717 {
21718 #[inline]
21719 fn take_from(from: &crate::WireFileGetBackingMemoryResponse) -> Self {
21720 Self { vmo: ::fidl_next::TakeFrom::take_from(&from.vmo) }
21721 }
21722 }
21723
21724 impl ::fidl_next::TakeFrom<crate::WireLinkableLinkIntoRequest>
21725 for ::fidl_fuchsia_io::LinkableLinkIntoRequest
21726 {
21727 #[inline]
21728 fn take_from(from: &crate::WireLinkableLinkIntoRequest) -> Self {
21729 Self {
21730 dst_parent_token: ::fidl_next::TakeFrom::take_from(&from.dst_parent_token),
21731
21732 dst: ::fidl_next::TakeFrom::take_from(&from.dst),
21733 }
21734 }
21735 }
21736
21737 #[cfg(target_os = "fuchsia")]
21738 pub type LinkableProxy =
21741 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::Linkable>;
21742
21743 impl ::fidl_next::TakeFrom<crate::Linkable> for ::fidl_fuchsia_io::LinkableMarker {
21744 #[inline]
21745 fn take_from(from: &crate::Linkable) -> Self {
21746 Self
21747 }
21748 }
21749
21750 impl ::fidl_next::TakeFrom<crate::WireFileAllocateRequest>
21751 for ::fidl_fuchsia_io::FileAllocateRequest
21752 {
21753 #[inline]
21754 fn take_from(from: &crate::WireFileAllocateRequest) -> Self {
21755 Self {
21756 offset: ::fidl_next::TakeFrom::take_from(&from.offset),
21757
21758 length: ::fidl_next::TakeFrom::take_from(&from.length),
21759
21760 mode: ::fidl_next::TakeFrom::take_from(&from.mode),
21761 }
21762 }
21763 }
21764
21765 impl ::fidl_next::TakeFrom<crate::WireFileEnableVerityRequest>
21766 for ::fidl_fuchsia_io::FileEnableVerityRequest
21767 {
21768 #[inline]
21769 fn take_from(from: &crate::WireFileEnableVerityRequest) -> Self {
21770 Self { options: ::fidl_next::TakeFrom::take_from(&from.options) }
21771 }
21772 }
21773
21774 #[cfg(target_os = "fuchsia")]
21775 pub type FileProxy = ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::File>;
21778
21779 impl ::fidl_next::TakeFrom<crate::File> for ::fidl_fuchsia_io::FileMarker {
21780 #[inline]
21781 fn take_from(from: &crate::File) -> Self {
21782 Self
21783 }
21784 }
21785
21786 impl ::fidl_next::TakeFrom<crate::WireFileObject> for ::fidl_fuchsia_io::FileObject {
21787 #[inline]
21788 fn take_from(from: &crate::WireFileObject) -> Self {
21789 Self {
21790 event: ::fidl_next::TakeFrom::take_from(&from.event),
21791
21792 stream: ::fidl_next::TakeFrom::take_from(&from.stream),
21793 }
21794 }
21795 }
21796
21797 impl ::fidl_next::TakeFrom<crate::WireFileSignal> for ::fidl_fuchsia_io::FileSignal {
21798 #[inline]
21799 fn take_from(from: &crate::WireFileSignal) -> Self {
21800 Self::from_bits_retain(from.value.into())
21801 }
21802 }
21803
21804 impl ::fidl_next::TakeFrom<crate::WireFilesystemInfo> for ::fidl_fuchsia_io::FilesystemInfo {
21805 #[inline]
21806 fn take_from(from: &crate::WireFilesystemInfo) -> Self {
21807 Self {
21808 total_bytes: ::fidl_next::TakeFrom::take_from(&from.total_bytes),
21809
21810 used_bytes: ::fidl_next::TakeFrom::take_from(&from.used_bytes),
21811
21812 total_nodes: ::fidl_next::TakeFrom::take_from(&from.total_nodes),
21813
21814 used_nodes: ::fidl_next::TakeFrom::take_from(&from.used_nodes),
21815
21816 free_shared_pool_bytes: ::fidl_next::TakeFrom::take_from(
21817 &from.free_shared_pool_bytes,
21818 ),
21819
21820 fs_id: ::fidl_next::TakeFrom::take_from(&from.fs_id),
21821
21822 block_size: ::fidl_next::TakeFrom::take_from(&from.block_size),
21823
21824 max_filename_size: ::fidl_next::TakeFrom::take_from(&from.max_filename_size),
21825
21826 fs_type: ::fidl_next::TakeFrom::take_from(&from.fs_type),
21827
21828 padding: ::fidl_next::TakeFrom::take_from(&from.padding),
21829
21830 name: ::fidl_next::TakeFrom::take_from(&from.name),
21831 }
21832 }
21833 }
21834
21835 impl ::fidl_next::TakeFrom<crate::WireService> for ::fidl_fuchsia_io::Service {
21836 #[inline]
21837 fn take_from(from: &crate::WireService) -> Self {
21838 Self {}
21839 }
21840 }
21841
21842 impl ::fidl_next::TakeFrom<crate::WireSymlinkObject> for ::fidl_fuchsia_io::SymlinkObject {
21843 #[inline]
21844 fn take_from(from: &crate::WireSymlinkObject) -> Self {
21845 Self { target: ::fidl_next::TakeFrom::take_from(&from.target) }
21846 }
21847 }
21848
21849 impl ::fidl_next::TakeFrom<crate::WireNodeInfoDeprecated>
21850 for ::fidl_fuchsia_io::NodeInfoDeprecated
21851 {
21852 #[inline]
21853 fn take_from(from: &crate::WireNodeInfoDeprecated) -> Self {
21854 match from.as_ref() {
21855 crate::node_info_deprecated::Ref::Service(value) => {
21856 Self::Service(::fidl_next::TakeFrom::take_from(value))
21857 }
21858
21859 crate::node_info_deprecated::Ref::File(value) => {
21860 Self::File(::fidl_next::TakeFrom::take_from(value))
21861 }
21862
21863 crate::node_info_deprecated::Ref::Directory(value) => {
21864 Self::Directory(::fidl_next::TakeFrom::take_from(value))
21865 }
21866
21867 crate::node_info_deprecated::Ref::Symlink(value) => {
21868 Self::Symlink(::fidl_next::TakeFrom::take_from(value))
21869 }
21870 }
21871 }
21872 }
21873
21874 impl ::fidl_next::TakeFrom<crate::WireOptionalNodeInfoDeprecated>
21875 for Option<Box<::fidl_fuchsia_io::NodeInfoDeprecated>>
21876 {
21877 #[inline]
21878 fn take_from(from: &crate::WireOptionalNodeInfoDeprecated) -> Self {
21879 if let Some(inner) = from.as_ref() {
21880 Some(::fidl_next::TakeFrom::take_from(inner))
21881 } else {
21882 None
21883 }
21884 }
21885 }
21886
21887 #[cfg(target_os = "fuchsia")]
21888 pub type SymlinkProxy =
21891 ::fidl_next::ClientSender<::fidl_next::fuchsia::zx::Channel, crate::Symlink>;
21892
21893 impl ::fidl_next::TakeFrom<crate::Symlink> for ::fidl_fuchsia_io::SymlinkMarker {
21894 #[inline]
21895 fn take_from(from: &crate::Symlink) -> Self {
21896 Self
21897 }
21898 }
21899
21900 impl ::fidl_next::TakeFrom<crate::WireWatchEvent> for ::fidl_fuchsia_io::WatchEvent {
21901 #[inline]
21902 fn take_from(from: &crate::WireWatchEvent) -> Self {
21903 match crate::WatchEvent::from(*from) {
21904 crate::WatchEvent::Deleted => Self::Deleted,
21905
21906 crate::WatchEvent::Added => Self::Added,
21907
21908 crate::WatchEvent::Removed => Self::Removed,
21909
21910 crate::WatchEvent::Existing => Self::Existing,
21911
21912 crate::WatchEvent::Idle => Self::Idle,
21913 }
21914 }
21915 }
21916}