Crate volans_codec

Crate volans_codec 

Source

Re-exports§

pub use prost;

Structs§

Bytes
A cheaply cloneable and sliceable chunk of contiguous memory.
BytesCodec
A simple codec that ships bytes around
BytesMut
A unique reference to a contiguous slice of memory.
Framed
A unified Stream and Sink interface to an underlying I/O object, using the Encoder and Decoder traits to encode and decode frames.
FramedParts
The parts obtained from Framed::into_parts.
FramedRead
A Stream of messages decoded from an AsyncRead.
FramedReadParts
The parts obtained from (FramedRead::into_parts).
FramedWrite
A Sink of frames encoded to an AsyncWrite.
FramedWriteParts
The parts obtained from FramedWrite::into_parts.
JsonUviCodec
LengthCodec
A simple Codec implementation sending your data by prefixing it by its length.
LinesCodec
A simple Codec implementation that splits up data into lines.
ProtobufUviCodec

Traits§

Decoder
Decoding of frames via buffers, for use with FramedRead.
Encoder
Encoding of messages as bytes, for use with FramedWrite.