fidl_fuchsia_testing_deadline_common/
fidl_fuchsia_testing_deadline_common.rs1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
8use futures::future::{self, MaybeDone, TryFutureExt};
9use zx_status;
10
11pub const IDENTIFIER_SIZE: u32 = 256;
12
13#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct DeadlineId {
16 pub component_id: String,
18 pub code: String,
20}
21
22impl fidl::Persistable for DeadlineId {}
23
24mod internal {
25 use super::*;
26
27 impl fidl::encoding::ValueTypeMarker for DeadlineId {
28 type Borrowed<'a> = &'a Self;
29 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
30 value
31 }
32 }
33
34 unsafe impl fidl::encoding::TypeMarker for DeadlineId {
35 type Owned = Self;
36
37 #[inline(always)]
38 fn inline_align(_context: fidl::encoding::Context) -> usize {
39 8
40 }
41
42 #[inline(always)]
43 fn inline_size(_context: fidl::encoding::Context) -> usize {
44 32
45 }
46 }
47
48 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<DeadlineId, D>
49 for &DeadlineId
50 {
51 #[inline]
52 unsafe fn encode(
53 self,
54 encoder: &mut fidl::encoding::Encoder<'_, D>,
55 offset: usize,
56 _depth: fidl::encoding::Depth,
57 ) -> fidl::Result<()> {
58 encoder.debug_check_bounds::<DeadlineId>(offset);
59 fidl::encoding::Encode::<DeadlineId, D>::encode(
61 (
62 <fidl::encoding::BoundedString<256> as fidl::encoding::ValueTypeMarker>::borrow(
63 &self.component_id,
64 ),
65 <fidl::encoding::BoundedString<256> as fidl::encoding::ValueTypeMarker>::borrow(
66 &self.code,
67 ),
68 ),
69 encoder,
70 offset,
71 _depth,
72 )
73 }
74 }
75 unsafe impl<
76 D: fidl::encoding::ResourceDialect,
77 T0: fidl::encoding::Encode<fidl::encoding::BoundedString<256>, D>,
78 T1: fidl::encoding::Encode<fidl::encoding::BoundedString<256>, D>,
79 > fidl::encoding::Encode<DeadlineId, D> for (T0, T1)
80 {
81 #[inline]
82 unsafe fn encode(
83 self,
84 encoder: &mut fidl::encoding::Encoder<'_, D>,
85 offset: usize,
86 depth: fidl::encoding::Depth,
87 ) -> fidl::Result<()> {
88 encoder.debug_check_bounds::<DeadlineId>(offset);
89 self.0.encode(encoder, offset + 0, depth)?;
93 self.1.encode(encoder, offset + 16, depth)?;
94 Ok(())
95 }
96 }
97
98 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for DeadlineId {
99 #[inline(always)]
100 fn new_empty() -> Self {
101 Self {
102 component_id: fidl::new_empty!(fidl::encoding::BoundedString<256>, D),
103 code: fidl::new_empty!(fidl::encoding::BoundedString<256>, D),
104 }
105 }
106
107 #[inline]
108 unsafe fn decode(
109 &mut self,
110 decoder: &mut fidl::encoding::Decoder<'_, D>,
111 offset: usize,
112 _depth: fidl::encoding::Depth,
113 ) -> fidl::Result<()> {
114 decoder.debug_check_bounds::<Self>(offset);
115 fidl::decode!(
117 fidl::encoding::BoundedString<256>,
118 D,
119 &mut self.component_id,
120 decoder,
121 offset + 0,
122 _depth
123 )?;
124 fidl::decode!(
125 fidl::encoding::BoundedString<256>,
126 D,
127 &mut self.code,
128 decoder,
129 offset + 16,
130 _depth
131 )?;
132 Ok(())
133 }
134 }
135}