File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -514,7 +514,7 @@ impl Row {
514514 }
515515
516516 #[ napi]
517- pub fn values ( & self ) -> Vec < Value > {
517+ pub fn values ( & self ) -> Vec < Value < ' _ > > {
518518 self . inner
519519 . values ( )
520520 . iter ( )
@@ -523,7 +523,7 @@ impl Row {
523523 }
524524
525525 #[ napi]
526- pub fn data ( & self ) -> HashMap < String , Value > {
526+ pub fn data ( & self ) -> HashMap < String , Value < ' _ > > {
527527 let mut map = HashMap :: new ( ) ;
528528 let schema = self . inner . schema ( ) ;
529529 for ( name, value) in schema
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ pub static VERSION: Lazy<String> = Lazy::new(|| {
3434
3535pub static DECIMAL_CLS : GILOnceCell < Py < PyType > > = GILOnceCell :: new ( ) ;
3636
37- fn get_decimal_cls ( py : Python < ' _ > ) -> PyResult < & Bound < PyType > > {
37+ fn get_decimal_cls ( py : Python < ' _ > ) -> PyResult < & Bound < ' _ , PyType > > {
3838 DECIMAL_CLS
3939 . get_or_try_init ( py, || {
4040 py. import ( intern ! ( py, "decimal" ) ) ?
Original file line number Diff line number Diff line change @@ -445,7 +445,7 @@ struct TypeDesc<'t> {
445445 args : Vec < TypeDesc < ' t > > ,
446446}
447447
448- fn parse_type_desc ( s : & str ) -> Result < TypeDesc > {
448+ fn parse_type_desc ( s : & str ) -> Result < TypeDesc < ' _ > > {
449449 let mut name = "" ;
450450 let mut args = vec ! [ ] ;
451451 let mut depth = 0 ;
You can’t perform that action at this time.
0 commit comments