pub struct AMQPAuthority {
pub userinfo: AMQPUserInfo,
pub host: String,
pub port: u16,
}Expand description
The connection information
Fields§
§userinfo: AMQPUserInfoThe credentials used to connect to the server
host: StringThe server’s host
port: u16The port the server listens on
Trait Implementations§
Source§impl Clone for AMQPAuthority
impl Clone for AMQPAuthority
Source§fn clone(&self) -> AMQPAuthority
fn clone(&self) -> AMQPAuthority
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AMQPAuthority
impl Debug for AMQPAuthority
Source§impl Default for AMQPAuthority
impl Default for AMQPAuthority
Source§fn default() -> AMQPAuthority
fn default() -> AMQPAuthority
Returns the “default value” for a type. Read more
Source§impl PartialEq for AMQPAuthority
impl PartialEq for AMQPAuthority
impl StructuralPartialEq for AMQPAuthority
Auto Trait Implementations§
impl Freeze for AMQPAuthority
impl RefUnwindSafe for AMQPAuthority
impl Send for AMQPAuthority
impl Sync for AMQPAuthority
impl Unpin for AMQPAuthority
impl UnwindSafe for AMQPAuthority
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