ltv="0.1"
```Rust
struct BasicLTV{ field1: u8, }
impl<'a> LTVItem<'a, ed::BE> for BasicLTV {
type Item = BasicLTV;
fn fromltv(: usize, data: &'a [u8]) -> LTVResult
Rust
let original = BasicLTV{
field1: 0x35
};
// toltv only returns the [v] infomation of an object let buffer = original.toltv();
let out = BasicLTV::fromltv(0x01, &buffer).unwrap(); asserteq!(original, out); assert_eq!(&buffer, &[2, 0x01, 0x35]); ```
```Rust
struct innerstructdata {
field1: u8,
field2: u16
}
impl
Ok(
inner_struct_data{
field1: reader.get_item::<u8>(0x1)?,
field2: reader.get_item::<u16>(0x2)?,
}
)
}
fn to_ltv(&self) -> Vec<u8>{
unimplemented!()
}
} ```
```Rust
let inputdata : &[u8] = &[
0x04,
0x01,
0x02,
0x01,
0xFF,
0x08,
0x02,
0x02,
0x01,
0x55,
0x03,
0x02,
0x01,
0x00
];
let reader = LTVReader::
let field1 = reader.getitem::
let field2 = reader.getitem::