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
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright (c) 2021-2025, Harbers Bik LLC
use Serialize;
// Typical structure for Vcgp tag
/*
use crate::tags::common::*;
use serde::Serialize;
#[derive(Debug, Serialize, Clone, PartialEq)]
pub struct Vcgp {
tbd: Vec<u8>, // can not find any information about this tag
}
impl Vcgp {
pub fn try_new(buf: &mut &[u8]) -> Result<Self> {
Ok(Vcgp {
tbd: read_vec(buf, buf.len())?,
})
}
}
*/