Iterate over the constant's bytes.
(&self)
| 93 | |
| 94 | /// Iterate over the constant's bytes. |
| 95 | pub fn iter(&self) -> Iter<'_, u8> { |
| 96 | self.0.iter() |
| 97 | } |
| 98 | |
| 99 | /// Add new bytes to the constant data. |
| 100 | pub fn append(mut self, bytes: impl IntoBytes) -> Self { |
no outgoing calls