[][src]Trait ids_service::common::Encode

pub trait Encode: Sized {
    fn as_hex(&self) -> String { ... }
fn as_base64(&self) -> String { ... }
fn as_base64_url(&self) -> String { ... }
fn as_base32(&self) -> String { ... }
fn as_json(&self) -> String { ... } }

Trait to define possible encoding output.

Provided methods

fn as_hex(&self) -> String

fn as_base64(&self) -> String

fn as_base64_url(&self) -> String

fn as_base32(&self) -> String

fn as_json(&self) -> String

Loading content...

Implementations on Foreign Types

impl Encode for Vec<u8>[src]

Implementation for Vec

impl Encode for u64[src]

Implementation for u64

Loading content...

Implementors

Loading content...