2024-09-24 20:18:01 -05:00
|
|
|
#![feature(rustdoc_internals)]
|
|
|
|
|
2023-09-22 19:27:06 -05:00
|
|
|
pub trait MyTrait2<X> {
|
|
|
|
type Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait MyTrait {
|
|
|
|
type Item;
|
|
|
|
fn next(&mut self) -> Option<Self::Item>;
|
2024-06-03 02:35:56 -05:00
|
|
|
fn fold<B, F>(self, init: B, f: F) -> B
|
|
|
|
where
|
2023-09-22 19:27:06 -05:00
|
|
|
Self: Sized,
|
2024-06-03 02:35:56 -05:00
|
|
|
F: MyTrait2<(B, Self::Item), Output = B>;
|
2023-09-22 19:27:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Cloned<I>(I);
|
|
|
|
|
2024-06-03 02:35:56 -05:00
|
|
|
impl<'a, T, I> MyTrait for Cloned<I>
|
|
|
|
where
|
2023-09-22 19:27:06 -05:00
|
|
|
T: 'a + Clone,
|
2024-06-03 02:35:56 -05:00
|
|
|
I: MyTrait<Item = &'a T>,
|
2023-09-22 19:27:06 -05:00
|
|
|
{
|
|
|
|
type Item = T;
|
2024-06-03 02:35:56 -05:00
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
fn fold<B, F>(self, init: B, f: F) -> B
|
|
|
|
where
|
2023-09-22 19:27:06 -05:00
|
|
|
Self: Sized,
|
2024-06-03 02:35:56 -05:00
|
|
|
F: MyTrait2<(B, Self::Item), Output = B>,
|
2023-09-22 19:27:06 -05:00
|
|
|
{
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-24 20:18:01 -05:00
|
|
|
#[doc(search_unbox)]
|
2023-09-22 19:27:06 -05:00
|
|
|
pub trait MyFuture {
|
|
|
|
type Output;
|
|
|
|
}
|
|
|
|
|
2024-09-24 20:18:01 -05:00
|
|
|
#[doc(search_unbox)]
|
2023-09-22 19:27:06 -05:00
|
|
|
pub trait MyIntoFuture {
|
|
|
|
type Output;
|
2024-06-03 02:35:56 -05:00
|
|
|
type Fut: MyFuture<Output = Self::Output>;
|
2023-09-22 19:27:06 -05:00
|
|
|
fn into_future(self) -> Self::Fut;
|
|
|
|
fn into_future_2(self, other: Self) -> Self::Fut;
|
|
|
|
}
|