Skip to content

Commit

Permalink
Tweak format
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 24, 2024
1 parent d1be061 commit 2b1715d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ macro_rules! __pin_project_constant {
}
}

impl <$($impl_generics)*> $ident <$($ty_generics)*>
impl<$($impl_generics)*> $ident <$($ty_generics)*>
$(where
$($where_clause)*)?
{
Expand Down Expand Up @@ -633,7 +633,7 @@ macro_rules! __pin_project_constant {
#[allow(clippy::unknown_clippy_lints)]
#[allow(clippy::used_underscore_binding)]
const _: () = {
impl <$($impl_generics)*> $ident <$($ty_generics)*>
impl<$($impl_generics)*> $ident <$($ty_generics)*>
$(where
$($where_clause)*)?
{
Expand Down Expand Up @@ -1228,7 +1228,7 @@ macro_rules! __pin_project_make_unpin_impl {
__dummy_lifetime: $crate::__private::PhantomData<&'__pin ()>,
$($field)*
}
impl <'__pin, $($impl_generics)*> $crate::__private::Unpin for $ident <$($ty_generics)*>
impl<'__pin, $($impl_generics)*> $crate::__private::Unpin for $ident <$($ty_generics)*>
where
$crate::__private::PinnedFieldsOf<__Origin<'__pin, $($ty_generics)*>>:
$crate::__private::Unpin
Expand All @@ -1243,7 +1243,7 @@ macro_rules! __pin_project_make_unpin_impl {
$($field:tt)*
) => {
#[doc(hidden)]
impl <'__pin, $($impl_generics)*> $crate::__private::Unpin for $ident <$($ty_generics)*>
impl<'__pin, $($impl_generics)*> $crate::__private::Unpin for $ident <$($ty_generics)*>
where
(
$crate::__private::PhantomData<&'__pin ()>,
Expand Down Expand Up @@ -1362,7 +1362,7 @@ macro_rules! __pin_project_make_drop_impl {
trait MustNotImplDrop {}
#[allow(clippy::drop_bounds, drop_bounds)]
impl<T: $crate::__private::Drop> MustNotImplDrop for T {}
impl <$($impl_generics)*> MustNotImplDrop for $ident <$($ty_generics)*>
impl<$($impl_generics)*> MustNotImplDrop for $ident <$($ty_generics)*>
$(where
$($where_clause)*)?
{
Expand Down

0 comments on commit 2b1715d

Please sign in to comment.