update to use fmt::{Display,Debug} instead of fmt::{String,Show}

This commit is contained in:
Patrick Fernie
2015-02-03 18:59:58 -05:00
parent 88d0566010
commit 58fa5bde2a
2 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ extern crate time;
use time::Timespec;
use rusqlite::SqliteConnection;
#[derive(Show)]
#[derive(Debug)]
struct Person {
id: i32,
name: String,