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