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