作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里的代码:
#[derive(Debug, Eq, PartialEq)]
struct Id(u128);
pub struct IdIter(Box<dyn Iterator<Item= Id>>);
impl IdIter {
pub fn new<I: Iterator<Item= Id>>(tmpl: I) -> Self {
Self(Box::new(tmpl))
}
}
impl Iterator for IdIter {
type Item = Id;
fn next(&mut self) -> Option<Self::Item> {
self.0.next()
}
}
pub trait Link {
fn iter_id(&self) -> IdIter;
}
pub fn links(it: impl Iterator<Item= impl Link>) -> impl Iterator<Item= Id> {
it.into_iter().flat_map(|l| l.iter_id())
}
#[cfg(test)]
mod test {
struct X(u128);
impl super::Link for X {
fn iter_id(&self) -> super::IdIter {
super::IdIter(Box::new(Some(super::Id(self.0)).into_iter()))
}
}
#[test]
fn test_links() {
let mut v = super::links([X(1234), X(4321)].into_iter());
assert_eq!(v.next(), Some(super::Id(1234u128)));
assert_eq!(v.next(), Some(super::Id(4321u128)));
assert_eq!(v.next(), None);
}
}
Link
),该特征通过
links
函数的迭代器提供了
Id
实例的迭代器。该特征也用作标记特征,因此我不能使用其他库。
最佳答案
在给出IdIter
和明确的生存期并调整程序的某些部分之后,它将进行编译。这是complete playground example。
#[derive(Debug, Eq, PartialEq)]
pub struct Id(u128);
pub struct IdIter<'a>(Box<dyn Iterator<Item = Id> + 'a>);
impl<'a> IdIter<'a> {
pub fn new<I: Iterator<Item = Id> + 'a>(tmpl: I) -> Self {
Self(Box::new(tmpl))
}
}
impl Iterator for IdIter<'_> {
type Item = Id;
fn next(&mut self) -> Option<Self::Item> {
self.0.next()
}
}
pub trait Link {
fn iter_id(&self) -> IdIter;
}
pub fn links<'a>(it: impl Iterator<Item = &'a (impl Link + 'a)> + 'a) -> impl Iterator<Item = Id> + 'a {
it.flat_map(Link::iter_id)
}
#[cfg(test)]
mod test {
struct X(u128);
impl super::Link for X {
fn iter_id(&self) -> super::IdIter {
super::IdIter(Box::new(Some(super::Id(self.0)).into_iter()))
}
}
#[test]
fn test_links() {
let mut v = super::links([X(1234), X(4321)].iter());
assert_eq!(v.next(), Some(super::Id(1234u128)));
assert_eq!(v.next(), Some(super::Id(4321u128)));
assert_eq!(v.next(), None);
}
}
关于rust - 除了使用“静态生命周期”以外的其他解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60905826/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!