#![warn(clippy::all)]
#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
use bitflags::bitflags;
use fidl::client::QueryResponseFut;
use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
use fidl::endpoints::{ControlHandle as _, Responder as _};
use futures::future::{self, MaybeDone, TryFutureExt};
use zx_status;
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct Config {
pub my_flag: bool,
pub my_int16: i16,
pub my_int32: i32,
pub my_int64: i64,
pub my_int8: i8,
pub my_string: String,
pub my_uint16: u16,
pub my_uint32: u32,
pub my_uint64: u64,
pub my_uint8: u8,
pub my_vector_of_flag: Vec<bool>,
pub my_vector_of_int16: Vec<i16>,
pub my_vector_of_int32: Vec<i32>,
pub my_vector_of_int64: Vec<i64>,
pub my_vector_of_int8: Vec<i8>,
pub my_vector_of_string: Vec<String>,
pub my_vector_of_uint16: Vec<u16>,
pub my_vector_of_uint32: Vec<u32>,
pub my_vector_of_uint64: Vec<u64>,
pub my_vector_of_uint8: Vec<u8>,
}
impl fidl::Persistable for Config {}
mod internal {
use super::*;
impl fidl::encoding::ValueTypeMarker for Config {
type Borrowed<'a> = &'a Self;
fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
value
}
}
unsafe impl fidl::encoding::TypeMarker for Config {
type Owned = Self;
#[inline(always)]
fn inline_align(_context: fidl::encoding::Context) -> usize {
8
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
224
}
}
unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<'_, D>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<Config>(offset);
fidl::encoding::Encode::<Config, D>::encode(
(
<bool as fidl::encoding::ValueTypeMarker>::borrow(&self.my_flag),
<i16 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_int16),
<i32 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_int32),
<i64 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_int64),
<i8 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_int8),
<fidl::encoding::BoundedString<100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_string),
<u16 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_uint16),
<u32 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_uint32),
<u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_uint64),
<u8 as fidl::encoding::ValueTypeMarker>::borrow(&self.my_uint8),
<fidl::encoding::Vector<bool, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_flag),
<fidl::encoding::Vector<i16, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_int16),
<fidl::encoding::Vector<i32, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_int32),
<fidl::encoding::Vector<i64, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_int64),
<fidl::encoding::Vector<i8, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_int8),
<fidl::encoding::Vector<fidl::encoding::BoundedString<100>, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_string),
<fidl::encoding::Vector<u16, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_uint16),
<fidl::encoding::Vector<u32, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_uint32),
<fidl::encoding::Vector<u64, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_uint64),
<fidl::encoding::Vector<u8, 100> as fidl::encoding::ValueTypeMarker>::borrow(&self.my_vector_of_uint8),
),
encoder, offset, _depth
)
}
}
unsafe impl<
D: fidl::encoding::ResourceDialect,
T0: fidl::encoding::Encode<bool, D>,
T1: fidl::encoding::Encode<i16, D>,
T2: fidl::encoding::Encode<i32, D>,
T3: fidl::encoding::Encode<i64, D>,
T4: fidl::encoding::Encode<i8, D>,
T5: fidl::encoding::Encode<fidl::encoding::BoundedString<100>, D>,
T6: fidl::encoding::Encode<u16, D>,
T7: fidl::encoding::Encode<u32, D>,
T8: fidl::encoding::Encode<u64, D>,
T9: fidl::encoding::Encode<u8, D>,
T10: fidl::encoding::Encode<fidl::encoding::Vector<bool, 100>, D>,
T11: fidl::encoding::Encode<fidl::encoding::Vector<i16, 100>, D>,
T12: fidl::encoding::Encode<fidl::encoding::Vector<i32, 100>, D>,
T13: fidl::encoding::Encode<fidl::encoding::Vector<i64, 100>, D>,
T14: fidl::encoding::Encode<fidl::encoding::Vector<i8, 100>, D>,
T15: fidl::encoding::Encode<
fidl::encoding::Vector<fidl::encoding::BoundedString<100>, 100>,
D,
>,
T16: fidl::encoding::Encode<fidl::encoding::Vector<u16, 100>, D>,
T17: fidl::encoding::Encode<fidl::encoding::Vector<u32, 100>, D>,
T18: fidl::encoding::Encode<fidl::encoding::Vector<u64, 100>, D>,
T19: fidl::encoding::Encode<fidl::encoding::Vector<u8, 100>, D>,
> fidl::encoding::Encode<Config, D>
for (
T0,
T1,
T2,
T3,
T4,
T5,
T6,
T7,
T8,
T9,
T10,
T11,
T12,
T13,
T14,
T15,
T16,
T17,
T18,
T19,
)
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<'_, D>,
offset: usize,
depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<Config>(offset);
unsafe {
let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
(ptr as *mut u64).write_unaligned(0);
}
unsafe {
let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
(ptr as *mut u64).write_unaligned(0);
}
unsafe {
let ptr = encoder.buf.as_mut_ptr().add(offset).offset(40);
(ptr as *mut u64).write_unaligned(0);
}
unsafe {
let ptr = encoder.buf.as_mut_ptr().add(offset).offset(56);
(ptr as *mut u64).write_unaligned(0);
}
self.0.encode(encoder, offset + 0, depth)?;
self.1.encode(encoder, offset + 2, depth)?;
self.2.encode(encoder, offset + 4, depth)?;
self.3.encode(encoder, offset + 8, depth)?;
self.4.encode(encoder, offset + 16, depth)?;
self.5.encode(encoder, offset + 24, depth)?;
self.6.encode(encoder, offset + 40, depth)?;
self.7.encode(encoder, offset + 44, depth)?;
self.8.encode(encoder, offset + 48, depth)?;
self.9.encode(encoder, offset + 56, depth)?;
self.10.encode(encoder, offset + 64, depth)?;
self.11.encode(encoder, offset + 80, depth)?;
self.12.encode(encoder, offset + 96, depth)?;
self.13.encode(encoder, offset + 112, depth)?;
self.14.encode(encoder, offset + 128, depth)?;
self.15.encode(encoder, offset + 144, depth)?;
self.16.encode(encoder, offset + 160, depth)?;
self.17.encode(encoder, offset + 176, depth)?;
self.18.encode(encoder, offset + 192, depth)?;
self.19.encode(encoder, offset + 208, depth)?;
Ok(())
}
}
impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
#[inline(always)]
fn new_empty() -> Self {
Self {
my_flag: fidl::new_empty!(bool, D),
my_int16: fidl::new_empty!(i16, D),
my_int32: fidl::new_empty!(i32, D),
my_int64: fidl::new_empty!(i64, D),
my_int8: fidl::new_empty!(i8, D),
my_string: fidl::new_empty!(fidl::encoding::BoundedString<100>, D),
my_uint16: fidl::new_empty!(u16, D),
my_uint32: fidl::new_empty!(u32, D),
my_uint64: fidl::new_empty!(u64, D),
my_uint8: fidl::new_empty!(u8, D),
my_vector_of_flag: fidl::new_empty!(fidl::encoding::Vector<bool, 100>, D),
my_vector_of_int16: fidl::new_empty!(fidl::encoding::Vector<i16, 100>, D),
my_vector_of_int32: fidl::new_empty!(fidl::encoding::Vector<i32, 100>, D),
my_vector_of_int64: fidl::new_empty!(fidl::encoding::Vector<i64, 100>, D),
my_vector_of_int8: fidl::new_empty!(fidl::encoding::Vector<i8, 100>, D),
my_vector_of_string: fidl::new_empty!(
fidl::encoding::Vector<fidl::encoding::BoundedString<100>, 100>,
D
),
my_vector_of_uint16: fidl::new_empty!(fidl::encoding::Vector<u16, 100>, D),
my_vector_of_uint32: fidl::new_empty!(fidl::encoding::Vector<u32, 100>, D),
my_vector_of_uint64: fidl::new_empty!(fidl::encoding::Vector<u64, 100>, D),
my_vector_of_uint8: fidl::new_empty!(fidl::encoding::Vector<u8, 100>, D),
}
}
#[inline]
unsafe fn decode(
&mut self,
decoder: &mut fidl::encoding::Decoder<'_, D>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
decoder.debug_check_bounds::<Self>(offset);
let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
let padval = unsafe { (ptr as *const u64).read_unaligned() };
let mask = 0xff00u64;
let maskedval = padval & mask;
if maskedval != 0 {
return Err(fidl::Error::NonZeroPadding {
padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
});
}
let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
let padval = unsafe { (ptr as *const u64).read_unaligned() };
let mask = 0xffffffffffffff00u64;
let maskedval = padval & mask;
if maskedval != 0 {
return Err(fidl::Error::NonZeroPadding {
padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
});
}
let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(40) };
let padval = unsafe { (ptr as *const u64).read_unaligned() };
let mask = 0xffff0000u64;
let maskedval = padval & mask;
if maskedval != 0 {
return Err(fidl::Error::NonZeroPadding {
padding_start: offset + 40 + ((mask as u64).trailing_zeros() / 8) as usize,
});
}
let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(56) };
let padval = unsafe { (ptr as *const u64).read_unaligned() };
let mask = 0xffffffffffffff00u64;
let maskedval = padval & mask;
if maskedval != 0 {
return Err(fidl::Error::NonZeroPadding {
padding_start: offset + 56 + ((mask as u64).trailing_zeros() / 8) as usize,
});
}
fidl::decode!(bool, D, &mut self.my_flag, decoder, offset + 0, _depth)?;
fidl::decode!(i16, D, &mut self.my_int16, decoder, offset + 2, _depth)?;
fidl::decode!(i32, D, &mut self.my_int32, decoder, offset + 4, _depth)?;
fidl::decode!(i64, D, &mut self.my_int64, decoder, offset + 8, _depth)?;
fidl::decode!(i8, D, &mut self.my_int8, decoder, offset + 16, _depth)?;
fidl::decode!(
fidl::encoding::BoundedString<100>,
D,
&mut self.my_string,
decoder,
offset + 24,
_depth
)?;
fidl::decode!(u16, D, &mut self.my_uint16, decoder, offset + 40, _depth)?;
fidl::decode!(u32, D, &mut self.my_uint32, decoder, offset + 44, _depth)?;
fidl::decode!(u64, D, &mut self.my_uint64, decoder, offset + 48, _depth)?;
fidl::decode!(u8, D, &mut self.my_uint8, decoder, offset + 56, _depth)?;
fidl::decode!(fidl::encoding::Vector<bool, 100>, D, &mut self.my_vector_of_flag, decoder, offset + 64, _depth)?;
fidl::decode!(fidl::encoding::Vector<i16, 100>, D, &mut self.my_vector_of_int16, decoder, offset + 80, _depth)?;
fidl::decode!(fidl::encoding::Vector<i32, 100>, D, &mut self.my_vector_of_int32, decoder, offset + 96, _depth)?;
fidl::decode!(fidl::encoding::Vector<i64, 100>, D, &mut self.my_vector_of_int64, decoder, offset + 112, _depth)?;
fidl::decode!(fidl::encoding::Vector<i8, 100>, D, &mut self.my_vector_of_int8, decoder, offset + 128, _depth)?;
fidl::decode!(
fidl::encoding::Vector<fidl::encoding::BoundedString<100>, 100>,
D,
&mut self.my_vector_of_string,
decoder,
offset + 144,
_depth
)?;
fidl::decode!(fidl::encoding::Vector<u16, 100>, D, &mut self.my_vector_of_uint16, decoder, offset + 160, _depth)?;
fidl::decode!(fidl::encoding::Vector<u32, 100>, D, &mut self.my_vector_of_uint32, decoder, offset + 176, _depth)?;
fidl::decode!(fidl::encoding::Vector<u64, 100>, D, &mut self.my_vector_of_uint64, decoder, offset + 192, _depth)?;
fidl::decode!(fidl::encoding::Vector<u8, 100>, D, &mut self.my_vector_of_uint8, decoder, offset + 208, _depth)?;
Ok(())
}
}
}