qdl: add new 'Owner' Chardev property

This commit is contained in:
Marc-André Lureau 2021-08-14 01:31:09 +04:00
parent 0d8866303e
commit 0f653ea6d5

View File

@ -23,6 +23,10 @@ pub trait Chardev {
/// Name property
#[dbus_proxy(property)]
fn name(&self) -> zbus::Result<String>;
/// Owner property
#[dbus_proxy(property)]
fn owner(&self) -> zbus::Result<String>;
}
#[derive(derivative::Derivative)]