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
use crate Write;
use Vec;
use Void;
/// `alloc/std` Write into a vector.
///
/// In order to write into a referenced vector use [IOSimpleWriter](crate::IOSimpleWriter),
/// and [SliceReader](crate::SliceReader) to read from a vector.
///
/// Use [void_write_unwrap](crate::ResultLzssErrorVoidWriteExt::void_write_unwrap) to remove the Void from the result.
/// Or [void_unwrap](crate::ResultLzssErrorVoidExt::void_unwrap) if also the reader produces Void.
;