[][src]Struct preserves::value::reader::CompoundBody

pub struct CompoundBody<I: Copy> {
    pub info: I,
    pub limit: CompoundLimit,
}

Fields

info: Ilimit: CompoundLimit

Implementations

impl<I: Copy> CompoundBody<I>[src]

pub fn counted(info: I, size: usize) -> Self[src]

pub fn streaming(info: I) -> Self[src]

pub fn more_expected<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R
) -> ReaderResult<bool>
[src]

pub fn next_symbol<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R
) -> ReaderResult<Option<Cow<'de, str>>>
[src]

pub fn next_value<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R,
    read_annotations: bool
) -> ReaderResult<Option<IOValue>>
[src]

pub fn remainder<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R,
    read_annotations: bool
) -> ReaderResult<Vec<IOValue>>
[src]

pub fn skip_remainder<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R
) -> ReaderResult<()>
[src]

pub fn ensure_more_expected<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R
) -> ReaderResult<()>
[src]

pub fn ensure_complete<'de, R: Reader<'de, CompoundInfo = I>>(
    &mut self,
    read: &mut R
) -> ReaderResult<()>
[src]

Trait Implementations

impl<I: Debug + Copy> Debug for CompoundBody<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for CompoundBody<I> where
    I: RefUnwindSafe

impl<I> Send for CompoundBody<I> where
    I: Send

impl<I> Sync for CompoundBody<I> where
    I: Sync

impl<I> Unpin for CompoundBody<I> where
    I: Unpin

impl<I> UnwindSafe for CompoundBody<I> where
    I: UnwindSafe

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.