pub struct MarketUnsubscribeRequest {
pub assets_ids: Vec<String>,
pub operation: &'static str,
}Expand description
Market-channel dynamic unsubscribe request sent during an active session.
Wire format: {"assets_ids": [...], "operation": "unsubscribe"}
Fields§
§assets_ids: Vec<String>§operation: &'static strTrait Implementations§
Source§impl Debug for MarketUnsubscribeRequest
impl Debug for MarketUnsubscribeRequest
Auto Trait Implementations§
impl Freeze for MarketUnsubscribeRequest
impl RefUnwindSafe for MarketUnsubscribeRequest
impl Send for MarketUnsubscribeRequest
impl Sync for MarketUnsubscribeRequest
impl Unpin for MarketUnsubscribeRequest
impl UnsafeUnpin for MarketUnsubscribeRequest
impl UnwindSafe for MarketUnsubscribeRequest
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more