(&self)
| 42 | |
| 43 | impl AsRef<[u8]> for MessageBytes { |
| 44 | fn as_ref(&self) -> &[u8] { |
| 45 | match self { |
| 46 | Self::U64(bytes) => bytes, |
| 47 | Self::U128(bytes) => bytes, |
| 48 | Self::U192(bytes) => bytes, |
| 49 | Self::U448(bytes) => bytes, |
| 50 | } |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | impl MessageBytes { |
no outgoing calls