pub struct Unsubscribe {
pub event: String,
pub req_id: i64,
pub pair: Vec<String>,
pub subscription: Unsubscription,
}
Expand description
Message to unsubscribe from a given channel or pair
Fields§
§event: String
§req_id: i64
§pair: Vec<String>
§subscription: Unsubscription
Trait Implementations§
Source§impl Debug for Unsubscribe
impl Debug for Unsubscribe
Source§impl<'de> Deserialize<'de> for Unsubscribe
impl<'de> Deserialize<'de> for Unsubscribe
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
Auto Trait Implementations§
impl Freeze for Unsubscribe
impl RefUnwindSafe for Unsubscribe
impl Send for Unsubscribe
impl Sync for Unsubscribe
impl Unpin for Unsubscribe
impl UnwindSafe for Unsubscribe
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