pbcodec 0.0.8

An asynchronous encoder/decoder for Protocol Buffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use self::convert::{DecodeInto, DecodeTryInto};
pub use self::field::{DecodeMapField, DecodePackedRepeatedField, DecodeRepeatedField};
pub use self::message::{DecodeMessage, DecodeTupleMessage1, DecodeTupleMessage2,
                        DecodeTupleMessage3, DecodeTupleMessage4, DecodeTupleMessage5,
                        DecodeTupleMessage6, DecodeTupleMessage7, DecodeTupleMessage8};
pub use self::oneof::{DecodeOneof1, DecodeOneof2, DecodeOneof3, DecodeOneof4, DecodeOneof5,
                      DecodeOneof6, DecodeOneof7, DecodeOneof8};
pub use self::wire::{DecodeLengthDelimited, DecodeMaybeVarint, DecodeVarint, DiscardWireValue};

mod convert;
mod field;
mod message;
mod oneof;
mod primitive;
mod scalar;
//mod variant;
mod wire;