pub struct UnsubscribeResult {
pub subscribed: bool,
pub removed: bool,
pub store_id: String,
}Expand description
control.unsubscribe — the unsubscription acknowledgement.
Fields§
§subscribed: boolAlways false.
removed: boolWhether the store was actually removed.
store_id: StringThe canonical store id.
Trait Implementations§
Source§impl Clone for UnsubscribeResult
impl Clone for UnsubscribeResult
Source§fn clone(&self) -> UnsubscribeResult
fn clone(&self) -> UnsubscribeResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnsubscribeResult
impl Debug for UnsubscribeResult
Source§impl<'de> Deserialize<'de> for UnsubscribeResult
impl<'de> Deserialize<'de> for UnsubscribeResult
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 UnsubscribeResult
Source§impl PartialEq for UnsubscribeResult
impl PartialEq for UnsubscribeResult
Source§impl Serialize for UnsubscribeResult
impl Serialize for UnsubscribeResult
impl StructuralPartialEq for UnsubscribeResult
Auto Trait Implementations§
impl Freeze for UnsubscribeResult
impl RefUnwindSafe for UnsubscribeResult
impl Send for UnsubscribeResult
impl Sync for UnsubscribeResult
impl Unpin for UnsubscribeResult
impl UnsafeUnpin for UnsubscribeResult
impl UnwindSafe for UnsubscribeResult
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