Struct core_io::Take [] [src]

pub struct Take<T> { /* fields omitted */ }

Reader adaptor which limits the bytes read from an underlying reader.

This struct is generally created by calling take() on a reader. Please see the documentation of take() for more details.

Methods

impl<T> Take<T>
[src]

Returns the number of bytes that can be read before this instance will return EOF.

Note

This instance may reach EOF after reading fewer bytes than indicated by this method if the underlying Read instance reaches EOF.

Examples

use std::io;
use std::io::prelude::*;
use std::fs::File;

let f = try!(File::open("foo.txt"));

// read at most five bytes
let handle = f.take(5);

println!("limit: {}", handle.limit());

Consumes the Take, returning the wrapped reader.

Examples

#![feature(io_take_into_inner)]

use std::io;
use std::io::prelude::*;
use std::fs::File;

let mut file = try!(File::open("foo.txt"));

let mut buffer = [0; 5];
let mut handle = file.take(5);
try!(handle.read(&mut buffer));

let file = handle.into_inner();

Trait Implementations

impl<T: Read> Read for Take<T>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more