pub type CtpResult<T> = Result<T, CtpError>;
CTP结果类型
pub enum CtpResult<T> { Ok(T), Err(CtpError), }
Contains the success value
Contains the error value