Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
pub trait Digit<T> {
    // Required method
    fn digit(self, d: T) -> String;
}
Expand description

Abstract Digit trait, fill the empty space to specific length.

Required Methods§

source

fn digit(self, d: T) -> String

Implementations on Foreign Types§

source§

impl Digit<i32> for &'static str

source§

fn digit(self, d: i32) -> String

source§

impl Digit<i32> for i32

source§

fn digit(self, d: i32) -> String

source§

impl Digit<i32> for String

source§

fn digit(self, d: i32) -> String

Implementors§