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