| 8 | #[cfg_attr(feature = "serde", derive(serde::Serialize))] |
| 9 | #[derive(Debug)] |
| 10 | pub struct SmallStringTableEntry { |
| 11 | pub is_utf_16: bool, |
| 12 | pub offset: u32, |
| 13 | pub length: u32, |
| 14 | // Before v56 there was an additional "identifier" field, but there's no real reason to support it as of right now. |
| 15 | // If someone needs it, raise an issue and provide the bytecode file format and def files. |
| 16 | } |
| 17 | |
| 18 | impl Serializable for SmallStringTableEntry { |
| 19 | type Version = u32; |
nothing calls this directly
no outgoing calls
no test coverage detected