Struct tarrasque::Stream [] [src]

pub struct Stream<'a>(pub &'a [u8]);

A stream of bytes from which values can be extracted.

Methods

impl<'a> Stream<'a>
[src]

[src]

Extracts bytes from this stream as a T.

Example

let mut stream = Stream(&[1, 2]);
assert_eq!(stream.extract::<u8, _>(()), Ok(0x01));
assert_eq!(stream.extract::<u8, _>(()), Ok(0x02));
assert_eq!(stream.extract::<u8, _>(()), Err(ExtractError::Insufficient(1)));

Trait Implementations

impl<'a> Copy for Stream<'a>
[src]

impl<'a> Clone for Stream<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Stream<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for Stream<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> Eq for Stream<'a>
[src]

Auto Trait Implementations

impl<'a> Send for Stream<'a>

impl<'a> Sync for Stream<'a>