pub struct BaseEncoding;
Expand description
Provides utility functions for encoding and decoding between various bases.
Implementations§
Source§impl BaseEncoding
impl BaseEncoding
Sourcepub fn decode<T>(data: &T, base: Base) -> Result<Vec<u8>>
pub fn decode<T>(data: &T, base: Base) -> Result<Vec<u8>>
Decodes the given data
encoded as the specified base
.
Sourcepub fn encode_base58<T>(data: &T) -> String
pub fn encode_base58<T>(data: &T) -> String
Encodes the given data
to Base::Base58Btc
.
Equivalent to encode(data, Base58Btc)
.
Sourcepub fn decode_base58<T>(data: &T) -> Result<Vec<u8>>
pub fn decode_base58<T>(data: &T) -> Result<Vec<u8>>
Decodes the given data
encoded as Base::Base58Btc
.
Equivalent to decode(data, Base58Btc)
.
Sourcepub fn encode_multibase<T>(data: &T, base: Option<Base>) -> String
pub fn encode_multibase<T>(data: &T, base: Option<Base>) -> String
Encodes the given data
as Multibase with the given base
, defaults to
Base::Base58Btc
if omitted.
NOTE: encode_multibase
is different from encode
because the
Multibase format prepends a character representing the base-encoding to the output.
Auto Trait Implementations§
impl Freeze for BaseEncoding
impl RefUnwindSafe for BaseEncoding
impl Send for BaseEncoding
impl Sync for BaseEncoding
impl Unpin for BaseEncoding
impl UnwindSafe for BaseEncoding
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more