Skip to main content

futu_backend/conn/
test_util.rs

1use super::BackendConn;
2
3impl BackendConn {
4    pub fn pending_request_count_for_test(&self) -> usize {
5        self.pending.lock().len()
6    }
7}