sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs

This commit is contained in:
John Gallagher
2015-01-05 10:59:55 -05:00
parent 52aeb19246
commit 5902b9106c
4 changed files with 28 additions and 28 deletions

View File

@@ -141,7 +141,7 @@ impl<T: ToSql> ToSql for Option<T> {
/// conn.execute("INSERT INTO people (name) VALUES (?)", &[&Null])
/// }
/// ```
#[deriving(Copy)]
#[derive(Copy)]
pub struct Null;
impl ToSql for Null {