Как получить async_read от Tokio-io для дескриптора файла
Я хочу вывести строки из дескриптора файла, и я не знаю, как удовлетворить черту, ограниченную File
имеет async_read
:
use std::fs::File;
use std::io::{ BufReader, BufRead };
use tokio_core::reactor::Handle;
use tokio_io::io::lines;
use tokio_io::AsyncRead;
struct DockerLog {
path: String
}
impl DockerLog {
pub fn new(path: String) -> DockerLog {
DockerLog {
path: path
}
}
pub fn read_lines(&self, handle: &Handle) {
let file : File = File::open(&self.path[..]).unwrap();
let l = lines(BufReader::new(file));
}
}
Ошибка:
error[E0277]: the trait bound `std::fs::File: tokio_io::AsyncRead` is not satisfied
--> src/container/docker_logs.rs:20:17
|
20 | let l = lines(BufReader::new(file));
| ^^^^^ the trait `tokio_io::AsyncRead` is not implemented for `std::fs::File`
|
= note: required because of the requirements on the impl of `tokio_io::AsyncRead` for `std::io::BufReader<std::fs::File>`
= note: required by `tokio_io::io::lines`
Оглядываясь на AsyncRead
Вроде как File
не отмечает, что у него есть неблокирующие чтения. Нужно ли понижать рейтинг File
к raw_fd
а потом что то там делать?