rust-bybit 0.2.0

Rust API connector for Bybit's WebSocket V5 API
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

pub trait Arg {
    type ValueType<'a>: Deserialize<'a>
    where
        Self: 'a;
}

pub trait Callback<A: Arg>: for<'any> FnMut(A::ValueType<'any>) {}
impl<A: Arg, F: for<'any> FnMut(A::ValueType<'any>)> Callback<A> for F {}