pub enum BnWsStreamCall {
SubscribeStream {
streams: Vec<(String, Sender<Result<BnWsStreamData, SharedWsError>>)>,
tx: Sender<Result<BnWsStreamResponse, SharedWsError>>,
},
}Variants§
SubscribeStream
Fields
§
streams: Vec<(String, Sender<Result<BnWsStreamData, SharedWsError>>)>Auto Trait Implementations§
impl Freeze for BnWsStreamCall
impl !RefUnwindSafe for BnWsStreamCall
impl Send for BnWsStreamCall
impl Sync for BnWsStreamCall
impl Unpin for BnWsStreamCall
impl !UnwindSafe for BnWsStreamCall
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