fe2o3_amqp_management/lib.rs
1#![deny(missing_docs, missing_debug_implementations)]
2
3//! An experimental implementation of AMQP 1.0 management working draft with `fe2o3-amqp`
4//!
5//! Because the AMQP 1.0 management working draft itself isn't stable yet, this crate is
6//! expected to see breaking changes in all future releases until the draft becomes stable.
7
8pub mod client;
9pub mod error;
10pub mod operations;
11pub mod status;
12
13pub mod constants;
14pub mod request;
15pub mod response;
16
17pub mod mgmt_ext;
18
19/// The default address of the management node.
20pub const MANAGEMENT_NODE_ADDRESS: &str = "$management";
21
22/// The default address of the client node.
23pub const DEFAULT_CLIENT_NODE_ADDRESS: &str = "mgmt-client";
24
25pub use client::MgmtClient;
26pub use request::Request;
27pub use response::Response;