fidl_fuchsia_lowpan_common/
fidl_fuchsia_lowpan_common.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
8use futures::future::{self, MaybeDone, TryFutureExt};
9use zx_status;
10
11/// Index used to identify a specific channel in the LoWPAN API.
12pub type ChannelIndex = u16;
13
14/// Type describing the name of the network interface.
15///
16/// Interface names must satisfy the following regular expression:
17///
18///     ^[a-z_][-_.+0-9a-z]{1,31}$
19pub type InterfaceName = String;
20
21/// Transmit/Received power, in dBm.
22///
23/// Can represent transmit and receive power levels from .2 femtowatts (-127dBm)
24/// to 5 gigawatts (127dBm).
25///
26/// The value -128 ([`RSSI_UNSPECIFIED`]) is reserved for
27/// indicating that a signal level is unspecified when used
28/// in the context of RSSI values, and must not be used when
29/// specifying transmit power.
30pub type PowerDbm = i8;
31
32pub const MAX_LOWPAN_DEVICES: u32 = 8;
33
34#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
35pub struct DeviceWatcherWatchDevicesResponse {
36    pub added: Vec<String>,
37    pub removed: Vec<String>,
38}
39
40impl fidl::Persistable for DeviceWatcherWatchDevicesResponse {}
41
42/// LoWPAN MAC address.
43///
44/// On 802.15.4 networks, this is an EUI64.
45#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
46#[repr(C)]
47pub struct MacAddress {
48    pub octets: [u8; 8],
49}
50
51impl fidl::Persistable for MacAddress {}
52
53mod internal {
54    use super::*;
55
56    impl fidl::encoding::ValueTypeMarker for DeviceWatcherWatchDevicesResponse {
57        type Borrowed<'a> = &'a Self;
58        fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
59            value
60        }
61    }
62
63    unsafe impl fidl::encoding::TypeMarker for DeviceWatcherWatchDevicesResponse {
64        type Owned = Self;
65
66        #[inline(always)]
67        fn inline_align(_context: fidl::encoding::Context) -> usize {
68            8
69        }
70
71        #[inline(always)]
72        fn inline_size(_context: fidl::encoding::Context) -> usize {
73            32
74        }
75    }
76
77    unsafe impl<D: fidl::encoding::ResourceDialect>
78        fidl::encoding::Encode<DeviceWatcherWatchDevicesResponse, D>
79        for &DeviceWatcherWatchDevicesResponse
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::<DeviceWatcherWatchDevicesResponse>(offset);
89            // Delegate to tuple encoding.
90            fidl::encoding::Encode::<DeviceWatcherWatchDevicesResponse, D>::encode(
91                (
92                    <fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8> as fidl::encoding::ValueTypeMarker>::borrow(&self.added),
93                    <fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8> as fidl::encoding::ValueTypeMarker>::borrow(&self.removed),
94                ),
95                encoder, offset, _depth
96            )
97        }
98    }
99    unsafe impl<
100            D: fidl::encoding::ResourceDialect,
101            T0: fidl::encoding::Encode<fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8>, D>,
102            T1: fidl::encoding::Encode<fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8>, D>,
103        > fidl::encoding::Encode<DeviceWatcherWatchDevicesResponse, D> for (T0, T1)
104    {
105        #[inline]
106        unsafe fn encode(
107            self,
108            encoder: &mut fidl::encoding::Encoder<'_, D>,
109            offset: usize,
110            depth: fidl::encoding::Depth,
111        ) -> fidl::Result<()> {
112            encoder.debug_check_bounds::<DeviceWatcherWatchDevicesResponse>(offset);
113            // Zero out padding regions. There's no need to apply masks
114            // because the unmasked parts will be overwritten by fields.
115            // Write the fields.
116            self.0.encode(encoder, offset + 0, depth)?;
117            self.1.encode(encoder, offset + 16, depth)?;
118            Ok(())
119        }
120    }
121
122    impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
123        for DeviceWatcherWatchDevicesResponse
124    {
125        #[inline(always)]
126        fn new_empty() -> Self {
127            Self {
128                added: fidl::new_empty!(
129                    fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8>,
130                    D
131                ),
132                removed: fidl::new_empty!(
133                    fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8>,
134                    D
135                ),
136            }
137        }
138
139        #[inline]
140        unsafe fn decode(
141            &mut self,
142            decoder: &mut fidl::encoding::Decoder<'_, D>,
143            offset: usize,
144            _depth: fidl::encoding::Depth,
145        ) -> fidl::Result<()> {
146            decoder.debug_check_bounds::<Self>(offset);
147            // Verify that padding bytes are zero.
148            fidl::decode!(
149                fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8>,
150                D,
151                &mut self.added,
152                decoder,
153                offset + 0,
154                _depth
155            )?;
156            fidl::decode!(
157                fidl::encoding::Vector<fidl::encoding::BoundedString<32>, 8>,
158                D,
159                &mut self.removed,
160                decoder,
161                offset + 16,
162                _depth
163            )?;
164            Ok(())
165        }
166    }
167
168    impl fidl::encoding::ValueTypeMarker for MacAddress {
169        type Borrowed<'a> = &'a Self;
170        fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
171            value
172        }
173    }
174
175    unsafe impl fidl::encoding::TypeMarker for MacAddress {
176        type Owned = Self;
177
178        #[inline(always)]
179        fn inline_align(_context: fidl::encoding::Context) -> usize {
180            1
181        }
182
183        #[inline(always)]
184        fn inline_size(_context: fidl::encoding::Context) -> usize {
185            8
186        }
187        #[inline(always)]
188        fn encode_is_copy() -> bool {
189            true
190        }
191
192        #[inline(always)]
193        fn decode_is_copy() -> bool {
194            true
195        }
196    }
197
198    unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<MacAddress, D>
199        for &MacAddress
200    {
201        #[inline]
202        unsafe fn encode(
203            self,
204            encoder: &mut fidl::encoding::Encoder<'_, D>,
205            offset: usize,
206            _depth: fidl::encoding::Depth,
207        ) -> fidl::Result<()> {
208            encoder.debug_check_bounds::<MacAddress>(offset);
209            unsafe {
210                // Copy the object into the buffer.
211                let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
212                (buf_ptr as *mut MacAddress).write_unaligned((self as *const MacAddress).read());
213                // Zero out padding regions. Unlike `fidl_struct_impl_noncopy!`, this must be
214                // done second because the memcpy will write garbage to these bytes.
215            }
216            Ok(())
217        }
218    }
219    unsafe impl<
220            D: fidl::encoding::ResourceDialect,
221            T0: fidl::encoding::Encode<fidl::encoding::Array<u8, 8>, D>,
222        > fidl::encoding::Encode<MacAddress, D> for (T0,)
223    {
224        #[inline]
225        unsafe fn encode(
226            self,
227            encoder: &mut fidl::encoding::Encoder<'_, D>,
228            offset: usize,
229            depth: fidl::encoding::Depth,
230        ) -> fidl::Result<()> {
231            encoder.debug_check_bounds::<MacAddress>(offset);
232            // Zero out padding regions. There's no need to apply masks
233            // because the unmasked parts will be overwritten by fields.
234            // Write the fields.
235            self.0.encode(encoder, offset + 0, depth)?;
236            Ok(())
237        }
238    }
239
240    impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for MacAddress {
241        #[inline(always)]
242        fn new_empty() -> Self {
243            Self { octets: fidl::new_empty!(fidl::encoding::Array<u8, 8>, D) }
244        }
245
246        #[inline]
247        unsafe fn decode(
248            &mut self,
249            decoder: &mut fidl::encoding::Decoder<'_, D>,
250            offset: usize,
251            _depth: fidl::encoding::Depth,
252        ) -> fidl::Result<()> {
253            decoder.debug_check_bounds::<Self>(offset);
254            let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
255            // Verify that padding bytes are zero.
256            // Copy from the buffer into the object.
257            unsafe {
258                std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 8);
259            }
260            Ok(())
261        }
262    }
263}