We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7e5b7 commit e362febCopy full SHA for e362feb
2 files changed
src/lib.rs
@@ -203,6 +203,7 @@ impl IntoConnectParams for PostgresConnectParams {
203
}
204
205
impl<'a> IntoConnectParams for &'a str {
206
+ #[allow(deprecated)]
207
fn into_connect_params(self) -> Result<PostgresConnectParams, PostgresConnectError> {
208
match Url::parse(self) {
209
Ok(url) => url.into_connect_params(),
src/types/mod.rs
@@ -107,6 +107,7 @@ macro_rules! make_postgres_type(
107
108
109
110
+ /*
111
fn member_type(&self) -> PostgresType {
112
match *self {
113
$(
@@ -115,6 +116,7 @@ macro_rules! make_postgres_type(
115
116
_ => unreachable!()
117
118
119
+ */
120
121
)
122
0 commit comments