2023-09-23 08:27:06 +08:00
|
|
|
pub trait MyTrait2<X> {
|
|
|
|
type Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait MyTrait {
|
|
|
|
type Item;
|
|
|
|
fn next(&mut self) -> Option<Self::Item>;
|
2024-06-03 15:35:56 +08:00
|
|
|
fn fold<B, F>(self, init: B, f: F) -> B
|
|
|
|
where
|
2023-09-23 08:27:06 +08:00
|
|
|
Self: Sized,
|
2024-06-03 15:35:56 +08:00
|
|
|
F: MyTrait2<(B, Self::Item), Output = B>;
|
2023-09-23 08:27:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Cloned<I>(I);
|
|
|
|
|
2024-06-03 15:35:56 +08:00
|
|
|
impl<'a, T, I> MyTrait for Cloned<I>
|
|
|
|
where
|
2023-09-23 08:27:06 +08:00
|
|
|
T: 'a + Clone,
|
2024-06-03 15:35:56 +08:00
|
|
|
I: MyTrait<Item = &'a T>,
|
2023-09-23 08:27:06 +08:00
|
|
|
{
|
|
|
|
type Item = T;
|
2024-06-03 15:35:56 +08:00
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
fn fold<B, F>(self, init: B, f: F) -> B
|
|
|
|
where
|
2023-09-23 08:27:06 +08:00
|
|
|
Self: Sized,
|
2024-06-03 15:35:56 +08:00
|
|
|
F: MyTrait2<(B, Self::Item), Output = B>,
|
2023-09-23 08:27:06 +08:00
|
|
|
{
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait MyFuture {
|
|
|
|
type Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait MyIntoFuture {
|
|
|
|
type Output;
|
2024-06-03 15:35:56 +08:00
|
|
|
type Fut: MyFuture<Output = Self::Output>;
|
2023-09-23 08:27:06 +08:00
|
|
|
fn into_future(self) -> Self::Fut;
|
|
|
|
fn into_future_2(self, other: Self) -> Self::Fut;
|
|
|
|
}
|