[][src]Struct needletail::formats::RecBuffer

pub struct RecBuffer<'a> {
    pub buf: Vec<u8>,
    pub last: bool,
    // some fields omitted
}

A buffer that wraps an object with the Read trait and allows extracting a set of slices to data. Acts as a lower-level primitive for our FASTX readers.

Fields

buf: Vec<u8>last: bool

Methods

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

pub fn new(
    file: &'a mut dyn Read,
    buf: Vec<u8>
) -> Result<RecBuffer<'a>, ParseError>
[src]

Instantiate a new buffer.

Panics

Under some very rare circumstances (setting a buf_size larger than 2 Gb on Mac OS X) a panic can occur. Please use a smaller buffer in this case.

pub fn refill(&mut self, used: usize) -> Result<bool, ParseError>[src]

Refill the buffer and increase its capacity if it's not big enough. Takes a tuple of the bytes used and how many records returned so far.

Auto Trait Implementations

impl<'a> !Send for RecBuffer<'a>

impl<'a> !Sync for RecBuffer<'a>

impl<'a> Unpin for RecBuffer<'a>

impl<'a> !UnwindSafe for RecBuffer<'a>

impl<'a> !RefUnwindSafe for RecBuffer<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]