[][src]Trait multiprint::MultiPrint

pub trait MultiPrint: ToString {
    fn times(&self, n: usize, sep: char) -> String { ... }
}

This MultiPrint trait exposes a default implementation of the times() method

By default, the times method is auto-implemented for the String type

Provided methods

fn times(&self, n: usize, sep: char) -> String

Loading content...

Implementations on Foreign Types

impl MultiPrint for String[src]

Loading content...

Implementors

Loading content...