pub struct ForwardKey(/* private fields */);Expand description
A ForwardKey signal.
Implementations§
Source§impl ForwardKey
impl ForwardKey
Sourcepub fn from_message<M>(msg: M) -> Option<Self>
pub fn from_message<M>(msg: M) -> Option<Self>
Try to construct a
ForwardKey
from a zbus::Message.
Sourcepub fn message(&self) -> &Message
pub fn message(&self) -> &Message
The reference to the underlying zbus::Message.
Source§impl ForwardKey
impl ForwardKey
Sourcepub fn args<'s>(&'s self) -> Result<ForwardKeyArgs<'s>>
pub fn args<'s>(&'s self) -> Result<ForwardKeyArgs<'s>>
Retrieve the signal arguments.
Trait Implementations§
Source§impl Clone for ForwardKey
impl Clone for ForwardKey
Source§fn clone(&self) -> ForwardKey
fn clone(&self) -> ForwardKey
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 ForwardKey
impl Debug for ForwardKey
Source§impl From<ForwardKey> for Message
impl From<ForwardKey> for Message
Source§fn from(signal: ForwardKey) -> Self
fn from(signal: ForwardKey) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ForwardKey
impl RefUnwindSafe for ForwardKey
impl Send for ForwardKey
impl Sync for ForwardKey
impl Unpin for ForwardKey
impl UnwindSafe for ForwardKey
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