Run rustfmt

This commit is contained in:
Ryan Leckey 2019-08-05 08:16:35 -07:00
parent c67f751968
commit bbc0d70366
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
use crate::types::{SqlType, ToSql, ToSqlAs, FromSql};
use crate::types::{FromSql, SqlType, ToSql, ToSqlAs};
pub struct Bool;

View File

@ -1,4 +1,4 @@
use crate::types::{ToSql, ToSqlAs, FromSql, Text};
use crate::types::{FromSql, Text, ToSql, ToSqlAs};
impl ToSql for &'_ str {
type Type = Text;

View File

@ -1,5 +1,5 @@
mod boolean;
mod character;
mod numeric;
mod boolean;
pub use self::boolean::Bool;

View File

@ -1,4 +1,4 @@
use crate::types::{ToSql, ToSqlAs, FromSql, SmallInt, Int, BigInt, Real, Double};
use crate::types::{BigInt, Double, FromSql, Int, Real, SmallInt, ToSql, ToSqlAs};
use byteorder::{BigEndian, ByteOrder};
impl ToSql for i16 {