- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 Hyper 来实现一个网络服务。我从 the hello world example 复制代码它成功了。当我尝试将数据访问对象添加到 HelloWorld
结构时,出现错误,我不知道如何修复它。如何将特征成员添加到 Hyper 服务器?
extern crate futures;
extern crate hyper;
use futures::future::Future;
use hyper::header::ContentLength;
use hyper::server::{Http, Request, Response, Service};
trait Dao {}
struct MysqlDao;
impl Dao for MysqlDao {}
struct HelloWorld {
dao: Box<Dao>,
}
const PHRASE: &'static str = "Hello, World!";
impl Service for HelloWorld {
// boilerplate hooking up hyper's server types
type Request = Request;
type Response = Response;
type Error = hyper::Error;
// The future representing the eventual Response your call will
// resolve to. This can change to whatever Future you need.
type Future = Box<Future<Item = Self::Response, Error = Self::Error>>;
fn call(&self, _req: Request) -> Self::Future {
// We're currently ignoring the Request
// And returning an 'ok' Future, which means it's ready
// immediately, and build a Response with the 'PHRASE' body.
Box::new(futures::future::ok(
Response::new()
.with_header(ContentLength(PHRASE.len() as u64))
.with_body(PHRASE),
))
}
}
fn main() {
let addr = "127.0.0.1:3000".parse().unwrap();
let dao = Box::new(MysqlDao);
let server = Http::new().bind(&addr, || Ok(HelloWorld { dao })).unwrap();
server.run().unwrap();
}
错误信息:
error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`
--> src/main.rs:44:42
|
44 | let server = Http::new().bind(&addr, || Ok(HelloWorld { dao })).unwrap();
| ---- ^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| the requirement to implement `Fn` derives from here
|
note: closure is `FnOnce` because it moves the variable `dao` out of its environment
--> src/main.rs:44:61
|
44 | let server = Http::new().bind(&addr, || Ok(HelloWorld { dao })).unwrap();
| ^^^
最佳答案
我对 HelloWorld
结构进行了以下更改:
struct HelloWorld<'a> {
dao: &'a Dao,
}
我还将 let server
语句更改为:
let server = Http::new()
.bind(&addr, move || Ok(HelloWorld { dao: &dao }))
.unwrap();
完整代码:
extern crate futures;
extern crate hyper;
use futures::future::Future;
use hyper::header::ContentLength;
use hyper::server::{Http, Request, Response, Service};
trait Dao {}
struct MysqlDao;
impl Dao for MysqlDao {}
struct HelloWorld<'a> {
dao: &'a Dao,
}
const PHRASE: &'static str = "Hello, World!";
impl<'a> Service for HelloWorld<'a> {
// boilerplate hooking up hyper's server types
type Request = Request;
type Response = Response;
type Error = hyper::Error;
// The future representing the eventual Response your call will
// resolve to. This can change to whatever Future you need.
type Future = Box<Future<Item = Self::Response, Error = Self::Error>>;
fn call(&self, _req: Request) -> Self::Future {
// We're currently ignoring the Request
// And returning an 'ok' Future, which means it's ready
// immediately, and build a Response with the 'PHRASE' body.
Box::new(futures::future::ok(
Response::new()
.with_header(ContentLength(PHRASE.len() as u64))
.with_body(PHRASE),
))
}
}
fn main() {
let addr = "127.0.0.1:3000".parse().unwrap();
let dao = MysqlDao;
let server = Http::new()
.bind(&addr, move || Ok(HelloWorld { dao: &dao }))
.unwrap();
server.run().unwrap();
}
关于rust - 期望一个实现 `Fn` 特性的闭包,但是这个闭包只实现了 `FnOnce`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48764839/
我对 Option::map() 有点困惑。 documentation表示它接受 FnOnce。 如果是这样,为什么a和b会导致编译错误? let mut v = 3; let mut a: &Fn
我有以下代码在 Rust 中实现作用域线程——也就是说,能够生成线程并安全地访问堆栈上的变量。以下大部分代码取自 crossbeam , 也有一点灵感来自 scoped_threadpool . us
我正在尝试在线程之间共享一个函数,可以用另一个函数调用它: fn main() { let on_virtual_tun_write = std::sync::Arc::new(|f: &dy
我有一个函数需要递归地传递一个闭包参数 use std::cell::RefCell; use std::rc::Rc; pub struct TreeNode { val: i32,
在尝试重载调用语法时,我引入了一个简单的缓存,它可以缓存昂贵计算的结果。我对一段语法的使用有点困惑。我会在问题前逐步介绍代码。 缓存旨在像这样使用: fn fib(x: i32) -> i32 {
我有一个结构需要一个回调,该回调返回一个输出具有生命周期的 future : struct Foo; struct Bar; struct Baz where F: for FnOnce(&'a Fo
在下面的示例中,我使用 Arc 从请求处理程序引用服务器状态,但编译器将闭包设为 FnOnce .感觉就像我在做正确的事情,因为每个闭包都拥有对状态的强引用。为什么这不起作用?有什么选择可以使它工作?
我正在尝试创建一个只有 FnOnce 的函数。 以下代码片段不起作用: // Attempt 1 // Error doesn't have a size known at compile-time
我想像这样定义一个特征(以避免以后重复): trait Callback: FnOnce() + Send {} 但是,编译器要求我定义 FnOnce 的输出: error: the value of
我正在尝试将一个闭包传递给一个函数,该函数随后会在该函数的范围内改变传递给它的某些内容。根据我目前对 Rust 的理解,它应该看起来像这样: pub fn call_something(callbac
基本上,我想编写一个返回闭包的函数。我怎样才能做到这一点而不必返回 Box ? 来自closures chapter of the rust book ,我读到闭包只是结构的语法糖和 FnOnce 的
我在将引用计数变量移动到需要实现的闭包中遇到了一些问题 FnMut . 以下代码工作正常: use std::rc::Rc; fn main() { let callback; let
我想使用 Hyper 来实现一个网络服务。我从 the hello world example 复制代码它成功了。当我尝试将数据访问对象添加到 HelloWorld 结构时,出现错误,我不知道如何修复
我有以下代码片段: fn f u32>(c: T) { println!("Hello {}", c()); } fn main() { let mut x = 32; let
我是 Rust 的新手,在所有权/借用方面仍然存在一些问题。在这种情况下,我想将 FnOnce 存储在枚举中,然后稍后从另一个线程调用它。我尝试了很多不同的变体,但总是卡在某个地方。这是我目前拥有的简
我正尝试在 Rust 中进行一些高阶编程,但我在处理闭包方面遇到了一些困难。这是一个代码片段,说明了我遇到的问题之一: pub enum Foo { Bar(Box), } pub fn ap
闭包实现 Fn、FnMut 和 FnOnce 特征的特定条件是什么? 即: 什么时候闭包不实现FnOnce trait? 什么时候闭包不实现FnMut trait? 什么时候闭包不实现Fn trait
以下代码 ( playground ) 无法编译: async fn wrapper(func: F) where F: FnOnce(&i32) -> Fut, Fut: Futur
Fn 可以通过 channel 发送,但是 FnOnce 还不能稳定。为了通过 channel 发送 FnOnce,可以将其包装在 Fn 中,如下所示。 但是,这需要一个 Mutex,这会在扩展到非常
如果您查看 official Rust doc ,您会看到特征 Fn 派生自 FnMut,或者,要实现 Fn,您必须实现 FnMut(之后是 FnOnce,因为 FnMut 也派生自它)。 为什么会这
我是一名优秀的程序员,十分优秀!