pub struct StopReply {
pub error: Option<String>,
}Expand description
Reply to a StopRequest: None error on success (stopping an absent
group is a success — it is already gone).
Fields§
§error: Option<String>A human-readable reason on failure; None when the group was stopped
(or was already absent).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StopReply
impl<'de> Deserialize<'de> for StopReply
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StopReply
impl StructuralPartialEq for StopReply
Auto Trait Implementations§
impl Freeze for StopReply
impl RefUnwindSafe for StopReply
impl Send for StopReply
impl Sync for StopReply
impl Unpin for StopReply
impl UnsafeUnpin for StopReply
impl UnwindSafe for StopReply
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