gpt4 book ai didi

rust - 泛型方法的特征界限 : how to define the same bounds without repeating myself

转载 作者:行者123 更新时间:2023-11-29 08:12:35 28 4
gpt4 key购买 nike

<分区>

查看这两种方法:

fn m1<T: 'static + Fn(&Request) -> Response + Send + Sync>(&mut self, handler: T) {
// It is not important
}

// Same trait bound to the generic
fn m2<T: 'static + Fn(&Request) -> Response + Send + Sync>(&mut self, handler: T) {
// It is not important
}

两者共享相同的界限:

<T: 'static + Fn(&Request) -> Response + Send + Sync>

我可以“分解”这个吗?我试图搜索文档,但也许我没有使用正确的词。有人可以将我重定向到文档的相关部分(或在需要时在此处写下答案)吗?

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com