Struct ruma_client_api::r0::message::get_message_events::Request [−][src]
pub struct Request<'a> {
pub room_id: &'a RoomId,
pub from: &'a str,
pub to: Option<&'a str>,
pub dir: Direction,
pub limit: UInt,
pub filter: Option<RoomEventFilter<'a>>,
}Expand description
Data for a request to the get_message_events API endpoint.
Get message events for a room.
Fields
room_id: &'a RoomIdThe room to get events from.
from: &'a strThe token to start returning events from.
This token can be obtained from a prev_batch token returned for each room by the sync API, or from a start or end token returned by a previous request to this endpoint.
to: Option<&'a str>The token to stop returning events at.
This token can be obtained from a prev_batch token returned for each room by the sync endpoint, or from a start or end token returned by a previous request to this endpoint.
dir: DirectionThe direction to return events from.
limit: UIntThe maximum number of events to return.
Default: 10.
filter: Option<RoomEventFilter<'a>>A RoomEventFilter to filter returned events with.
Implementations
Creates a new Request with the given parameters.
All other parameters will be defaulted.
Creates a new Request with the given room ID and from token, and dir set to Backward.
Trait Implementations
type Incoming = IncomingRequest
type Incoming = IncomingRequestThe ‘Incoming’ variant of Self.
type EndpointError = Error
type EndpointError = ErrorA type capturing the expected error conditions the server can return.
type IncomingResponse = <Response as Outgoing>::Incoming
type IncomingResponse = <Response as Outgoing>::IncomingResponse type returned when the request is successful.
fn try_into_http_request<T: Default + BufMut>(
self,
base_url: &str,
access_token: SendAccessToken<'_>
) -> Result<Request<T>, IntoHttpError>
fn try_into_http_request<T: Default + BufMut>(
self,
base_url: &str,
access_token: SendAccessToken<'_>
) -> Result<Request<T>, IntoHttpError>Tries to convert this request into an http::Request. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for Request<'a>impl<'a> UnwindSafe for Request<'a>Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn try_into_http_request_with_user_id<T>(
self,
base_url: &str,
access_token: SendAccessToken<'_>,
user_id: UserId
) -> Result<Request<T>, IntoHttpError> where
T: Default + BufMut,
fn try_into_http_request_with_user_id<T>(
self,
base_url: &str,
access_token: SendAccessToken<'_>,
user_id: UserId
) -> Result<Request<T>, IntoHttpError> where
T: Default + BufMut, Tries to convert this request into an http::Request and appends a virtual user_id to
assert Appservice identity. Read more