Rustfmt
This commit is contained in:
parent
a07b3103b1
commit
c6827e2f47
@ -431,7 +431,9 @@ fn run_client<A: for<'a, 's> DecodeMut<'a, 's, ()>, R: Encode<()>>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Client<super::super::TokenStream, super::super::TokenStream> {
|
impl Client<super::super::TokenStream, super::super::TokenStream> {
|
||||||
pub const fn expand1(f: impl Fn(super::super::TokenStream) -> super::super::TokenStream + Copy) -> Self {
|
pub const fn expand1(
|
||||||
|
f: impl Fn(super::super::TokenStream) -> super::super::TokenStream + Copy,
|
||||||
|
) -> Self {
|
||||||
Client {
|
Client {
|
||||||
get_handle_counters: HandleCounters::get,
|
get_handle_counters: HandleCounters::get,
|
||||||
run: super::selfless_reify::reify_to_extern_c_fn_hrt_bridge(move |bridge| {
|
run: super::selfless_reify::reify_to_extern_c_fn_hrt_bridge(move |bridge| {
|
||||||
@ -444,7 +446,8 @@ pub const fn expand1(f: impl Fn(super::super::TokenStream) -> super::super::Toke
|
|||||||
|
|
||||||
impl Client<(super::super::TokenStream, super::super::TokenStream), super::super::TokenStream> {
|
impl Client<(super::super::TokenStream, super::super::TokenStream), super::super::TokenStream> {
|
||||||
pub const fn expand2(
|
pub const fn expand2(
|
||||||
f: impl Fn(super::super::TokenStream, super::super::TokenStream) -> super::super::TokenStream + Copy,
|
f: impl Fn(super::super::TokenStream, super::super::TokenStream) -> super::super::TokenStream
|
||||||
|
+ Copy,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Client {
|
Client {
|
||||||
get_handle_counters: HandleCounters::get,
|
get_handle_counters: HandleCounters::get,
|
||||||
@ -469,7 +472,10 @@ pub enum ProcMacro {
|
|||||||
|
|
||||||
Attr {
|
Attr {
|
||||||
name: &'static str,
|
name: &'static str,
|
||||||
client: Client<(super::super::TokenStream, super::super::TokenStream), super::super::TokenStream>,
|
client: Client<
|
||||||
|
(super::super::TokenStream, super::super::TokenStream),
|
||||||
|
super::super::TokenStream,
|
||||||
|
>,
|
||||||
},
|
},
|
||||||
|
|
||||||
Bang {
|
Bang {
|
||||||
@ -497,7 +503,8 @@ pub const fn custom_derive(
|
|||||||
|
|
||||||
pub const fn attr(
|
pub const fn attr(
|
||||||
name: &'static str,
|
name: &'static str,
|
||||||
expand: impl Fn(super::super::TokenStream, super::super::TokenStream) -> super::super::TokenStream + Copy,
|
expand: impl Fn(super::super::TokenStream, super::super::TokenStream) -> super::super::TokenStream
|
||||||
|
+ Copy,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
ProcMacro::Attr { name, client: Client::expand2(expand) }
|
ProcMacro::Attr { name, client: Client::expand2(expand) }
|
||||||
}
|
}
|
||||||
|
@ -295,7 +295,12 @@ pub fn run<S: Server>(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl client::Client<(super::super::TokenStream, super::super::TokenStream), super::super::TokenStream> {
|
impl
|
||||||
|
client::Client<
|
||||||
|
(super::super::TokenStream, super::super::TokenStream),
|
||||||
|
super::super::TokenStream,
|
||||||
|
>
|
||||||
|
{
|
||||||
pub fn run<S: Server>(
|
pub fn run<S: Server>(
|
||||||
&self,
|
&self,
|
||||||
strategy: &impl ExecutionStrategy,
|
strategy: &impl ExecutionStrategy,
|
||||||
|
Loading…
Reference in New Issue
Block a user