Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2023-10-10 11:49:39 +00:00 committed by GitHub
parent fb7e2a924a
commit 18bf868331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View File

@ -789,4 +789,4 @@ fn make_error_message(our_name: String, km: &KernelMessage, error: FsError) -> K
payload: None,
signed_capabilities: None,
}
}
}

View File

@ -225,7 +225,9 @@ async fn load_state_from_reboot(
println!("vfs lsfr 4\r");
}
async fn noop_future() -> Option<DriveToVfs> { None }
async fn noop_future() -> Option<DriveToVfs> {
None
}
pub async fn vfs(
our_node: String,
@ -252,7 +254,8 @@ pub async fn vfs(
&send_to_loop,
&mut recv_from_loop,
&mut drive_to_vfs,
).await;
)
.await;
for vfs_message in vfs_messages {
send_to_loop.send(vfs_message).await.unwrap();
@ -1481,4 +1484,4 @@ async fn match_request(
}
}
})
}
}