pub type Result<T, E = TsgoError> = Result<T, E>;
Standard result alias used across the workspace.
pub enum Result<T, E = TsgoError> { Ok(T), Err(E), }
Contains the success value
Contains the error value