Merge pull request #4 from jevolk/missing_send

Fix missing Send marker
This commit is contained in:
June 🍓🦴 2024-06-09 02:17:17 -04:00 committed by GitHub
commit f8f6db89d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -394,7 +394,7 @@ pub trait OutgoingRequest: Sized + Clone {
}
/// A response type for a Matrix API endpoint, used for receiving responses.
pub trait IncomingResponse: Sized {
pub trait IncomingResponse: Sized + Send {
/// A type capturing the expected error conditions the server can return.
type EndpointError: EndpointError;