CtpResult

Type Alias CtpResult 

Source
pub type CtpResult<T> = Result<T, CtpError>;
Expand description

CTP结果类型

Aliased Type§

pub enum CtpResult<T> {
    Ok(T),
    Err(CtpError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CtpError)

Contains the error value