openmina_core/requests/
rpc_id.rs

1pub struct RpcIdType;
2impl super::RequestIdType for RpcIdType {
3    fn request_id_type() -> &'static str {
4        "RpcId"
5    }
6}
7
8pub type RpcId = super::RequestId<RpcIdType>;