pub type StreamSocketAcceptResult = Result<(Option<Box<SocketAddress>>, ClientEnd<StreamSocketMarker>), Errno>;
pub enum StreamSocketAcceptResult { Ok((Option<Box<SocketAddress>>, ClientEnd<StreamSocketMarker>)), Err(Errno), }
Contains the success value
Contains the error value