[][src]Struct replacing_buf_stream::ReplacingBufStream

pub struct ReplacingBufStream<Stream: BufStream<Item = Cursor<Bytes>>> { /* fields omitted */ }

Methods

impl<Stream: BufStream<Item = Cursor<Bytes>>> ReplacingBufStream<Stream>[src]

pub fn new(
    inner: Stream,
    to_be_replaced: Bytes,
    replacement: Bytes
) -> ReplacingBufStream<Stream>
[src]

Trait Implementations

impl<Stream: BufStream<Item = Cursor<Bytes>>> BufStream for ReplacingBufStream<Stream> where
    <Stream as BufStream>::Error: Debug
[src]

type Item = Cursor<Bytes>

Values yielded by the BufStream.

type Error = Stream::Error

The error type this BufStream might generate.

fn size_hint(&self) -> SizeHint[src]

Returns the bounds on the remaining length of the iterator. Read more

fn chain<T>(self, other: T) -> Chain<Self, T> where
    T: BufStream<Error = Self::Error>, 
[src]

Takes two buf streams and creates a new buf stream over both in sequence. Read more

fn collect<T>(self) -> Collect<Self, T> where
    T: FromBufStream
[src]

Consumes all data from self, storing it in byte storage of type T.

Auto Trait Implementations

impl<Stream> Send for ReplacingBufStream<Stream> where
    Stream: Send

impl<Stream> Sync for ReplacingBufStream<Stream> where
    Stream: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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 for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self