[][src]Struct romp::body_parser::text::TextBodyParser

pub struct TextBodyParser { /* fields omitted */ }

Body parser for binary data when we dont know the expected length of the data, data must be text so we can scan for \0

Methods

impl TextBodyParser[src]

reads up to \0

pub fn new(max_len: usize) -> TextBodyParser[src]

pub fn bytes_read(&self) -> usize[src]

how many bytes read form the stream this inlcudes \0

pub fn reinit(&mut self, max_len: usize)[src]

must be called before use

Trait Implementations

impl BodyParser for TextBodyParser[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Erased for T

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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> UnsafeAny for T where
    T: Any