style: rustfmt

This commit is contained in:
Ryan Leckey 2020-07-20 23:53:36 -07:00
parent ee4d9b5412
commit e4dc040620

View File

@ -108,9 +108,8 @@ where
// the OID of the element
let element_type_oid = buf.get_u32();
element_type_info = PgTypeInfo::try_from_oid(element_type_oid).unwrap_or_else(|| {
PgTypeInfo(PgType::DeclareWithOid(element_type_oid))
});
element_type_info = PgTypeInfo::try_from_oid(element_type_oid)
.unwrap_or_else(|| PgTypeInfo(PgType::DeclareWithOid(element_type_oid)));
// length of the array axis
let len = buf.get_i32();