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