8000 GitHub - emm312/printable
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

emm312/printable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

printable

Printable is a QOL crate to add member functions to print objects that implement Display.

Examples

use printable::DisplayPrintable;

fn main() {
    let a = 6;
    a.print();
    9.println();
}
use printable::*;

#[derive(Debug)]
struct Testy(i32, i64);

fn main() {
    let t = Testy(2, 3);
    t.debug().println();
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0