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