pub struct DBusSignalRef<'a> {
pub connection: &'a DBusConnection,
pub sender_name: &'a str,
pub object_path: &'a str,
pub interface_name: &'a str,
pub signal_name: &'a str,
pub parameters: &'a Variant,
}Expand description
An emitted D-Bus signal.
Fields§
§connection: &'a DBusConnectionThe connection the signal was emitted on.
sender_name: &'a strThe bus name of the sender which emitted the signal.
object_path: &'a strThe path of the object on sender the signal was emitted from.
interface_name: &'a strThe interface the signal belongs to.
signal_name: &'a strThe name of the emitted signal.
parameters: &'a VariantParameters the signal was emitted with.
Trait Implementations§
Source§impl<'a> Clone for DBusSignalRef<'a>
impl<'a> Clone for DBusSignalRef<'a>
Source§fn clone(&self) -> DBusSignalRef<'a>
fn clone(&self) -> DBusSignalRef<'a>
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<'a> Debug for DBusSignalRef<'a>
impl<'a> Debug for DBusSignalRef<'a>
impl<'a> Copy for DBusSignalRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for DBusSignalRef<'a>
impl<'a> RefUnwindSafe for DBusSignalRef<'a>
impl<'a> Send for DBusSignalRef<'a>
impl<'a> Sync for DBusSignalRef<'a>
impl<'a> Unpin for DBusSignalRef<'a>
impl<'a> UnwindSafe for DBusSignalRef<'a>
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