pub type HexLowerOrBin<const N: usize> = HexOrBin<N, false>;
Expand description
HexOrBin
serializer which uses lower case.
Aliased Type§
struct HexLowerOrBin<const N: usize>(pub [u8; N]);
Fields§
§0: [u8; N]
Trait Implementations
Source§impl<'de, const N: usize, const UPPERCASE: bool> Deserialize<'de> for HexOrBin<N, UPPERCASE>
impl<'de, const N: usize, const UPPERCASE: bool> Deserialize<'de> for HexOrBin<N, UPPERCASE>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<const N: usize, const UPPERCASE: bool> Ord for HexOrBin<N, UPPERCASE>
impl<const N: usize, const UPPERCASE: bool> Ord for HexOrBin<N, UPPERCASE>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more