mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-09-27 21:15:05 +00:00
Run rustfmt
This commit is contained in:
parent
c67f751968
commit
bbc0d70366
@ -1,4 +1,4 @@
|
||||
use crate::types::{SqlType, ToSql, ToSqlAs, FromSql};
|
||||
use crate::types::{FromSql, SqlType, ToSql, ToSqlAs};
|
||||
|
||||
pub struct Bool;
|
||||
|
||||
|
@ -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;
|
||||
|
@ -1,5 +1,5 @@
|
||||
mod boolean;
|
||||
mod character;
|
||||
mod numeric;
|
||||
mod boolean;
|
||||
|
||||
pub use self::boolean::Bool;
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user