pub struct DbusCall {
pub channel: String,
pub id: String,
pub body: DbusCallBody,
}Expand description
A dbus method call plus the channel it rides on.
Fields§
§channel: StringChannel the call is sent on.
id: StringPer-call cookie correlating the response.
body: DbusCallBodyThe serializable call body.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DbusCall
impl RefUnwindSafe for DbusCall
impl Send for DbusCall
impl Sync for DbusCall
impl Unpin for DbusCall
impl UnsafeUnpin for DbusCall
impl UnwindSafe for DbusCall
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