// @generated by Thrift for thrift/compiler/test/fixtures/rust-request-context/src/module.thrift // This file is probably not the place you want to edit! //! Client implementation for each service in `module`. #![recursion_limit = "100000000"] #![allow(non_camel_case_types, non_snake_case, non_upper_case_globals, unused_crate_dependencies, unused_imports, clippy::all)] #[doc(inline)] pub use :: as types; pub mod errors { #[doc(inline)] pub use ::::errors::my_service; #[doc(inline)] #[allow(ambiguous_glob_reexports)] pub use ::::errors::my_service::*; #[doc(inline)] pub use ::::errors::my_interaction; #[doc(inline)] #[allow(ambiguous_glob_reexports)] pub use ::::errors::my_interaction::*; } pub(crate) use crate as client; pub(crate) use ::::services; // Used by Thrift-generated code to implement service inheritance. #[doc(hidden)] #[deprecated] pub mod dependencies { } /// Client definitions for `MyInteraction`. pub struct MyInteractionImpl
{
transport: T,
_phantom: ::std::marker::PhantomData MyInteractionImpl
where
P: ::fbthrift::Protocol,
T: ::fbthrift::Transport,
P::Frame: ::fbthrift::Framing : ::fbthrift::BufMutExt ("MyInteraction.ping", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyInteraction.ping"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_interaction::PingError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyInteraction.ping"))
.boxed()
}
}
pub trait MyInteraction: ::std::marker::Send {
fn ping(
&self,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(), crate::errors::my_interaction::PingError>>;
}
pub trait MyInteractionExt for self::Args_MyInteraction_ping<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyInteraction.ping"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_stop();
p.write_struct_end();
}
}
impl MyInteraction for MyInteractionImpl
where
P: ::fbthrift::Protocol,
T: ::fbthrift::Transport,
P::Frame: ::fbthrift::Framing : ::fbthrift::BufMutExt MyInteractionExt
where
P: ::fbthrift::Protocol,
T: ::fbthrift::Transport,
P::Frame: ::fbthrift::Framing : ::fbthrift::BufMutExt (
protocol: P,
transport: T,
) -> ::std::sync::Arc (
protocol: P,
transport: T,
spawner: S,
) -> ::std::sync::Arc ::new(transport))
}
}
impl (
protocol: P,
transport: T,
) -> ::std::sync::Arc (
protocol: P,
transport: T,
spawner: S,
) -> ::std::sync::Arc ::new(transport))
}
}
pub type MyInteractionDynClient = (protocol: P, transport: T, spawner: S) -> ::std::sync::Arc {
transport: T,
_phantom: ::std::marker::PhantomData MyServiceImpl
where
P: ::fbthrift::Protocol,
T: ::fbthrift::Transport,
P::Frame: ::fbthrift::Framing : ::fbthrift::BufMutExt ("ping", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.ping"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::PingError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.ping"))
.boxed()
}
fn _getRandomData_impl(
&self,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::std::string::String, crate::errors::my_service::GetRandomDataError>> {
use ::const_cstr::const_cstr;
use ::tracing::Instrument as _;
use ::futures::FutureExt as _;
const_cstr! {
SERVICE_NAME = "MyService";
SERVICE_METHOD_NAME = "MyService.getRandomData";
}
let args = self::Args_MyService_getRandomData {
_phantom: ::std::marker::PhantomData,
};
let transport = self.transport();
// need to do call setup outside of async block because T: Transport isn't Send
let request_env = match ::fbthrift::help::serialize_request_envelope:: ("getRandomData", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.getRandomData"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::GetRandomDataError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.getRandomData"))
.boxed()
}
fn _hasDataById_impl(
&self,
arg_id: ::std::primitive::i64,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::std::primitive::bool, crate::errors::my_service::HasDataByIdError>> {
use ::const_cstr::const_cstr;
use ::tracing::Instrument as _;
use ::futures::FutureExt as _;
const_cstr! {
SERVICE_NAME = "MyService";
SERVICE_METHOD_NAME = "MyService.hasDataById";
}
let args = self::Args_MyService_hasDataById {
id: arg_id,
_phantom: ::std::marker::PhantomData,
};
let transport = self.transport();
// need to do call setup outside of async block because T: Transport isn't Send
let request_env = match ::fbthrift::help::serialize_request_envelope:: ("hasDataById", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.hasDataById"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::HasDataByIdError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.hasDataById"))
.boxed()
}
fn _getDataById_impl(
&self,
arg_id: ::std::primitive::i64,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::std::string::String, crate::errors::my_service::GetDataByIdError>> {
use ::const_cstr::const_cstr;
use ::tracing::Instrument as _;
use ::futures::FutureExt as _;
const_cstr! {
SERVICE_NAME = "MyService";
SERVICE_METHOD_NAME = "MyService.getDataById";
}
let args = self::Args_MyService_getDataById {
id: arg_id,
_phantom: ::std::marker::PhantomData,
};
let transport = self.transport();
// need to do call setup outside of async block because T: Transport isn't Send
let request_env = match ::fbthrift::help::serialize_request_envelope:: ("getDataById", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.getDataById"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::GetDataByIdError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.getDataById"))
.boxed()
}
fn _putDataById_impl(
&self,
arg_id: ::std::primitive::i64,
arg_data: &::std::primitive::str,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(), crate::errors::my_service::PutDataByIdError>> {
use ::const_cstr::const_cstr;
use ::tracing::Instrument as _;
use ::futures::FutureExt as _;
const_cstr! {
SERVICE_NAME = "MyService";
SERVICE_METHOD_NAME = "MyService.putDataById";
}
let args = self::Args_MyService_putDataById {
id: arg_id,
data: arg_data,
_phantom: ::std::marker::PhantomData,
};
let transport = self.transport();
// need to do call setup outside of async block because T: Transport isn't Send
let request_env = match ::fbthrift::help::serialize_request_envelope:: ("putDataById", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.putDataById"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::PutDataByIdError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.putDataById"))
.boxed()
}
fn _lobDataById_impl(
&self,
arg_id: ::std::primitive::i64,
arg_data: &::std::primitive::str,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(), crate::errors::my_service::LobDataByIdError>> {
use ::const_cstr::const_cstr;
use ::tracing::Instrument as _;
use ::futures::FutureExt as _;
const_cstr! {
SERVICE_NAME = "MyService";
SERVICE_METHOD_NAME = "MyService.lobDataById";
}
let args = self::Args_MyService_lobDataById {
id: arg_id,
data: arg_data,
_phantom: ::std::marker::PhantomData,
};
let transport = self.transport();
// need to do call setup outside of async block because T: Transport isn't Send
let request_env = match ::fbthrift::help::serialize_request_envelope:: ("lobDataById", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.lobDataById"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::LobDataByIdError::ApplicationException(aexn))
}
};
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.lobDataById"))
.boxed()
}
fn _streamById_impl(
&self,
arg_id: ::std::primitive::i64,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::futures::stream::BoxStream<'static, ::std::result::Result ("streamById", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call_stream = transport
.call_stream(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call_stream", method = "MyService.streamById"));
async move {
let (initial, stream) = call_stream.await?;
let new_stream = stream.then(|item_res| {
async move {
match item_res {
::std::result::Result::Err(err) =>
::std::result::Result::Err(crate::errors::my_service::StreamByIdStreamError::from(err)),
::std::result::Result::Ok(item_enc) => {
S::spawn(move || {
match item_enc {
::fbthrift::ClientStreamElement::Reply(payload) => {
let mut de = P::deserializer(payload);
(de)
.await??
.map(move |_| new_stream);
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.streamById"))
.boxed()
}
fn _streamByIdWithException_impl(
&self,
arg_id: ::std::primitive::i64,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::futures::stream::BoxStream<'static, ::std::result::Result ("streamByIdWithException", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call_stream = transport
.call_stream(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call_stream", method = "MyService.streamByIdWithException"));
async move {
let (initial, stream) = call_stream.await?;
let new_stream = stream.then(|item_res| {
async move {
match item_res {
::std::result::Result::Err(err) =>
::std::result::Result::Err(crate::errors::my_service::StreamByIdWithExceptionStreamError::from(err)),
::std::result::Result::Ok(item_enc) => {
S::spawn(move || {
match item_enc {
::fbthrift::ClientStreamElement::Reply(payload) => {
let mut de = P::deserializer(payload);
(de)
.await??
.map(move |_| new_stream);
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.streamByIdWithException"))
.boxed()
}
fn _streamByIdWithResponse_impl(
&self,
arg_id: ::std::primitive::i64,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(crate::types::MyDataItem, ::futures::stream::BoxStream<'static, ::std::result::Result ("streamByIdWithResponse", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call_stream = transport
.call_stream(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call_stream", method = "MyService.streamByIdWithResponse"));
async move {
let (initial, stream) = call_stream.await?;
let new_stream = stream.then(|item_res| {
async move {
match item_res {
::std::result::Result::Err(err) =>
::std::result::Result::Err(crate::errors::my_service::StreamByIdWithResponseStreamError::from(err)),
::std::result::Result::Ok(item_enc) => {
S::spawn(move || {
match item_enc {
::fbthrift::ClientStreamElement::Reply(payload) => {
let mut de = P::deserializer(payload);
(de)
.await??
.map(move |initial| (initial, new_stream));
res
}
.instrument(::tracing::info_span!("stream", method = "MyService.streamByIdWithResponse"))
.boxed()
}
fn _startPingInteraction_impl(
&self,
rpc_options: T::RpcOptions,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result ::new(interaction_transport);
let transport = interaction_impl.transport();
// need to do call setup outside of async block because T: Transport isn't Send
let request_env = match ::fbthrift::help::serialize_request_envelope:: ("startPingInteraction", &args) {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(err) => return ::futures::future::err(err.into()).boxed(),
};
let call = transport
.call(SERVICE_NAME.as_cstr(), SERVICE_METHOD_NAME.as_cstr(), request_env, rpc_options)
.instrument(::tracing::trace_span!("call", method = "MyService.startPingInteraction"));
async move {
let reply_env = call.await?;
let de = P::deserializer(reply_env);
let res = ::fbthrift::help::async_deserialize_response_envelope:: (de).await?;
let res = match res {
::std::result::Result::Ok(res) => res,
::std::result::Result::Err(aexn) => {
::std::result::Result::Err(crate::errors::my_service::StartPingInteractionError::ApplicationException(aexn))
}
};
let interaction_client: crate::client::MyInteractionClient = ::std::sync::Arc::new(interaction_impl);
res?;
::std::result::Result::Ok(interaction_client)
}
.instrument(::tracing::info_span!("stream", method = "MyService.startPingInteraction"))
.boxed()
}
}
pub trait MyService: ::std::marker::Send {
fn ping(
&self,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(), crate::errors::my_service::PingError>>;
fn getRandomData(
&self,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::std::string::String, crate::errors::my_service::GetRandomDataError>>;
fn hasDataById(
&self,
arg_id: ::std::primitive::i64,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::std::primitive::bool, crate::errors::my_service::HasDataByIdError>>;
fn getDataById(
&self,
arg_id: ::std::primitive::i64,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::std::string::String, crate::errors::my_service::GetDataByIdError>>;
fn putDataById(
&self,
arg_id: ::std::primitive::i64,
arg_data: &::std::primitive::str,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(), crate::errors::my_service::PutDataByIdError>>;
fn lobDataById(
&self,
arg_id: ::std::primitive::i64,
arg_data: &::std::primitive::str,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<(), crate::errors::my_service::LobDataByIdError>>;
fn streamById(
&self,
arg_id: ::std::primitive::i64,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result<::futures::stream::BoxStream<'static, ::std::result::Result for self::Args_MyService_ping<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.ping"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_getRandomData<'a> {
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_getRandomData<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.getRandomData"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_hasDataById<'a> {
id: ::std::primitive::i64,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_hasDataById<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.hasDataById"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_getDataById<'a> {
id: ::std::primitive::i64,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_getDataById<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.getDataById"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_putDataById<'a> {
id: ::std::primitive::i64,
data: &'a ::std::primitive::str,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_putDataById<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.putDataById"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_begin("data", ::fbthrift::TType::String, 2i16);
::fbthrift::Serialize::write(&self.data, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_lobDataById<'a> {
id: ::std::primitive::i64,
data: &'a ::std::primitive::str,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_lobDataById<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.lobDataById"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_begin("data", ::fbthrift::TType::String, 2i16);
::fbthrift::Serialize::write(&self.data, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_streamById<'a> {
id: ::std::primitive::i64,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_streamById<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.streamById"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_streamByIdWithException<'a> {
id: ::std::primitive::i64,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_streamByIdWithException<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.streamByIdWithException"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_streamByIdWithResponse<'a> {
id: ::std::primitive::i64,
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_streamByIdWithResponse<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.streamByIdWithResponse"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_begin("id", ::fbthrift::TType::I64, 1i16);
::fbthrift::Serialize::write(&self.id, p);
p.write_field_end();
p.write_field_stop();
p.write_struct_end();
}
}
struct Args_MyService_startPingInteraction<'a> {
_phantom: ::std::marker::PhantomData<&'a ()>,
}
impl<'a, P: ::fbthrift::ProtocolWriter> ::fbthrift::Serialize for self::Args_MyService_startPingInteraction<'a> {
#[inline]
#[::tracing::instrument(skip_all, level = "trace", name = "serialize_args", fields(method = "MyService.startPingInteraction"))]
fn write(&self, p: &mut P) {
p.write_struct_begin("args");
p.write_field_stop();
p.write_struct_end();
}
}
impl MyService for MyServiceImpl
where
P: ::fbthrift::Protocol,
T: ::fbthrift::Transport,
P::Frame: ::fbthrift::Framing : ::fbthrift::BufMutExt ::new(
self.transport().create_interaction(INTERACTION_NAME.as_cstr())?
)
)
)
}
fn startPingInteraction(
&self,
) -> ::futures::future::BoxFuture<'static, ::std::result::Result MyServiceExt
where
P: ::fbthrift::Protocol,
T: ::fbthrift::Transport,
P::Frame: ::fbthrift::Framing : ::fbthrift::BufMutExt (
protocol: P,
transport: T,
) -> ::std::sync::Arc (
protocol: P,
transport: T,
spawner: S,
) -> ::std::sync::Arc ::new(transport))
}
}
impl (
protocol: P,
transport: T,
) -> ::std::sync::Arc (
protocol: P,
transport: T,
spawner: S,
) -> ::std::sync::Arc ::new(transport))
}
}
pub type MyServiceDynClient = (protocol: P, transport: T, spawner: S) -> ::std::sync::Arc MyInteractionExt MyServiceExt