Struct ruma_client_api::r0::config::set_global_account_data::Request [−][src]
pub struct Request<'a> {
pub user_id: &'a UserId,
pub event_type: &'a str,
pub data: &'a RawJsonValue,
}Expand description
Data for a request to the set_global_account_data API endpoint.
Sets global account data.
Fields
user_id: &'a UserIdThe ID of the user to set account_data for.
The access token must be authorized to make requests for this user ID.
event_type: &'a strThe event type of the account_data to set.
Custom types should be namespaced to avoid clashes.
data: &'a RawJsonValueArbitrary JSON to store as config data.
To create a RawJsonValue, use serde_json::value::to_raw_value.
Implementations
Creates a new Request with the given data, event type and user ID.
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