Fix missing Send marker

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-09 06:04:29 +00:00
parent e9302a9556
commit bc6855707b

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;