pub type Result<G> = Result<G, SqrlError>;
A default result type for the crate
pub enum Result<G> { Ok(G), Err(SqrlError), }
Contains the success value
Contains the error value