We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3742060 commit 5bbf61aCopy full SHA for 5bbf61a
1 file changed
src/lib/lib.rs
@@ -1162,12 +1162,12 @@ impl<'conn> PostgresStatement<'conn> {
1162
}
1163
1164
/// Returns a slice containing the expected parameter types.
1165
- pub fn param_types<'a>(&'a self) -> &'a [PostgresType] {
+ pub fn param_types(&self) -> &[PostgresType] {
1166
self.param_types.as_slice()
1167
1168
1169
/// Returns a slice describing the columns of the result of the query.
1170
- pub fn result_descriptions<'a>(&'a self) -> &'a [ResultDescription] {
+ pub fn result_descriptions(&self) -> &[ResultDescription] {
1171
self.result_desc.as_slice()
1172
1173
0 commit comments