Returns this `Identity` as a byte array.
(&self)
| 218 | |
| 219 | /// Returns this `Identity` as a byte array. |
| 220 | pub fn to_byte_array(&self) -> [u8; 32] { |
| 221 | self.__identity__.to_le_bytes() |
| 222 | } |
| 223 | |
| 224 | /// Convert this `Identity` to a BIG-ENDIAN byte array. |
| 225 | pub fn to_be_byte_array(&self) -> [u8; 32] { |
no test coverage detected