在结构体中声明闭包时定义使用冲突

发布于 2025-01-18 04:46:20 字数 691 浏览 0 评论 0原文

我正在尝试创建一个包含多个可复制闭包的结构。

type ClosureType = impl Fn(u64) -> u64 + Clone;


fn closure_try(t: u64) -> ClosureType {
    move |x: u64| x + t
}
fn closure_try_other(u: u64) -> ClosureType {
    move |x: u64| x - u
}

#[derive(Clone)]
pub struct Wrapper {
    pub h: Vec<ClosureType>
}
trait Tr: Clone {
    fn dup(s: Self) -> (Self, Self);
}
impl Tr for Wrapper {
    fn dup(c: Self) -> (Self, Self) {
        (c.clone(), c)
    }
}

但是,此代码失败并出现 ClosureType 错误:

rustc: concrete type differs from previous defining opaque type use

这是否意味着此方法不能用于存储多个不同的闭包?

I'm trying to create a struct that holds multiple copyable closures.

type ClosureType = impl Fn(u64) -> u64 + Clone;


fn closure_try(t: u64) -> ClosureType {
    move |x: u64| x + t
}
fn closure_try_other(u: u64) -> ClosureType {
    move |x: u64| x - u
}

#[derive(Clone)]
pub struct Wrapper {
    pub h: Vec<ClosureType>
}
trait Tr: Clone {
    fn dup(s: Self) -> (Self, Self);
}
impl Tr for Wrapper {
    fn dup(c: Self) -> (Self, Self) {
        (c.clone(), c)
    }
}

However this code fails with the error for ClosureType:

rustc: concrete type differs from previous defining opaque type use

Does it mean that this approach cannot be used to store multiple different closures?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜点 2025-01-25 04:46:20

type t = Impl特征只是命名不透明类型的一种方法。它是存在类型,这意味着它具有一个和仅一个具体的定义。 colletype是某种不愿意的类型,但由于相同的原因,它不能是两种不同的类型类型-can-impl-trait-not-be-be-be-return-multiph-multiph-conditional-types'>您无法从返回Impl特征 的函数中返回两种不同类型。

如果您需要多种类型的vec,即异质集合,则必须使用动态分配,即dyn特征

type T = impl Trait is only a way to name the opaque type. It is an existential type, meaning it has one and only one concrete definition. ClosureType is some unnamable type, but it cannot be two distinct types, for the same reason you cannot return two different types from a function that returns impl Trait.

If you need multiple types for the Vec, i.e. a heterogeneous collection, you have to use dynamic dispath, i.e. dyn Trait.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文