Skip to main content

WsClientResult

Type Alias WsClientResult 

Source
pub type WsClientResult<T> = Result<T, WsClientError>;
Expand description

WebSocket 客户端结果类型别名。

Aliased Type§

pub enum WsClientResult<T> {
    Ok(T),
    Err(WsClientError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(WsClientError)

Contains the error value