pub struct Repeat { /* fields omitted */ }
一个 reader,一个又一个的字节,一个又一个的字节,一个又一个的字节。
通常通过调用 repeat() 来创建此结构体。 请参见 repeat() 的文档以获取更多详细信息。
repeat()
使用给定的格式化程序格式化该值。 Read more
从该源中提取一些字节到指定的缓冲区中,返回读取的字节数。 Read more
与 read 相似,不同之处在于它读入缓冲区的一部分。 Read more
read
can_vector
确定此 Read 是否具有有效的 read_vectored 实现。 Read more
Read
read_vectored
read_initializer
确定该 Reader 是否可以与未初始化内存的缓冲区一起使用。 Read more
Reader
读取所有字节,直到此源中的 EOF 为止,然后将它们放入 buf。 Read more
buf
读取所有字节,直到该源中的 EOF 为止,然后将它们附加到 buf。 Read more
读取填充 buf 所需的确切字节数。 Read more
为此 Read 实例创建 “by reference” 适配器。 Read more
impl<R: Read> Iterator for Bytes<R> type Item = Result<u8>;
将此 Read 实例的字节数转换为 Iterator。 Read more
Iterator
impl<T: Read, U: Read> Read for Chain<T, U>
创建一个适配器,它将将此流与另一个流链接。 Read more
impl<T: Read> Read for Take<T>
创建一个适配器,该适配器最多可以从中读取 limit 字节。 Read more
limit
获取 self 的 TypeId。 Read more
self
TypeId
从拥有的值中一成不变地借用。 Read more
从拥有的值中借用。 Read more
执行转换。
发生转换错误时返回的类型。