pub type Cancellable<T> = Result<T, Cancelled>;
Operation that can potentially get cancelled returning no result (e.g. program shutdown).
enum Cancellable<T> { Ok(T), Err(Cancelled), }
Contains the success value
Contains the error value