pub struct MqUri {
pub pool: String,
pub topic: String,
pub partition: Option<u32>,
}Expand description
A parsed MQ URI of the form fabric-mq://pool/topic[/partition].
Fields§
§pool: StringThe pool name.
topic: StringThe topic name.
partition: Option<u32>Optional partition index.
Implementations§
Trait Implementations§
impl Eq for MqUri
impl StructuralPartialEq for MqUri
Auto Trait Implementations§
impl Freeze for MqUri
impl RefUnwindSafe for MqUri
impl Send for MqUri
impl Sync for MqUri
impl Unpin for MqUri
impl UnwindSafe for MqUri
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