flake.lock: bump, Cargo.{toml,lock}: update inputs
All checks were successful
Build and test / check (push) Successful in 1m16s
Build and test / build (push) Successful in 1m59s
Build and test / test (push) Successful in 2m0s
Build and test / docs (push) Successful in 4m14s

This commit is contained in:
2026-01-25 16:14:26 +09:00
parent 7985f182c6
commit 23b163e828
4 changed files with 61 additions and 48 deletions

View File

@@ -89,11 +89,12 @@ impl zlink::Service for Roowhoo2ClientServer {
type ReplyStream = futures_util::stream::Empty<zlink::Reply<()>>;
type ReplyError<'se> = RwhodClientError;
async fn handle<'ser, 'de: 'ser, Sock: zlink::connection::Socket>(
&'ser mut self,
call: zlink::Call<Self::MethodCall<'de>>,
async fn handle<'service, Sock: zlink::connection::Socket>(
&'service mut self,
call: &'service zlink::Call<Self::MethodCall<'_>>,
_conn: &mut zlink::Connection<Sock>,
) -> MethodReply<Self::ReplyParams<'ser>, Self::ReplyStream, Self::ReplyError<'ser>> {
) -> MethodReply<Self::ReplyParams<'service>, Self::ReplyStream, Self::ReplyError<'service>>
{
match call.method() {
RwhodClientRequest::Rwho { all } => MethodReply::Single(Some(
RwhodClientResponse::Rwho(self.handle_rwho_request(*all).await),