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