[][src]Struct subtle_encoding::hex::Hex

pub struct Hex { /* fields omitted */ }

Hexadecimal Encoding (a.k.a. Base16)

Methods

impl Hex[src]

pub fn lower_case() -> Hex[src]

Lower case hex: 0-9 a-f

pub fn upper_case() -> Hex[src]

Upper case hex: 0-9 A-F

Trait Implementations

impl Encoding for Hex[src]

impl Debug for Hex[src]

impl PartialEq<Hex> for Hex[src]

impl Eq for Hex[src]

impl Ord for Hex[src]

impl PartialOrd<Hex> for Hex[src]

impl Hash for Hex[src]

impl Copy for Hex[src]

impl Clone for Hex[src]

impl Default for Hex[src]

Auto Trait Implementations

impl Unpin for Hex

impl Send for Hex

impl Sync for Hex

impl UnwindSafe for Hex

impl RefUnwindSafe for Hex

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.