pub type BaseSocketGetReceiveBufferResult = Result<u64, Errno>;
enum BaseSocketGetReceiveBufferResult { Ok(u64), Err(Errno), }
Contains the success value
Contains the error value