Attribute Macro rpc_it::service

source ·
#[service]
Expand description

Defines new RPC service

All parameter types must implement both of [serde::Serialize] and [serde::Deserialize].

The trait name will be converted to snake_case module, and all related definitions will be defined inside the module.

Available Attributes For Methods

  • async_fn: For requests(which has -> return type), this passes the request object to the handler, instead of waiting return value.
  • routes = "...": Additional routes for the method. This is useful when you want to have multiple routes for the same method.
  • with_reuse: Generate *_with_reuse series of methods. This is useful when you want to optimize buffer allocation over multiple consecutive calls.
  • skip: Do not generate any code from this. This is useful when you need just a trait method, which can be used another default implementations.