serdect::array

Type Alias HexLowerOrBin

Source
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<const N: usize, const UPPERCASE: bool> AsRef<[u8]> for HexOrBin<N, UPPERCASE>

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<const N: usize, const UPPERCASE: bool> Clone for HexOrBin<N, UPPERCASE>

Source§

fn clone(&self) -> HexOrBin<N, UPPERCASE>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> Debug for HexOrBin<N, UPPERCASE>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> Default for HexOrBin<N, UPPERCASE>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

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>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> From<&[u8; N]> for HexOrBin<N, UPPERCASE>

Source§

fn from(bytes: &[u8; N]) -> Self

Converts to this type from the input type.
Source§

impl<const N: usize, const UPPERCASE: bool> From<[u8; N]> for HexOrBin<N, UPPERCASE>

Source§

fn from(bytes: [u8; N]) -> Self

Converts to this type from the input type.
Source§

impl<const N: usize, const UPPERCASE: bool> Hash for HexOrBin<N, UPPERCASE>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> Ord for HexOrBin<N, UPPERCASE>

Source§

fn cmp(&self, other: &HexOrBin<N, UPPERCASE>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> PartialEq for HexOrBin<N, UPPERCASE>

Source§

fn eq(&self, other: &HexOrBin<N, UPPERCASE>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const N: usize, const UPPERCASE: bool> PartialOrd for HexOrBin<N, UPPERCASE>

Source§

fn partial_cmp(&self, other: &HexOrBin<N, UPPERCASE>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> Serialize for HexOrBin<N, UPPERCASE>

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<const N: usize, const UPPERCASE: bool> Copy for HexOrBin<N, UPPERCASE>

Source§

impl<const N: usize, const UPPERCASE: bool> Eq for HexOrBin<N, UPPERCASE>

Source§

impl<const N: usize, const UPPERCASE: bool> StructuralPartialEq for HexOrBin<N, UPPERCASE>