pub struct AMQPUri {
pub scheme: AMQPScheme,
pub authority: AMQPAuthority,
pub vhost: String,
pub query: AMQPQueryString,
}Expand description
An AMQP Uri
Fields§
§scheme: AMQPSchemeThe scheme used by the AMQP connection
The connection information
vhost: StringThe target vhost
query: AMQPQueryStringThe optional query string to pass parameters to the server
Trait Implementations§
impl Eq for AMQPUri
impl StructuralPartialEq for AMQPUri
Auto Trait Implementations§
impl Freeze for AMQPUri
impl RefUnwindSafe for AMQPUri
impl Send for AMQPUri
impl Sync for AMQPUri
impl Unpin for AMQPUri
impl UnwindSafe for AMQPUri
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