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
56
57
58
//! Wrapper around `Vec<T>` to read and write with various layouts.
use Vec;
use crateSize;
/// Thin wrapper around [`alloc::vec::Vec<T>`] to read and write in various layouts.
///
/// It designed to make it easy to create complicated fields like this:
/// `encrypted_compressed_items: Encrypted<Compressed<FixedLengthVec<PascalString>>>`
///
/// Example usage of [`VecDeku`]:
///
/// ```rust
/// use deku_string::{Encoding, Size, StringDeku, StringLayout, VecDeku, VecLayout};
///
/// #[derive(Debug, Clone, PartialEq, deku::DekuRead, deku::DekuWrite)]
/// #[deku(endian = "little")]
/// struct SampleModel {
/// #[deku(ctx = "VecLayout::FixedLength(10)")]
/// fixed_length_vec: VecDeku<u8>,
///
/// #[deku(ctx = "VecLayout::LengthPrefix(Size::U32), (Encoding::Utf8, \
/// StringLayout::LengthPrefix(Size::U8))")]
/// vec_of_strings: VecDeku<StringDeku>,
/// }
/// ```
where
T: Sized + Clone;
/// Supported vec binary layouts.