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