Struct docktape::io::Cursor1.0.0[][src]

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

A Cursor wraps another type and provides it with a Seek implementation.

Cursors are typically used with in-memory buffers to allow them to implement Read and/or Write, allowing these buffers to be used anywhere you might use a reader or writer that does actual I/O.

The standard library implements some I/O traits on various types which are commonly used as a buffer, like Cursor<Vec<u8>> and Cursor<&[u8]>.

Examples

We may want to write bytes to a File in our production code, but use an in-memory buffer in our tests. We can do this with Cursor:

use std::io::prelude::*;
use std::io::{self, SeekFrom};
use std::fs::File;

// a library function we've written
fn write_ten_bytes_at_end<W: Write + Seek>(writer: &mut W) -> io::Result<()> {
    writer.seek(SeekFrom::End(-10))?;

    for i in 0..10 {
        writer.write(&[i])?;
    }

    // all went well
    Ok(())
}

// Here's some code that uses this library function.
//
// We might want to use a BufReader here for efficiency, but let's
// keep this example focused.
let mut file = File::create("foo.txt")?;

write_ten_bytes_at_end(&mut file)?;

// now let's write a test
#[test]
fn test_writes_bytes() {
    // setting up a real File is much slower than an in-memory buffer,
    // let's use a cursor instead
    use std::io::Cursor;
    let mut buff = Cursor::new(vec![0; 15]);

    write_ten_bytes_at_end(&mut buff).unwrap();

    assert_eq!(&buff.get_ref()[5..15], &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
}

Methods

impl<T> Cursor<T>
[src]

Important traits for Cursor<T>

Creates a new cursor wrapping the provided underlying I/O object.

Cursor initial position is 0 even if underlying object (e. g. Vec) is not empty. So writing to cursor starts with overwriting Vec content, not with appending to it.

Examples

use std::io::Cursor;

let buff = Cursor::new(Vec::new());

Consumes this cursor, returning the underlying value.

Examples

use std::io::Cursor;

let buff = Cursor::new(Vec::new());

let vec = buff.into_inner();

Important traits for &'a mut R

Gets a reference to the underlying value in this cursor.

Examples

use std::io::Cursor;

let buff = Cursor::new(Vec::new());

let reference = buff.get_ref();

Important traits for &'a mut R

Gets a mutable reference to the underlying value in this cursor.

Care should be taken to avoid modifying the internal I/O state of the underlying value as it may corrupt this cursor's position.

Examples

use std::io::Cursor;

let mut buff = Cursor::new(Vec::new());

let reference = buff.get_mut();

Returns the current position of this cursor.

Examples

use std::io::Cursor;
use std::io::prelude::*;
use std::io::SeekFrom;

let mut buff = Cursor::new(vec![1, 2, 3, 4, 5]);

assert_eq!(buff.position(), 0);

buff.seek(SeekFrom::Current(2)).unwrap();
assert_eq!(buff.position(), 2);

buff.seek(SeekFrom::Current(-1)).unwrap();
assert_eq!(buff.position(), 1);

Sets the position of this cursor.

Examples

use std::io::Cursor;

let mut buff = Cursor::new(vec![1, 2, 3, 4, 5]);

assert_eq!(buff.position(), 0);

buff.set_position(2);
assert_eq!(buff.position(), 2);

buff.set_position(4);
assert_eq!(buff.position(), 4);

Trait Implementations

impl<T> Debug for Cursor<T> where
    T: Debug
[src]

Formats the value using the given formatter. Read more

impl<T> Clone for Cursor<T> where
    T: Clone
[src]

Important traits for Cursor<T>

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Read for Cursor<T> where
    T: AsRef<[u8]>, 
[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

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Important traits for &'a mut R

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

Important traits for Bytes<R>

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

Important traits for Chars<R>

Deprecated since 1.27.0

: Use str::from_utf8 instead: https://doc.rust-lang.org/nightly/std/str/struct.Utf8Error.html#examples

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

Important traits for Chain<T, U>

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

Important traits for Take<T>

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

impl<T> BufRead for Cursor<T> where
    T: AsRef<[u8]>, 
[src]

Fills the internal buffer of this object, returning the buffer contents. Read more

Tells this buffer that amt bytes have been consumed from the buffer, so they should no longer be returned in calls to read. Read more

Read all bytes into buf until the delimiter byte or EOF is reached. Read more

Read all bytes until a newline (the 0xA byte) is reached, and append them to the provided buffer. Read more

Important traits for Split<B>

Returns an iterator over the contents of this reader split on the byte byte. Read more

Important traits for Lines<B>

Returns an iterator over the lines of this reader. Read more

impl<T> Seek for Cursor<T> where
    T: AsRef<[u8]>, 
[src]

Seek to an offset, in bytes, in a stream. Read more

impl<'a> Write for Cursor<&'a mut Vec<u8>>
1.25.0
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

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

impl Write for Cursor<Box<[u8]>>
1.5.0
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

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

impl Write for Cursor<Vec<u8>>
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

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

impl<'a> Write for Cursor<&'a mut [u8]>
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Important traits for &'a mut R

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

impl<T> Buf for Cursor<T> where
    T: AsRef<[u8]>, 
[src]

Returns the number of bytes between the current position and the end of the buffer. Read more

Important traits for &'a [u8]

Returns a slice starting at the current position and of length between 0 and Buf::remaining(). Read more

Advance the internal cursor of the Buf Read more

Fills dst with potentially multiple slices starting at self's current position. Read more

Returns true if there are any more bytes to consume Read more

Copies bytes from self into dst. Read more

Gets an unsigned 8 bit integer from self. Read more

Gets a signed 8 bit integer from self. Read more

Gets an unsigned 16 bit integer from self in big-endian byte order. Read more

Gets an unsigned 16 bit integer from self in little-endian byte order. Read more

Gets a signed 16 bit integer from self in big-endian byte order. Read more

Gets a signed 16 bit integer from self in little-endian byte order. Read more

Gets an unsigned 32 bit integer from self in the big-endian byte order. Read more

Gets an unsigned 32 bit integer from self in the little-endian byte order. Read more

Gets a signed 32 bit integer from self in big-endian byte order. Read more

Gets a signed 32 bit integer from self in little-endian byte order. Read more

Gets an unsigned 64 bit integer from self in big-endian byte order. Read more

Gets an unsigned 64 bit integer from self in little-endian byte order. Read more

Gets a signed 64 bit integer from self in big-endian byte order. Read more

Gets a signed 64 bit integer from self in little-endian byte order. Read more

Gets an unsigned n-byte integer from self in big-endian byte order. Read more

Gets an unsigned n-byte integer from self in little-endian byte order. Read more

Gets a signed n-byte integer from self in big-endian byte order. Read more

Gets a signed n-byte integer from self in little-endian byte order. Read more

Gets an IEEE754 single-precision (4 bytes) floating point number from self in big-endian byte order. Read more

Gets an IEEE754 single-precision (4 bytes) floating point number from self in little-endian byte order. Read more

Gets an IEEE754 double-precision (8 bytes) floating point number from self in big-endian byte order. Read more

Gets an IEEE754 double-precision (8 bytes) floating point number from self in little-endian byte order. Read more

Transforms a Buf into a concrete buffer. Read more

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

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

Important traits for &'a mut R

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

Important traits for Reader<B>

Creates an adaptor which implements the Read trait for self. Read more

Important traits for Iter<T>

Returns an iterator over the bytes contained by the buffer. Read more

impl<T> BufMut for Cursor<T> where
    T: AsRef<[u8]> + AsMut<[u8]>, 
[src]

Returns the number of bytes that can be written from the current position until the end of the buffer is reached. Read more

Advance the internal cursor of the BufMut

Important traits for &'a [u8]

Returns a mutable slice starting at the current BufMut position and of length between 0 and BufMut::remaining().

The returned byte slice may represent uninitialized memory.

Returns true if there is space in self for more bytes. Read more

Fills dst with potentially multiple mutable slices starting at self's current position. Read more

Transfer bytes into self from src and advance the cursor by the number of bytes written. Read more

Transfer bytes into self from src and advance the cursor by the number of bytes written. Read more

Writes an unsigned 8 bit integer to self. Read more

Writes a signed 8 bit integer to self. Read more

Writes an unsigned 16 bit integer to self in big-endian byte order. Read more

Writes an unsigned 16 bit integer to self in little-endian byte order. Read more

Writes a signed 16 bit integer to self in big-endian byte order. Read more

Writes a signed 16 bit integer to self in little-endian byte order. Read more

Writes an unsigned 32 bit integer to self in big-endian byte order. Read more

Writes an unsigned 32 bit integer to self in little-endian byte order. Read more

Writes a signed 32 bit integer to self in big-endian byte order. Read more

Writes a signed 32 bit integer to self in little-endian byte order. Read more

Writes an unsigned 64 bit integer to self in the big-endian byte order. Read more

Writes an unsigned 64 bit integer to self in little-endian byte order. Read more

Writes a signed 64 bit integer to self in the big-endian byte order. Read more

Writes a signed 64 bit integer to self in little-endian byte order. Read more

Writes an unsigned n-byte integer to self in big-endian byte order. Read more

Writes an unsigned n-byte integer to self in the little-endian byte order. Read more

Writes a signed n-byte integer to self in big-endian byte order. Read more

Writes a signed n-byte integer to self in little-endian byte order. Read more

Writes an IEEE754 single-precision (4 bytes) floating point number to self in big-endian byte order. Read more

Writes an IEEE754 single-precision (4 bytes) floating point number to self in little-endian byte order. Read more

Writes an IEEE754 double-precision (8 bytes) floating point number to self in big-endian byte order. Read more

Writes an IEEE754 double-precision (8 bytes) floating point number to self in little-endian byte order. Read more

Important traits for &'a mut R

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

Important traits for Writer<B>

Creates an adaptor which implements the Write trait for self. Read more

impl AsyncWrite for Cursor<Vec<u8>>
[src]

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more

Attempt to write bytes from buf into the object. Read more

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

Write a Buf into this value, returning how many bytes were written. Read more

impl AsyncWrite for Cursor<Box<[u8]>>
[src]

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more

Attempt to write bytes from buf into the object. Read more

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

Write a Buf into this value, returning how many bytes were written. Read more

impl<'a> AsyncWrite for Cursor<&'a mut [u8]>
[src]

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more

Attempt to write bytes from buf into the object. Read more

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

Write a Buf into this value, returning how many bytes were written. Read more

impl<T> AsyncRead for Cursor<T> where
    T: AsRef<[u8]>, 
[src]

Prepares an uninitialized buffer to be safe to pass to read. Returns true if the supplied buffer was zeroed out. Read more

Attempt to read from the AsyncRead into buf. Read more

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

Deprecated since 0.1.7

: Use tokio_codec::Decoder::framed instead

Provides a Stream and Sink interface for reading and writing to this Io object, using Decode and Encode to read and write the raw data. Read more

Helper method for splitting this read/write object into two halves. Read more

Auto Trait Implementations

impl<T> Send for Cursor<T> where
    T: Send

impl<T> Sync for Cursor<T> where
    T: Sync