pub struct RabbitMqQueue {Show 17 fields
pub name: String,
pub node: String,
pub arguments: HashMap<String, RabbitMqArgument>,
pub state: String,
pub kind: String,
pub vhost: String,
pub auto_delete: bool,
pub durable: bool,
pub exclusive: bool,
pub consumer_capacity: Option<Decimal>,
pub consumer_utilisation: Option<Decimal>,
pub consumers: Option<i64>,
pub messages: Option<i64>,
pub messages_ready: Option<i64>,
pub messages_unacknowledged: Option<i64>,
pub garbage_collection: Option<RabbitMqQueueGarbageCollection>,
pub message_stats: Option<RabbitMqQueueMessageStats>,
}
Fields§
§name: String
§node: String
§arguments: HashMap<String, RabbitMqArgument>
§state: String
§kind: String
§vhost: String
§auto_delete: bool
§durable: bool
§exclusive: bool
§consumer_capacity: Option<Decimal>
§consumer_utilisation: Option<Decimal>
§consumers: Option<i64>
§messages: Option<i64>
§messages_ready: Option<i64>
§messages_unacknowledged: Option<i64>
§garbage_collection: Option<RabbitMqQueueGarbageCollection>
§message_stats: Option<RabbitMqQueueMessageStats>
Trait Implementations§
Source§impl Debug for RabbitMqQueue
impl Debug for RabbitMqQueue
Source§impl<'de> Deserialize<'de> for RabbitMqQueue
impl<'de> Deserialize<'de> for RabbitMqQueue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RabbitMqQueue
impl RefUnwindSafe for RabbitMqQueue
impl Send for RabbitMqQueue
impl Sync for RabbitMqQueue
impl Unpin for RabbitMqQueue
impl UnwindSafe for RabbitMqQueue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more