pub type Result<T> = Result<T, ConnectError>;
Expand description
A specialized Result type for SOCKS5 operations.
Aliased Type§
enum Result<T> {
Ok(T),
Err(ConnectError),
}
pub type Result<T> = Result<T, ConnectError>;
A specialized Result type for SOCKS5 operations.
enum Result<T> {
Ok(T),
Err(ConnectError),
}