@@ -89,7 +89,7 @@ pub struct CsvReadOptions<'a> {
8989 pub file_sort_order : Vec < Vec < SortExpr > > ,
9090}
9191
92- impl < ' a > Default for CsvReadOptions < ' a > {
92+ impl Default for CsvReadOptions < ' _ > {
9393 fn default ( ) -> Self {
9494 Self :: new ( )
9595 }
@@ -243,7 +243,7 @@ pub struct ParquetReadOptions<'a> {
243243 pub file_sort_order : Vec < Vec < SortExpr > > ,
244244}
245245
246- impl < ' a > Default for ParquetReadOptions < ' a > {
246+ impl Default for ParquetReadOptions < ' _ > {
247247 fn default ( ) -> Self {
248248 Self {
249249 file_extension : DEFAULT_PARQUET_EXTENSION ,
@@ -323,7 +323,7 @@ pub struct ArrowReadOptions<'a> {
323323 pub table_partition_cols : Vec < ( String , DataType ) > ,
324324}
325325
326- impl < ' a > Default for ArrowReadOptions < ' a > {
326+ impl Default for ArrowReadOptions < ' _ > {
327327 fn default ( ) -> Self {
328328 Self {
329329 schema : None ,
@@ -368,7 +368,7 @@ pub struct AvroReadOptions<'a> {
368368 pub table_partition_cols : Vec < ( String , DataType ) > ,
369369}
370370
371- impl < ' a > Default for AvroReadOptions < ' a > {
371+ impl Default for AvroReadOptions < ' _ > {
372372 fn default ( ) -> Self {
373373 Self {
374374 schema : None ,
@@ -420,7 +420,7 @@ pub struct NdJsonReadOptions<'a> {
420420 pub file_sort_order : Vec < Vec < SortExpr > > ,
421421}
422422
423- impl < ' a > Default for NdJsonReadOptions < ' a > {
423+ impl Default for NdJsonReadOptions < ' _ > {
424424 fn default ( ) -> Self {
425425 Self {
426426 schema : None ,
0 commit comments