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
use crate::{
DecodeError, DecodeErrorHandler, DefaultErrorHandler, TopDecode, TopDecodeMultiInput, TopEncode,
};
pub trait TopDecodeMulti: Sized {
const IS_SINGLE_VALUE: bool = false;
fn multi_decode<I>(input: &mut I) -> Result<Self, DecodeError>
where
I: TopDecodeMultiInput,
{
Self::multi_decode_or_handle_err(input, DefaultErrorHandler)
}
fn multi_decode_or_handle_err<I, H>(input: &mut I, h: H) -> Result<Self, H::HandledErr>
where
I: TopDecodeMultiInput,
H: DecodeErrorHandler,
{
match Self::multi_decode(input) {
Ok(v) => Ok(v),
Err(e) => Err(h.handle_error(e)),
}
}
}
pub trait TopDecodeMultiLength {
const LEN: usize;
fn get_len() -> usize {
Self::LEN
}
}
impl<T> TopDecodeMulti for T
where
T: TopDecode,
{
const IS_SINGLE_VALUE: bool = true;
fn multi_decode_or_handle_err<I, H>(input: &mut I, h: H) -> Result<Self, H::HandledErr>
where
I: TopDecodeMultiInput,
H: DecodeErrorHandler,
{
input.next_value(h)
}
}
impl<T> TopDecodeMultiLength for T
where
T: TopEncode + TopDecode,
{
const LEN: usize = 1;
}