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