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