1use crate::{Encoding, Integer};
4use core::ops::Add;
5use generic_array::{typenum::Unsigned, ArrayLength, GenericArray};
6
7#[cfg_attr(docsrs, doc(cfg(feature = "generic-array")))]
9pub type ByteArray<T> = GenericArray<u8, <T as ArrayEncoding>::ByteSize>;
10
11#[cfg_attr(docsrs, doc(cfg(feature = "generic-array")))]
13pub trait ArrayEncoding: Encoding {
14 type ByteSize: ArrayLength<u8> + Add + Eq + Ord + Unsigned;
16
17 fn from_be_byte_array(bytes: ByteArray<Self>) -> Self;
19
20 fn from_le_byte_array(bytes: ByteArray<Self>) -> Self;
22
23 fn to_be_byte_array(&self) -> ByteArray<Self>;
25
26 fn to_le_byte_array(&self) -> ByteArray<Self>;
28}
29
30#[cfg_attr(docsrs, doc(cfg(feature = "generic-array")))]
32pub trait ArrayDecoding {
33 type Output: ArrayEncoding + Integer;
35
36 fn into_uint_be(self) -> Self::Output;
38
39 fn into_uint_le(self) -> Self::Output;
41}