Struct ruma_client_api::r0::profile::set_avatar_url::Request [−][src]
pub struct Request<'a> {
pub user_id: &'a UserId,
pub avatar_url: Option<&'a MxcUri>,
pub blurhash: Option<&'a str>,
}Expand description
Data for a request to the set_avatar_url API endpoint.
Set the avatar URL of the user.
Fields
user_id: &'a UserIdThe user whose avatar URL will be set.
avatar_url: Option<&'a MxcUri>The new avatar URL for the user.
None is used to unset the avatar.
If you activate the compat feature, this field being an empty string in JSON will give
you None here.
blurhash: Option<&'a str>unstable-pre-spec only.Implementations
Trait Implementations
type Incoming = IncomingRequest
type Incoming = IncomingRequest
The ‘Incoming’ variant of Self.
type EndpointError = Error
type EndpointError = Error
A type capturing the expected error conditions the server can return.
type IncomingResponse = <Response as Outgoing>::Incoming
type IncomingResponse = <Response as Outgoing>::Incoming
Response 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