fidl_cf_sc_internal_hfphandsfreeprofileconfig/
fidl_cf_sc_internal_hfphandsfreeprofileconfig.rs#![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, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct Config {
pub call_waiting_or_three_way_calling: bool,
pub cli_presentation_capability: bool,
pub ec_or_nr: bool,
pub enhanced_voice_recognition: bool,
pub enhanced_voice_recognition_with_text: bool,
pub remote_volume_control: bool,
pub voice_recognition_activation: bool,
pub wide_band_speech: bool,
}
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 {
1
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
8
}
}
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.call_waiting_or_three_way_calling,
),
<bool as fidl::encoding::ValueTypeMarker>::borrow(
&self.cli_presentation_capability,
),
<bool as fidl::encoding::ValueTypeMarker>::borrow(&self.ec_or_nr),
<bool as fidl::encoding::ValueTypeMarker>::borrow(
&self.enhanced_voice_recognition,
),
<bool as fidl::encoding::ValueTypeMarker>::borrow(
&self.enhanced_voice_recognition_with_text,
),
<bool as fidl::encoding::ValueTypeMarker>::borrow(&self.remote_volume_control),
<bool as fidl::encoding::ValueTypeMarker>::borrow(
&self.voice_recognition_activation,
),
<bool as fidl::encoding::ValueTypeMarker>::borrow(&self.wide_band_speech),
),
encoder,
offset,
_depth,
)
}
}
unsafe impl<
D: fidl::encoding::ResourceDialect,
T0: fidl::encoding::Encode<bool, D>,
T1: fidl::encoding::Encode<bool, D>,
T2: fidl::encoding::Encode<bool, D>,
T3: fidl::encoding::Encode<bool, D>,
T4: fidl::encoding::Encode<bool, D>,
T5: fidl::encoding::Encode<bool, D>,
T6: fidl::encoding::Encode<bool, D>,
T7: fidl::encoding::Encode<bool, D>,
> fidl::encoding::Encode<Config, D> for (T0, T1, T2, T3, T4, T5, T6, T7)
{
#[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);
self.0.encode(encoder, offset + 0, depth)?;
self.1.encode(encoder, offset + 1, depth)?;
self.2.encode(encoder, offset + 2, depth)?;
self.3.encode(encoder, offset + 3, depth)?;
self.4.encode(encoder, offset + 4, depth)?;
self.5.encode(encoder, offset + 5, depth)?;
self.6.encode(encoder, offset + 6, depth)?;
self.7.encode(encoder, offset + 7, depth)?;
Ok(())
}
}
impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
#[inline(always)]
fn new_empty() -> Self {
Self {
call_waiting_or_three_way_calling: fidl::new_empty!(bool, D),
cli_presentation_capability: fidl::new_empty!(bool, D),
ec_or_nr: fidl::new_empty!(bool, D),
enhanced_voice_recognition: fidl::new_empty!(bool, D),
enhanced_voice_recognition_with_text: fidl::new_empty!(bool, D),
remote_volume_control: fidl::new_empty!(bool, D),
voice_recognition_activation: fidl::new_empty!(bool, D),
wide_band_speech: fidl::new_empty!(bool, 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);
fidl::decode!(
bool,
D,
&mut self.call_waiting_or_three_way_calling,
decoder,
offset + 0,
_depth
)?;
fidl::decode!(
bool,
D,
&mut self.cli_presentation_capability,
decoder,
offset + 1,
_depth
)?;
fidl::decode!(bool, D, &mut self.ec_or_nr, decoder, offset + 2, _depth)?;
fidl::decode!(
bool,
D,
&mut self.enhanced_voice_recognition,
decoder,
offset + 3,
_depth
)?;
fidl::decode!(
bool,
D,
&mut self.enhanced_voice_recognition_with_text,
decoder,
offset + 4,
_depth
)?;
fidl::decode!(bool, D, &mut self.remote_volume_control, decoder, offset + 5, _depth)?;
fidl::decode!(
bool,
D,
&mut self.voice_recognition_activation,
decoder,
offset + 6,
_depth
)?;
fidl::decode!(bool, D, &mut self.wide_band_speech, decoder, offset + 7, _depth)?;
Ok(())
}
}
}