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
#[cfg(feature = "pem")]
pub(crate) mod pem;
pub(crate) mod slice;
use crate::Result;
#[cfg(feature = "std")]
use std::io;
pub trait Writer {
fn write(&mut self, slice: &[u8]) -> Result<()>;
fn write_byte(&mut self, byte: u8) -> Result<()> {
self.write(&[byte])
}
}
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
impl<W: io::Write> Writer for W {
fn write(&mut self, slice: &[u8]) -> Result<()> {
<Self as io::Write>::write(self, slice)?;
Ok(())
}
}