mqrest-rust
Rust wrapper for the IBM MQ administrative REST API.
mq-rest-admin provides typed Rust functions for every MQSC command
exposed by the IBM MQ 9.4 runCommandJSON REST endpoint. Attribute names are
automatically translated between Rust idioms and native MQSC parameter
names.
Table of Contents
Installation
Requires Rust 1.92+.
Quick start
use MqRestSession;
let session = builder
.basic_auth
.build?;
let queues = session.display_queue?;
for queue in &queues
Documentation
Full documentation: https://wphillipmoore.github.io/mq-rest-admin-rust/
Development
License
GPL-3.0-or-later. See LICENSE.