(&self)
| 96 | self.data1.len() + self.data2.len() |
| 97 | } |
| 98 | pub const fn is_empty(&self) -> bool { |
| 99 | self.data1.is_empty() |
| 100 | } |
| 101 | pub fn to_vec(&self) -> Vec<u8> { |
| 102 | [self.data1, self.data2].concat() |
| 103 | } |
no outgoing calls
no test coverage detected