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