[][src]Type Definition ontio_std::types::Address

type Address = H160;

Byte array of length 20

Example

#![feature(proc_macro_hygiene)]
use ontio_std::types::Address;
use ontio_std::macros::base58;
const ADMIN: Address = base58!("AFmseVrdL9f9oyCzZefL9tG6UbvhPbdYzM");

Implementations

impl Address[src]

pub fn to_hex_string(&self) -> String[src]

Trait Implementations

impl Encoder for Address[src]

impl<'a> VmValueDecoder<'a> for &'a Address[src]

impl VmValueEncoder for Address[src]