File tree 2 files changed +0
-23
lines changed
2 files changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -131,19 +131,6 @@ where
131
131
}
132
132
}
133
133
134
- impl < T > Type < Postgres > for Arc < [ T ] >
135
- where
136
- T : PgHasArrayType ,
137
- {
138
- fn type_info ( ) -> PgTypeInfo {
139
- T :: array_type_info ( )
140
- }
141
-
142
- fn compatible ( ty : & PgTypeInfo ) -> bool {
143
- T :: array_compatible ( ty)
144
- }
145
- }
146
-
147
134
impl < ' q , T > Encode < ' q , Postgres > for Vec < T >
148
135
where
149
136
for < ' a > & ' a [ T ] : Encode < ' q , Postgres > ,
Original file line number Diff line number Diff line change @@ -55,16 +55,6 @@ impl Type<Postgres> for String {
55
55
}
56
56
}
57
57
58
- impl Type < Postgres > for Arc < str > {
59
- fn type_info ( ) -> PgTypeInfo {
60
- <& str as Type < Postgres > >:: type_info ( )
61
- }
62
-
63
- fn compatible ( ty : & PgTypeInfo ) -> bool {
64
- <& str as Type < Postgres > >:: compatible ( ty)
65
- }
66
- }
67
-
68
58
impl PgHasArrayType for & ' _ str {
69
59
fn array_type_info ( ) -> PgTypeInfo {
70
60
PgTypeInfo :: TEXT_ARRAY
You can’t perform that action at this time.
0 commit comments