anychain-tron 0.2.6

A Rust library for Tron-focused cryptocurrency wallets, enabling seamless transactions on the Tron blockchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anychain_core::Format;

use core::fmt;
use serde::Serialize;

/// Represents the format of a Ethereum address
#[derive(Serialize, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum TronFormat {
    Standard,
}

impl Format for TronFormat {}

impl fmt::Display for TronFormat {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "TronFormat")
    }
}