pub struct OwnedDBusAddr { /* private fields */ }
Expand description
An owned bus address.
Example:
use dbus_addr::OwnedDBusAddr;
let _: OwnedDBusAddr = "unix:path=/tmp/dbus.sock".try_into().unwrap();
Implementations§
Trait Implementations§
Source§impl Clone for OwnedDBusAddr
impl Clone for OwnedDBusAddr
Source§fn clone(&self) -> OwnedDBusAddr
fn clone(&self) -> OwnedDBusAddr
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 OwnedDBusAddr
impl Debug for OwnedDBusAddr
Source§impl Display for OwnedDBusAddr
impl Display for OwnedDBusAddr
Source§impl PartialEq for OwnedDBusAddr
impl PartialEq for OwnedDBusAddr
Source§impl TryFrom<&str> for OwnedDBusAddr
impl TryFrom<&str> for OwnedDBusAddr
Source§impl TryFrom<String> for OwnedDBusAddr
impl TryFrom<String> for OwnedDBusAddr
impl Eq for OwnedDBusAddr
impl StructuralPartialEq for OwnedDBusAddr
Auto Trait Implementations§
impl Freeze for OwnedDBusAddr
impl RefUnwindSafe for OwnedDBusAddr
impl Send for OwnedDBusAddr
impl Sync for OwnedDBusAddr
impl Unpin for OwnedDBusAddr
impl UnwindSafe for OwnedDBusAddr
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