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
use crate::prelude::*;
use std::ops::Deref;
#[cfg(feature = "encode")]
#[derive(Default)]
pub struct BoxEncoderArray<T> {
inner: T,
}
#[cfg(feature = "encode")]
impl<T: Encodable> Encodable for Box<T> {
type EncoderArray = BoxEncoderArray<T::EncoderArray>;
fn encode_root<O: EncodeOptions>(&self, stream: &mut EncoderStream<'_, O>) -> RootTypeId {
self.deref().encode_root(stream)
}
}
#[cfg(feature = "decode")]
pub struct BoxDecoderArray<T> {
inner: T,
}
#[cfg(feature = "decode")]
impl<T: Decodable> Decodable for Box<T> {
type DecoderArray = BoxDecoderArray<T::DecoderArray>;
fn decode(sticks: DynRootBranch<'_>, options: &impl DecodeOptions) -> DecodeResult<Self> {
Ok(Box::new(T::decode(sticks, options)?))
}
}
#[cfg(feature = "encode")]
impl<T: Encodable> EncoderArray<Box<T>> for BoxEncoderArray<T::EncoderArray> {
fn buffer_one<'a, 'b: 'a>(&'a mut self, value: &'b Box<T>) {
self.inner.buffer_one(&value)
}
fn flush<O: EncodeOptions>(self, stream: &mut EncoderStream<'_, O>) -> ArrayTypeId {
self.inner.flush(stream)
}
}
#[cfg(feature = "decode")]
impl<T: DecoderArray> DecoderArray for BoxDecoderArray<T> {
type Decode = Box<T::Decode>;
type Error = T::Error;
fn new(sticks: DynArrayBranch<'_>, options: &impl DecodeOptions) -> DecodeResult<Self> {
Ok(BoxDecoderArray { inner: T::new(sticks, options)? })
}
fn decode_next(&mut self) -> Result<Self::Decode, Self::Error> {
Ok(Box::new(self.inner.decode_next()?))
}
}