pub struct DbusCallBody {
pub call: (String, String, String, Value),
pub id: String,
}Expand description
The wire body of a D-Bus call: (path, interface, method, args) plus an id.
Fields§
§call: (String, String, String, Value)Tuple of object path, interface, method name, and argument array.
id: StringCorrelation id echoed in the response.
Trait Implementations§
Source§impl Debug for DbusCallBody
impl Debug for DbusCallBody
Auto Trait Implementations§
impl Freeze for DbusCallBody
impl RefUnwindSafe for DbusCallBody
impl Send for DbusCallBody
impl Sync for DbusCallBody
impl Unpin for DbusCallBody
impl UnsafeUnpin for DbusCallBody
impl UnwindSafe for DbusCallBody
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