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
#![cfg_attr(feature = "nightly", feature(array_try_from_fn))]
#![cfg_attr(feature = "nightly", feature(associated_type_defaults))]
#![no_std]
#[cfg(feature = "std")]
extern crate std;
#[cfg(feature = "alloc")]
extern crate alloc;
pub mod encode;
use encode::Encode;
pub mod decode;
use decode::{Decode, DecodeOwned};
mod error;
pub use error::Error;
pub mod primitives;
pub mod helpers;
pub trait EncDec<'a>: Encode + Decode<'a, Output=Self> {}
impl <'a, T: Encode + Decode<'a, Output=Self>> EncDec<'a> for T {}