Struct bytecodec::combinator::Assert [] [src]

pub struct Assert<D, F> { /* fields omitted */ }

Combinator for declaring an assertion about decoded items.

This created by calling DecodeExt::assert method.

Trait Implementations

impl<D: Debug, F: Debug> Debug for Assert<D, F>
[src]

[src]

Formats the value using the given formatter. Read more

impl<D: Decode, F> Decode for Assert<D, F> where
    F: for<'a> Fn(&'a D::Item) -> bool
[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, F> Send for Assert<D, F> where
    D: Send,
    F: Send

impl<D, F> Sync for Assert<D, F> where
    D: Sync,
    F: Sync