mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-04-11 14:24:59 +00:00
style: rustfmt
This commit is contained in:
@@ -156,7 +156,6 @@ use crate::types::Type;
|
||||
mod array;
|
||||
mod bool;
|
||||
mod bytes;
|
||||
mod void;
|
||||
mod float;
|
||||
mod int;
|
||||
mod interval;
|
||||
@@ -165,6 +164,7 @@ mod range;
|
||||
mod record;
|
||||
mod str;
|
||||
mod tuple;
|
||||
mod void;
|
||||
|
||||
#[cfg(feature = "bigdecimal")]
|
||||
mod bigdecimal;
|
||||
|
||||
@@ -5,8 +5,8 @@ use crate::encode::Encode;
|
||||
use crate::error::{mismatched_types, BoxDynError};
|
||||
use crate::postgres::type_info::{PgType, PgTypeKind};
|
||||
use crate::postgres::{PgArgumentBuffer, PgTypeInfo, PgValueFormat, PgValueRef, Postgres};
|
||||
use crate::types::Type;
|
||||
use crate::type_info::TypeInfo;
|
||||
use crate::types::Type;
|
||||
|
||||
#[doc(hidden)]
|
||||
pub struct PgRecordEncoder<'a> {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use crate::types::Type;
|
||||
use crate::error::BoxDynError;
|
||||
use crate::decode::Decode;
|
||||
use crate::postgres::{PgTypeInfo, Postgres, PgValueRef};
|
||||
use crate::error::BoxDynError;
|
||||
use crate::postgres::{PgTypeInfo, PgValueRef, Postgres};
|
||||
use crate::types::Type;
|
||||
|
||||
impl Type<Postgres> for () {
|
||||
fn type_info() -> PgTypeInfo {
|
||||
|
||||
Reference in New Issue
Block a user