我有这个lib.rs
文件。
use std::io::{ Result, Read };
pub trait ReadExt: Read {
/// Read all bytes until EOF in this source, returning them as a new `Vec`.
///
/// See `read_to_end` for other semantics.
fn read_into_vec(&mut self) -> Result<Vec<u8>> {
let mut buf = Vec::new();
let res = self.read_to_end(&mut buf);
res.map(|_| buf)
}
/// Read all bytes until EOF in this source, returning them as a new buffer.
///
/// See `read_to_string` for other semantics.
fn read_into_string(&mut self) -> Result<String> {
let mut buf = String::new();
let res = self.read_to_string(&mut buf);
res.map(|_| buf)
}
}
impl<T> ReadExt for T where T: Read {}
现在我想在单独的test/lib.rs
extern crate readext;
use std::io::{Read,Cursor};
use readext::ReadExt;
#[test]
fn test () {
let bytes = b"hello";
let mut input = Cursor::new(bytes);
let s = input.read_into_string();
assert_eq!(s, "hello");
}
但是Rust一直告诉我
type std::io::cursor::Cursor<&[u8; 5]>
未在名为read_into_string
我不知道为什么。显然我已经use
了。困惑。
答案 0 :(得分:5)
答案已经在错误中了:
输入std :: io :: cursor :: Cursor&lt;&amp; [u8; 5]&GT;没有实现任何方法 在名为read_into_string的范围内
问题是,Cursor<&[u8; 5]>
没有实现Read
,因为包装类型是指向固定大小数组而不是切片的指针,因此它也不实现你的特征。我想这些内容应该有效:
#[test]
fn test () {
let bytes = b"hello";
let mut input = Cursor::new(bytes as &[u8]);
let s = input.read_into_string();
assert_eq!(s, "hello");
}
这种方式input
的类型为Cursor<&[u8]>
,它实现了Read
,因此也应该实现您的特征。