pub type NewUserResponse<C> = Result<Arc<ActiveUserResponse>, <C as ClientApi>::Error>;
pub enum NewUserResponse<C> { Ok(Arc<ActiveUserResponse>), Err(<C as ClientApi>::Error), }
Contains the success value
Contains the error value