commands: strip lifetimes

This commit is contained in:
2025-12-08 12:30:19 +09:00
parent 78cfc09d60
commit 8430592bee
133 changed files with 269 additions and 271 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ pub struct AddRequest {
position: Option<SongPosition>,
}
impl CommandRequest<'_> for AddRequest {
impl CommandRequest for AddRequest {
const COMMAND: &'static str = "add";
fn into_request_enum(self) -> crate::Request {
@@ -60,7 +60,7 @@ impl CommandRequest<'_> for AddRequest {
empty_command_response!(Add);
impl Command<'_, '_> for Add {
impl Command for Add {
type Request = AddRequest;
type Response = AddResponse;
}