You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want the proc macros to support aliases for a certain method or subscription such as:
pub trait Rpc {
/// The server should respond to both `getKeys` and `getKeysWithAlias` with some method registered on the server.
#[method(name = "getKeys", alias = "getKeysWithAlias")]
async fn get_keys(&self) -> Vec<usize>
}
The text was updated successfully, but these errors were encountered:
We want the
proc macros
to support aliases for a certain method or subscription such as:The text was updated successfully, but these errors were encountered: