kiteticker-async-manager 0.4.0

High-performance async WebSocket client for Kite Connect API with multi-connection support, dynamic subscription management, and optimized data processing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::fmt;

#[derive(Debug, Clone)]
/// Errors that can occur while parsing tick data
pub struct ParseTickError(pub String);

impl fmt::Display for ParseTickError {
  fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
    write!(f, "{}", self.0)
  }
}

impl std::error::Error for ParseTickError {}