Struct bytecodec::combinator::SkipRemaining [] [src]

pub struct SkipRemaining<D: Decode> { /* fields omitted */ }

Combinator for skipping the remaining bytes in an input byte sequence after decoding an item by using D.

Methods

impl<D: Decode> SkipRemaining<D>
[src]

Important traits for &'a mut W
[src]

Returns a reference to the inner decoder.

Important traits for &'a mut W
[src]

Returns a mutable reference to the inner decoder.

[src]

Takes ownership of this instance and returns the inner decoder.

Trait Implementations

impl<D: Debug + Decode> Debug for SkipRemaining<D> where
    D::Item: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<D: Default + Decode> Default for SkipRemaining<D> where
    D::Item: Default
[src]

[src]

Returns the "default value" for a type. Read more

impl<D: Decode> Decode for SkipRemaining<D>
[src]

The type of items to be decoded.

[src]

Consumes the given buffer (a part of a byte sequence), and decodes an item from it. Read more

[src]

Returns the lower bound of the number of bytes needed to decode the next item. Read more

Auto Trait Implementations

impl<D> Send for SkipRemaining<D> where
    D: Send,
    <D as Decode>::Item: Send

impl<D> Sync for SkipRemaining<D> where
    D: Sync,
    <D as Decode>::Item: Sync