pub enum Address {
Unix(Unix),
Launchd(Launchd),
Tcp(Tcp),
NonceTcp(NonceTcp),
Unixexec(Unixexec),
Systemd(Systemd),
Autolaunch(Autolaunch),
}
Expand description
This represents a DBus server address.
Variants§
Unix(Unix)
Launchd(Launchd)
Tcp(Tcp)
NonceTcp(NonceTcp)
Unixexec(Unixexec)
Systemd(Systemd)
Autolaunch(Autolaunch)
Implementations§
Source§impl Address
impl Address
pub fn is_connectable(&self) -> bool
pub fn is_listenable(&self) -> bool
Trait Implementations§
impl Eq for Address
impl StructuralPartialEq for Address
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnwindSafe for Address
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