#![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;
pub type FullmacId = u32;
#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct TestControllerCreateFullmacRequest {
pub bridge_client:
fidl::endpoints::ClientEnd<fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker>,
}
impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
for TestControllerCreateFullmacRequest
{
}
#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(C)]
pub struct TestControllerDeleteFullmacRequest {
pub id: u32,
}
impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
for TestControllerDeleteFullmacRequest
{
}
#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(C)]
pub struct TestControllerCreateFullmacResponse {
pub id: u32,
}
impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
for TestControllerCreateFullmacResponse
{
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct TestControllerMarker;
impl fidl::endpoints::ProtocolMarker for TestControllerMarker {
type Proxy = TestControllerProxy;
type RequestStream = TestControllerRequestStream;
#[cfg(target_os = "fuchsia")]
type SynchronousProxy = TestControllerSynchronousProxy;
const DEBUG_NAME: &'static str = "(anonymous) TestController";
}
pub type TestControllerCreateFullmacResult = Result<u32, i32>;
pub type TestControllerDeleteFullmacResult = Result<(), i32>;
pub trait TestControllerProxyInterface: Send + Sync {
type CreateFullmacResponseFut: std::future::Future<Output = Result<TestControllerCreateFullmacResult, fidl::Error>>
+ Send;
fn r#create_fullmac(
&self,
bridge_client: fidl::endpoints::ClientEnd<
fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker,
>,
) -> Self::CreateFullmacResponseFut;
type DeleteFullmacResponseFut: std::future::Future<Output = Result<TestControllerDeleteFullmacResult, fidl::Error>>
+ Send;
fn r#delete_fullmac(&self, id: u32) -> Self::DeleteFullmacResponseFut;
}
#[derive(Debug)]
#[cfg(target_os = "fuchsia")]
pub struct TestControllerSynchronousProxy {
client: fidl::client::sync::Client,
}
#[cfg(target_os = "fuchsia")]
impl fidl::endpoints::SynchronousProxy for TestControllerSynchronousProxy {
type Proxy = TestControllerProxy;
type Protocol = TestControllerMarker;
fn from_channel(inner: fidl::Channel) -> Self {
Self::new(inner)
}
fn into_channel(self) -> fidl::Channel {
self.client.into_channel()
}
fn as_channel(&self) -> &fidl::Channel {
self.client.as_channel()
}
}
#[cfg(target_os = "fuchsia")]
impl TestControllerSynchronousProxy {
pub fn new(channel: fidl::Channel) -> Self {
let protocol_name = <TestControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
}
pub fn into_channel(self) -> fidl::Channel {
self.client.into_channel()
}
pub fn wait_for_event(
&self,
deadline: zx::MonotonicInstant,
) -> Result<TestControllerEvent, fidl::Error> {
TestControllerEvent::decode(self.client.wait_for_event(deadline)?)
}
pub fn r#create_fullmac(
&self,
mut bridge_client: fidl::endpoints::ClientEnd<
fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker,
>,
___deadline: zx::MonotonicInstant,
) -> Result<TestControllerCreateFullmacResult, fidl::Error> {
let _response = self.client.send_query::<
TestControllerCreateFullmacRequest,
fidl::encoding::ResultType<TestControllerCreateFullmacResponse, i32>,
>(
(bridge_client,),
0x1eaf55234a2c969d,
fidl::encoding::DynamicFlags::empty(),
___deadline,
)?;
Ok(_response.map(|x| x.id))
}
pub fn r#delete_fullmac(
&self,
mut id: u32,
___deadline: zx::MonotonicInstant,
) -> Result<TestControllerDeleteFullmacResult, fidl::Error> {
let _response = self.client.send_query::<
TestControllerDeleteFullmacRequest,
fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
>(
(id,),
0x153bf68847795c91,
fidl::encoding::DynamicFlags::empty(),
___deadline,
)?;
Ok(_response.map(|x| x))
}
}
#[derive(Debug, Clone)]
pub struct TestControllerProxy {
client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
}
impl fidl::endpoints::Proxy for TestControllerProxy {
type Protocol = TestControllerMarker;
fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
Self::new(inner)
}
fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
self.client.into_channel().map_err(|client| Self { client })
}
fn as_channel(&self) -> &::fidl::AsyncChannel {
self.client.as_channel()
}
}
impl TestControllerProxy {
pub fn new(channel: ::fidl::AsyncChannel) -> Self {
let protocol_name = <TestControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
Self { client: fidl::client::Client::new(channel, protocol_name) }
}
pub fn take_event_stream(&self) -> TestControllerEventStream {
TestControllerEventStream { event_receiver: self.client.take_event_receiver() }
}
pub fn r#create_fullmac(
&self,
mut bridge_client: fidl::endpoints::ClientEnd<
fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker,
>,
) -> fidl::client::QueryResponseFut<
TestControllerCreateFullmacResult,
fidl::encoding::DefaultFuchsiaResourceDialect,
> {
TestControllerProxyInterface::r#create_fullmac(self, bridge_client)
}
pub fn r#delete_fullmac(
&self,
mut id: u32,
) -> fidl::client::QueryResponseFut<
TestControllerDeleteFullmacResult,
fidl::encoding::DefaultFuchsiaResourceDialect,
> {
TestControllerProxyInterface::r#delete_fullmac(self, id)
}
}
impl TestControllerProxyInterface for TestControllerProxy {
type CreateFullmacResponseFut = fidl::client::QueryResponseFut<
TestControllerCreateFullmacResult,
fidl::encoding::DefaultFuchsiaResourceDialect,
>;
fn r#create_fullmac(
&self,
mut bridge_client: fidl::endpoints::ClientEnd<
fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker,
>,
) -> Self::CreateFullmacResponseFut {
fn _decode(
mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
) -> Result<TestControllerCreateFullmacResult, fidl::Error> {
let _response = fidl::client::decode_transaction_body::<
fidl::encoding::ResultType<TestControllerCreateFullmacResponse, i32>,
fidl::encoding::DefaultFuchsiaResourceDialect,
0x1eaf55234a2c969d,
>(_buf?)?;
Ok(_response.map(|x| x.id))
}
self.client.send_query_and_decode::<
TestControllerCreateFullmacRequest,
TestControllerCreateFullmacResult,
>(
(bridge_client,),
0x1eaf55234a2c969d,
fidl::encoding::DynamicFlags::empty(),
_decode,
)
}
type DeleteFullmacResponseFut = fidl::client::QueryResponseFut<
TestControllerDeleteFullmacResult,
fidl::encoding::DefaultFuchsiaResourceDialect,
>;
fn r#delete_fullmac(&self, mut id: u32) -> Self::DeleteFullmacResponseFut {
fn _decode(
mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
) -> Result<TestControllerDeleteFullmacResult, fidl::Error> {
let _response = fidl::client::decode_transaction_body::<
fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>,
fidl::encoding::DefaultFuchsiaResourceDialect,
0x153bf68847795c91,
>(_buf?)?;
Ok(_response.map(|x| x))
}
self.client.send_query_and_decode::<
TestControllerDeleteFullmacRequest,
TestControllerDeleteFullmacResult,
>(
(id,),
0x153bf68847795c91,
fidl::encoding::DynamicFlags::empty(),
_decode,
)
}
}
pub struct TestControllerEventStream {
event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
}
impl std::marker::Unpin for TestControllerEventStream {}
impl futures::stream::FusedStream for TestControllerEventStream {
fn is_terminated(&self) -> bool {
self.event_receiver.is_terminated()
}
}
impl futures::Stream for TestControllerEventStream {
type Item = Result<TestControllerEvent, fidl::Error>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
&mut self.event_receiver,
cx
)?) {
Some(buf) => std::task::Poll::Ready(Some(TestControllerEvent::decode(buf))),
None => std::task::Poll::Ready(None),
}
}
}
#[derive(Debug)]
pub enum TestControllerEvent {}
impl TestControllerEvent {
fn decode(
mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
) -> Result<TestControllerEvent, fidl::Error> {
let (bytes, _handles) = buf.split_mut();
let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
debug_assert_eq!(tx_header.tx_id, 0);
match tx_header.ordinal {
_ => Err(fidl::Error::UnknownOrdinal {
ordinal: tx_header.ordinal,
protocol_name:
<TestControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
}),
}
}
}
pub struct TestControllerRequestStream {
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
is_terminated: bool,
}
impl std::marker::Unpin for TestControllerRequestStream {}
impl futures::stream::FusedStream for TestControllerRequestStream {
fn is_terminated(&self) -> bool {
self.is_terminated
}
}
impl fidl::endpoints::RequestStream for TestControllerRequestStream {
type Protocol = TestControllerMarker;
type ControlHandle = TestControllerControlHandle;
fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
}
fn control_handle(&self) -> Self::ControlHandle {
TestControllerControlHandle { inner: self.inner.clone() }
}
fn into_inner(
self,
) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
{
(self.inner, self.is_terminated)
}
fn from_inner(
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
is_terminated: bool,
) -> Self {
Self { inner, is_terminated }
}
}
impl futures::Stream for TestControllerRequestStream {
type Item = Result<TestControllerRequest, fidl::Error>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
let this = &mut *self;
if this.inner.check_shutdown(cx) {
this.is_terminated = true;
return std::task::Poll::Ready(None);
}
if this.is_terminated {
panic!("polled TestControllerRequestStream after completion");
}
fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
|bytes, handles| {
match this.inner.channel().read_etc(cx, bytes, handles) {
std::task::Poll::Ready(Ok(())) => {}
std::task::Poll::Pending => return std::task::Poll::Pending,
std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
this.is_terminated = true;
return std::task::Poll::Ready(None);
}
std::task::Poll::Ready(Err(e)) => {
return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
e.into(),
))))
}
}
let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
std::task::Poll::Ready(Some(match header.ordinal {
0x1eaf55234a2c969d => {
header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
let mut req = fidl::new_empty!(
TestControllerCreateFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect
);
fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<TestControllerCreateFullmacRequest>(&header, _body_bytes, handles, &mut req)?;
let control_handle =
TestControllerControlHandle { inner: this.inner.clone() };
Ok(TestControllerRequest::CreateFullmac {
bridge_client: req.bridge_client,
responder: TestControllerCreateFullmacResponder {
control_handle: std::mem::ManuallyDrop::new(control_handle),
tx_id: header.tx_id,
},
})
}
0x153bf68847795c91 => {
header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
let mut req = fidl::new_empty!(
TestControllerDeleteFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect
);
fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<TestControllerDeleteFullmacRequest>(&header, _body_bytes, handles, &mut req)?;
let control_handle =
TestControllerControlHandle { inner: this.inner.clone() };
Ok(TestControllerRequest::DeleteFullmac {
id: req.id,
responder: TestControllerDeleteFullmacResponder {
control_handle: std::mem::ManuallyDrop::new(control_handle),
tx_id: header.tx_id,
},
})
}
_ => Err(fidl::Error::UnknownOrdinal {
ordinal: header.ordinal,
protocol_name:
<TestControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
}),
}))
},
)
}
}
#[derive(Debug)]
pub enum TestControllerRequest {
CreateFullmac {
bridge_client:
fidl::endpoints::ClientEnd<fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker>,
responder: TestControllerCreateFullmacResponder,
},
DeleteFullmac { id: u32, responder: TestControllerDeleteFullmacResponder },
}
impl TestControllerRequest {
#[allow(irrefutable_let_patterns)]
pub fn into_create_fullmac(
self,
) -> Option<(
fidl::endpoints::ClientEnd<fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker>,
TestControllerCreateFullmacResponder,
)> {
if let TestControllerRequest::CreateFullmac { bridge_client, responder } = self {
Some((bridge_client, responder))
} else {
None
}
}
#[allow(irrefutable_let_patterns)]
pub fn into_delete_fullmac(self) -> Option<(u32, TestControllerDeleteFullmacResponder)> {
if let TestControllerRequest::DeleteFullmac { id, responder } = self {
Some((id, responder))
} else {
None
}
}
pub fn method_name(&self) -> &'static str {
match *self {
TestControllerRequest::CreateFullmac { .. } => "create_fullmac",
TestControllerRequest::DeleteFullmac { .. } => "delete_fullmac",
}
}
}
#[derive(Debug, Clone)]
pub struct TestControllerControlHandle {
inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
}
impl fidl::endpoints::ControlHandle for TestControllerControlHandle {
fn shutdown(&self) {
self.inner.shutdown()
}
fn shutdown_with_epitaph(&self, status: zx_status::Status) {
self.inner.shutdown_with_epitaph(status)
}
fn is_closed(&self) -> bool {
self.inner.channel().is_closed()
}
fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
self.inner.channel().on_closed()
}
#[cfg(target_os = "fuchsia")]
fn signal_peer(
&self,
clear_mask: zx::Signals,
set_mask: zx::Signals,
) -> Result<(), zx_status::Status> {
use fidl::Peered;
self.inner.channel().signal_peer(clear_mask, set_mask)
}
}
impl TestControllerControlHandle {}
#[must_use = "FIDL methods require a response to be sent"]
#[derive(Debug)]
pub struct TestControllerCreateFullmacResponder {
control_handle: std::mem::ManuallyDrop<TestControllerControlHandle>,
tx_id: u32,
}
impl std::ops::Drop for TestControllerCreateFullmacResponder {
fn drop(&mut self) {
self.control_handle.shutdown();
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
}
}
impl fidl::endpoints::Responder for TestControllerCreateFullmacResponder {
type ControlHandle = TestControllerControlHandle;
fn control_handle(&self) -> &TestControllerControlHandle {
&self.control_handle
}
fn drop_without_shutdown(mut self) {
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
std::mem::forget(self);
}
}
impl TestControllerCreateFullmacResponder {
pub fn send(self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
let _result = self.send_raw(result);
if _result.is_err() {
self.control_handle.shutdown();
}
self.drop_without_shutdown();
_result
}
pub fn send_no_shutdown_on_err(self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
let _result = self.send_raw(result);
self.drop_without_shutdown();
_result
}
fn send_raw(&self, mut result: Result<u32, i32>) -> Result<(), fidl::Error> {
self.control_handle.inner.send::<fidl::encoding::ResultType<
TestControllerCreateFullmacResponse,
i32,
>>(
result.map(|id| (id,)),
self.tx_id,
0x1eaf55234a2c969d,
fidl::encoding::DynamicFlags::empty(),
)
}
}
#[must_use = "FIDL methods require a response to be sent"]
#[derive(Debug)]
pub struct TestControllerDeleteFullmacResponder {
control_handle: std::mem::ManuallyDrop<TestControllerControlHandle>,
tx_id: u32,
}
impl std::ops::Drop for TestControllerDeleteFullmacResponder {
fn drop(&mut self) {
self.control_handle.shutdown();
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
}
}
impl fidl::endpoints::Responder for TestControllerDeleteFullmacResponder {
type ControlHandle = TestControllerControlHandle;
fn control_handle(&self) -> &TestControllerControlHandle {
&self.control_handle
}
fn drop_without_shutdown(mut self) {
unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
std::mem::forget(self);
}
}
impl TestControllerDeleteFullmacResponder {
pub fn send(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
let _result = self.send_raw(result);
if _result.is_err() {
self.control_handle.shutdown();
}
self.drop_without_shutdown();
_result
}
pub fn send_no_shutdown_on_err(self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
let _result = self.send_raw(result);
self.drop_without_shutdown();
_result
}
fn send_raw(&self, mut result: Result<(), i32>) -> Result<(), fidl::Error> {
self.control_handle
.inner
.send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, i32>>(
result,
self.tx_id,
0x153bf68847795c91,
fidl::encoding::DynamicFlags::empty(),
)
}
}
mod internal {
use super::*;
impl fidl::encoding::ResourceTypeMarker for TestControllerCreateFullmacRequest {
type Borrowed<'a> = &'a mut Self;
fn take_or_borrow<'a>(
value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
) -> Self::Borrowed<'a> {
value
}
}
unsafe impl fidl::encoding::TypeMarker for TestControllerCreateFullmacRequest {
type Owned = Self;
#[inline(always)]
fn inline_align(_context: fidl::encoding::Context) -> usize {
4
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
4
}
}
unsafe impl
fidl::encoding::Encode<
TestControllerCreateFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for &mut TestControllerCreateFullmacRequest
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<TestControllerCreateFullmacRequest>(offset);
fidl::encoding::Encode::<
TestControllerCreateFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
>::encode(
(<fidl::encoding::Endpoint<
fidl::endpoints::ClientEnd<fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker>,
> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
&mut self.bridge_client
),),
encoder,
offset,
_depth,
)
}
}
unsafe impl<
T0: fidl::encoding::Encode<
fidl::encoding::Endpoint<
fidl::endpoints::ClientEnd<fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker>,
>,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
>
fidl::encoding::Encode<
TestControllerCreateFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for (T0,)
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<TestControllerCreateFullmacRequest>(offset);
self.0.encode(encoder, offset + 0, depth)?;
Ok(())
}
}
impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
for TestControllerCreateFullmacRequest
{
#[inline(always)]
fn new_empty() -> Self {
Self {
bridge_client: fidl::new_empty!(
fidl::encoding::Endpoint<
fidl::endpoints::ClientEnd<
fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker,
>,
>,
fidl::encoding::DefaultFuchsiaResourceDialect
),
}
}
#[inline]
unsafe fn decode(
&mut self,
decoder: &mut fidl::encoding::Decoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
decoder.debug_check_bounds::<Self>(offset);
fidl::decode!(
fidl::encoding::Endpoint<
fidl::endpoints::ClientEnd<fidl_fuchsia_wlan_fullmac::WlanFullmacImpl_Marker>,
>,
fidl::encoding::DefaultFuchsiaResourceDialect,
&mut self.bridge_client,
decoder,
offset + 0,
_depth
)?;
Ok(())
}
}
impl fidl::encoding::ResourceTypeMarker for TestControllerDeleteFullmacRequest {
type Borrowed<'a> = &'a mut Self;
fn take_or_borrow<'a>(
value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
) -> Self::Borrowed<'a> {
value
}
}
unsafe impl fidl::encoding::TypeMarker for TestControllerDeleteFullmacRequest {
type Owned = Self;
#[inline(always)]
fn inline_align(_context: fidl::encoding::Context) -> usize {
4
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
4
}
#[inline(always)]
fn encode_is_copy() -> bool {
true
}
#[inline(always)]
fn decode_is_copy() -> bool {
true
}
}
unsafe impl
fidl::encoding::Encode<
TestControllerDeleteFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for &mut TestControllerDeleteFullmacRequest
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<TestControllerDeleteFullmacRequest>(offset);
unsafe {
let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
(buf_ptr as *mut TestControllerDeleteFullmacRequest)
.write_unaligned((self as *const TestControllerDeleteFullmacRequest).read());
}
Ok(())
}
}
unsafe impl<T0: fidl::encoding::Encode<u32, fidl::encoding::DefaultFuchsiaResourceDialect>>
fidl::encoding::Encode<
TestControllerDeleteFullmacRequest,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for (T0,)
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<TestControllerDeleteFullmacRequest>(offset);
self.0.encode(encoder, offset + 0, depth)?;
Ok(())
}
}
impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
for TestControllerDeleteFullmacRequest
{
#[inline(always)]
fn new_empty() -> Self {
Self { id: fidl::new_empty!(u32, fidl::encoding::DefaultFuchsiaResourceDialect) }
}
#[inline]
unsafe fn decode(
&mut self,
decoder: &mut fidl::encoding::Decoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
decoder.debug_check_bounds::<Self>(offset);
let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
unsafe {
std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 4);
}
Ok(())
}
}
impl fidl::encoding::ResourceTypeMarker for TestControllerCreateFullmacResponse {
type Borrowed<'a> = &'a mut Self;
fn take_or_borrow<'a>(
value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
) -> Self::Borrowed<'a> {
value
}
}
unsafe impl fidl::encoding::TypeMarker for TestControllerCreateFullmacResponse {
type Owned = Self;
#[inline(always)]
fn inline_align(_context: fidl::encoding::Context) -> usize {
4
}
#[inline(always)]
fn inline_size(_context: fidl::encoding::Context) -> usize {
4
}
#[inline(always)]
fn encode_is_copy() -> bool {
true
}
#[inline(always)]
fn decode_is_copy() -> bool {
true
}
}
unsafe impl
fidl::encoding::Encode<
TestControllerCreateFullmacResponse,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for &mut TestControllerCreateFullmacResponse
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<TestControllerCreateFullmacResponse>(offset);
unsafe {
let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
(buf_ptr as *mut TestControllerCreateFullmacResponse)
.write_unaligned((self as *const TestControllerCreateFullmacResponse).read());
}
Ok(())
}
}
unsafe impl<T0: fidl::encoding::Encode<u32, fidl::encoding::DefaultFuchsiaResourceDialect>>
fidl::encoding::Encode<
TestControllerCreateFullmacResponse,
fidl::encoding::DefaultFuchsiaResourceDialect,
> for (T0,)
{
#[inline]
unsafe fn encode(
self,
encoder: &mut fidl::encoding::Encoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
encoder.debug_check_bounds::<TestControllerCreateFullmacResponse>(offset);
self.0.encode(encoder, offset + 0, depth)?;
Ok(())
}
}
impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
for TestControllerCreateFullmacResponse
{
#[inline(always)]
fn new_empty() -> Self {
Self { id: fidl::new_empty!(u32, fidl::encoding::DefaultFuchsiaResourceDialect) }
}
#[inline]
unsafe fn decode(
&mut self,
decoder: &mut fidl::encoding::Decoder<
'_,
fidl::encoding::DefaultFuchsiaResourceDialect,
>,
offset: usize,
_depth: fidl::encoding::Depth,
) -> fidl::Result<()> {
decoder.debug_check_bounds::<Self>(offset);
let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
unsafe {
std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 4);
}
Ok(())
}
}
}