pub type Result<T> = Result<T, TeamError>;
Result type for team operations
pub enum Result<T> { Ok(T), Err(TeamError), }
Contains the success value
Contains the error value