use alloc::vec::Vec;
use crate::{EncodeError, TryStaticCast};
pub trait NestedEncodeOutput {
fn write(&mut self, bytes: &[u8]);
fn push_byte(&mut self, byte: u8) {
self.write(&[byte]);
}
#[inline]
fn push_specialized<T, C, F>(
&mut self,
_context: C,
_value: &T,
else_serialization: F,
) -> Result<(), EncodeError>
where
T: TryStaticCast,
C: TryStaticCast,
F: FnOnce(&mut Self) -> Result<(), EncodeError>,
{
else_serialization(self)
}
}
impl NestedEncodeOutput for Vec<u8> {
fn write(&mut self, bytes: &[u8]) {
self.extend_from_slice(bytes)
}
}