useserde_repr::*;/// Order side used when placing trades.
////// This maps to the numeric values expected by Fyers.
#[derive(Serialize_repr, Debug, Clone, Copy, PartialEq, Eq, Hash)]#[repr(i8)]pubenumSide{/// Buy -> 1
Buy =1,/// Sell -> -1
Sell =-1,}