I am learning Rust and I am stuck with a toy example. I have already read documentation on lifetimes, this post and a bunch of questions on Stack Overflow. I've spent more than a week, but I'm still stuck, so I decided to ask for help from a community.
I have a generic trait BookSide
which returns BookIterator
(which extends usual Iterator
). And I have two implementations for both BookSide
and BookIterator
: ArrayBookSide
and CommissionBookSide
.
- First one is stateful. It has a
Vec
under the hood.
- Second one is stateless: it wraps some other
BookSide
.
My goal is simply to compile the whole thing. I was solving problems and followed the suggestions of the compiler. This process resulted in the following code.
use std::marker::PhantomData;
fn main() {
println!("Hello, world!");
}
// traits
pub trait BookIterator<'a>: Iterator<Item=f64> {}
pub trait BookSide<'a> {
type BookIteratorType: BookIterator<'a>;
fn book_iterator(&self) -> Self::BookIteratorType;
}
// implementation 1: stateful
pub struct ArrayBookSide {
quotes: Vec<f64>,
}
pub struct ArrayBookSideIterator<'a> {
quotes_iter: std::slice::Iter<'a, f64>,
}
impl<'a> BookSide<'a> for ArrayBookSide {
type BookIteratorType = ArrayBookSideIterator<'a>;
fn book_iterator(&self) -> Self::BookIteratorType {
ArrayBookSideIterator { quotes_iter: self.quotes.iter() }
}
}
impl<'a> Iterator for ArrayBookSideIterator<'a> {
type Item = f64;
fn next(&mut self) -> Option<Self::Item> {
self.quotes_iter.next().map(|"e| quote)
}
}
impl<'a> BookIterator<'a> for ArrayBookSideIterator<'a> {}
// implementation 2: delegating
pub struct CommissionBookSide<'a, B>
where B: BookSide<'a> {
base_book_side: B,
multiplier: f64,
_marker: PhantomData<&'a B>,
}
impl<'a, B> CommissionBookSide<'a, B>
where B: BookSide<'a> {
pub fn new(base_book_side: B) -> CommissionBookSide<'a, B> {
CommissionBookSide { base_book_side, multiplier: 1.1, _marker: PhantomData {} }
}
}
impl<'a, B> BookSide<'a> for CommissionBookSide<'a, B>
where B: BookSide<'a> {
type BookIteratorType = CommissionIterator<'a, B::BookIteratorType>;
fn book_iterator(&self) -> Self::BookIteratorType {
CommissionIterator {
base_iterator: self.base_book_side.book_iterator(),
multiplier: self.multiplier,
_marker: PhantomData {},
}
}
}
pub struct CommissionIterator<'a, BI>
where BI: BookIterator<'a> {
base_iterator: BI,
multiplier: f64,
_marker: PhantomData<&'a BI>,
}
impl<'a, BI> Iterator for CommissionIterator<'a, BI>
where BI: BookIterator<'a> {
type Item = BI::Item;
fn next(&mut self) -> Option<Self::Item> {
self.base_iterator.next().map(|quote| quote * self.multiplier)
}
}
impl<'a, BI> BookIterator<'a> for CommissionIterator<'a, BI>
where BI: BookIterator<'a> {}
Now I have the following compile error.
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter in function call due to conflicting requirements
--> src/main.rs:31:58
|
31 | ArrayBookSideIterator { quotes_iter: self.quotes.iter() }
| ^^^^
|
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 30:5...
--> src/main.rs:30:5
|
30 | / fn book_iterator(&self) -> Self::BookIteratorType {
31 | | ArrayBookSideIterator { quotes_iter: self.quotes.iter() }
32 | | }
| |_____^
note: ...so that reference does not outlive borrowed content
--> src/main.rs:31:46
|
31 | ArrayBookSideIterator { quotes_iter: self.quotes.iter() }
| ^^^^^^^^^^^
note: but, the lifetime must be valid for the lifetime `'a` as defined on the impl at 27:6...
--> src/main.rs:27:6
|
27 | impl<'a> BookSide<'a> for ArrayBookSide {
| ^^
note: ...so that the types are compatible
--> src/main.rs:30:55
|
30 | fn book_iterator(&self) -> Self::BookIteratorType {
| _______________________________________________________^
31 | | ArrayBookSideIterator { quotes_iter: self.quotes.iter() }
32 | | }
| |_____^
= note: expected `BookSide<'a>`
found `BookSide<'_>`
I probably shouldn't use PhantomData
? It looks like an over complication and a workaround to me. I have published the full code here.
question from:
https://stackoverflow.com/questions/65864390/how-to-implement-decorator-in-rust