| 15 | /// implementation. |
| 16 | #[derive(Clone, Copy, Eq, PartialEq, Hash, sqlx::FromRow)] |
| 17 | pub struct ByteArray<const N: usize>(pub [u8; N]); |
| 18 | |
| 19 | impl<const N: usize> Debug for ByteArray<N> { |
| 20 | fn fmt(&self, f: &mut Formatter) -> fmt::Result { |
no outgoing calls