[][src]Trait tinkerforge::base58::Base58

pub trait Base58 {
    fn base58_to_u32(&self) -> Result<u32, Base58Error>;
}

A trait which adds Base58 parsing capabilities to strings. The alphabet used is "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ".

Required methods

fn base58_to_u32(&self) -> Result<u32, Base58Error>

Parse this string as Base58 encoded uid. Returns an error if a character is found, that is not part of the used alphabet.

Loading content...

Implementations on Foreign Types

impl Base58 for str[src]

impl Base58 for String[src]

Loading content...

Implementors

Loading content...