Struct bytecodec::combinator::Slice[][src]

pub struct Slice<T> { /* fields omitted */ }
Expand description

Combinator for slicing an input/output byte sequence by the specified number of bytes.

This is created by calling {DecodeExt, EncodeExt}::slice.

Implementations

Returns the number of remaining bytes consumable in this slice.

The inner decoder or encoder will be suspended if the consumable bytes reaches to 0.

Set the number of remaining bytes consumable in this slice.

Returns true if the encoder or decoder cannot consume any more bytes, otherwise false.

To resume its works, it is needed to reset the value of consumable bytes by calling set_consumable_bytes method.

Returns a reference to the inner encoder or decoder.

Returns a mutable reference to the inner encoder or decoder.

Takes ownership of this instance and returns the inner encoder or decoder.

Trait Implementations

Formats the value using the given formatter. Read more

The type of items to be decoded.

Consumes the given buffer (a part of a byte sequence), and proceeds the decoding process. Read more

Finishes the current decoding process and returns the decoded item. Read more

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

Returns true if there are no items to be decoded by the decoder at the next invocation of decode method, otherwise false. Read more

Returns the “default value” for a type. Read more

The type of items to be encoded.

Encodes the items in the encoder and writes the encoded bytes to the given buffer. Read more

Tries to start encoding the given item. Read more

Returns true if there are no items to be encoded in the encoder, otherwise false. Read more

Returns the number of bytes required to encode all the items in the encoder. Read more

Returns the exact number of bytes required to encode all the items remaining in the encoder.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Consumes bytes from the given read buffer and proceeds the decoding process.

Decodes an item from the given reader. Read more

Encodes the items remaining in the encoder and writes the encoded bytes to the given write buffer. Read more

Encodes the items remaining in the encoder and writes the encoded bytes to the given write buffer. If the write buffer is full and the writing cannot be performed, the given WriteBuf will memorize cx’s Waker. This Waker’s wake will later be called when the WriteBuf regains its free space. Read more

Encodes all of the items remaining in the encoder and writes the encoded bytes to the given writer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.