pub type HostVsockEndpointConnectResult = Result<Socket, i32>;
enum HostVsockEndpointConnectResult { Ok(Socket), Err(i32), }
Contains the success value
Contains the error value