1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
mod buffer;
mod decode;
mod encode;
#[cfg(feature = "prost")]
mod prost;
#[cfg(test)]
mod tests;
use std::io;
pub use self::decode::Streaming;
pub(crate) use self::encode::{encode_client, encode_server};
#[cfg(feature = "prost")]
#[cfg_attr(docsrs, doc(cfg(feature = "prost")))]
pub use self::prost::ProstCodec;
use crate::Status;
pub use buffer::{DecodeBuf, EncodeBuf};
pub trait Codec: Default {
    
    type Encode: Send + 'static;
    
    type Decode: Send + 'static;
    
    type Encoder: Encoder<Item = Self::Encode, Error = Status> + Send + Sync + 'static;
    
    type Decoder: Decoder<Item = Self::Decode, Error = Status> + Send + Sync + 'static;
    
    fn encoder(&mut self) -> Self::Encoder;
    
    fn decoder(&mut self) -> Self::Decoder;
}
pub trait Encoder {
    
    type Item;
    
    
    
    type Error: From<io::Error>;
    
    fn encode(&mut self, item: Self::Item, dst: &mut EncodeBuf<'_>) -> Result<(), Self::Error>;
}
pub trait Decoder {
    
    type Item;
    
    type Error: From<io::Error>;
    
    
    
    
    
    fn decode(&mut self, src: &mut DecodeBuf<'_>) -> Result<Option<Self::Item>, Self::Error>;
}