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 @@ -1411,7 +1411,7 @@ pub struct AuthorizedAccess<'a, 'b> {
14111411 permissions : & ' b Permissions ,
14121412}
14131413
1414- impl < ' a , ' b > AuthorizedAccess < ' a , ' b > {
1414+ impl AuthorizedAccess < ' _ , ' _ > {
14151415 #[ allow( clippy:: too_many_arguments) ]
14161416 pub async fn add_entry (
14171417 & self ,
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ async fn add_kuksa_attribute(
112112 }
113113}
114114
115- async fn read_metadata_file < ' a , ' b > (
115+ async fn read_metadata_file (
116116 database : & broker:: AuthorizedAccess < ' _ , ' _ > ,
117117 filename : & str ,
118118) -> Result < ( ) , Box < dyn std:: error:: Error > > {
Original file line number Diff line number Diff line change @@ -386,8 +386,8 @@ fn resolve_permissions(
386386 }
387387}
388388
389- async fn generate_metadata < ' a > (
390- db : & ' a AuthorizedAccess < ' _ , ' _ > ,
389+ async fn generate_metadata (
390+ db : & AuthorizedAccess < ' _ , ' _ > ,
391391 path : & str ,
392392) -> HashMap < String , MetadataEntry > {
393393 let mut metadata: HashMap < String , MetadataEntry > = HashMap :: new ( ) ;
You can’t perform that action at this time.
0 commit comments