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