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