Struct ruma_client_api::r0::receipt::create_receipt::IncomingRequest [−][src]
pub struct IncomingRequest {
pub room_id: RoomId,
pub receipt_type: ReceiptType,
pub event_id: EventId,
}Expand description
‘Incoming’ variant of Request.
Fields
room_id: RoomIdThe room in which to send the event.
receipt_type: ReceiptTypeThe type of receipt to send.
event_id: EventIdThe event ID to acknowledge up to.
Trait Implementations
type EndpointError = Error
type EndpointError = Error
A type capturing the error conditions that can be returned in the response.
type OutgoingResponse = Response
type OutgoingResponse = Response
Response type to return when the request is successful.
fn try_from_http_request<T: AsRef<[u8]>>(
request: Request<T>
) -> Result<Self, FromHttpRequestError>
fn try_from_http_request<T: AsRef<[u8]>>(
request: Request<T>
) -> Result<Self, FromHttpRequestError>
Tries to turn the given http::Request into this request type.