Struct serde_at::HexStr

source ·
pub struct HexStr<T> {
    pub val: T,
    pub add_0x_with_encoding: bool,
    pub hex_in_caps: bool,
    pub delimiter_after_nibble_count: usize,
    pub delimiter: char,
    pub skip_last_0_values: bool,
}
Expand description

HexStr<T> A hex string. Has fields used in serializing whether to add a 0x to the encoding and to make the hex value in capital letters or not. Can be dereferenced to its value.

Fields§

§val: T

Value of the hex string. Can be dereferenced

§add_0x_with_encoding: bool

Flag to add 0x when serializing the value

§hex_in_caps: bool

Flag to serialize the hex in capital letters

§delimiter_after_nibble_count: usize

Flag to split every n amount of nibbles with a delimiter

§delimiter: char

Split every n amount of nibbles with this delimiter

§skip_last_0_values: bool

Skip last 0 values. Whether or not to include 0 values

Methods from Deref<Target = u64>§

1.43.0 · source

pub const MIN: u64 = 0u64

1.43.0 · source

pub const MAX: u64 = 18_446_744_073_709_551_615u64

1.53.0 · source

pub const BITS: u32 = 64u32

Trait Implementations§

source§

impl<T: Clone> Clone for HexStr<T>

source§

fn clone(&self) -> HexStr<T>

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<T: Debug> Debug for HexStr<T>

source§

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

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

impl<T> Default for HexStr<T>
where T: Default,

source§

fn default() -> Self

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

impl Deref for HexStr<u128>

§

type Target = u128

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Deref for HexStr<u16>

§

type Target = u16

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Deref for HexStr<u32>

§

type Target = u32

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Deref for HexStr<u64>

§

type Target = u64

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Deref for HexStr<u8>

§

type Target = u8

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'de> Deserialize<'de> for HexStr<u128>

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<'de> Deserialize<'de> for HexStr<u16>

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<'de> Deserialize<'de> for HexStr<u32>

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<'de> Deserialize<'de> for HexStr<u64>

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<'de> Deserialize<'de> for HexStr<u8>

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<T: PartialEq> PartialEq for HexStr<T>

source§

fn eq(&self, other: &HexStr<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq> Eq for HexStr<T>

source§

impl<T> StructuralPartialEq for HexStr<T>

Auto Trait Implementations§

§

impl<T> Freeze for HexStr<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for HexStr<T>
where T: RefUnwindSafe,

§

impl<T> Send for HexStr<T>
where T: Send,

§

impl<T> Sync for HexStr<T>
where T: Sync,

§

impl<T> Unpin for HexStr<T>
where T: Unpin,

§

impl<T> UnwindSafe for HexStr<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,