Struct ruma_client_api::r0::profile::get_profile::Response [−][src]
pub struct Response {
pub avatar_url: Option<MxcUri>,
pub displayname: Option<String>,
pub blurhash: Option<String>,
}Expand description
Data in the response from the get_profile API endpoint.
Fields
avatar_url: Option<MxcUri>The user’s avatar URL, if set.
If you activate the compat feature, this field being an empty string in JSON will give
you None here.
displayname: Option<String>The user’s display name, if set.
blurhash: Option<String>This is supported on crate feature
unstable-pre-spec only.Implementations
Trait Implementations
type EndpointError = Error
type EndpointError = Error
A type capturing the expected error conditions the server can return.
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>
Tries to convert the given http::Response into this response type.
Tries to convert this response into an http::Response. Read more
Auto Trait Implementations
impl RefUnwindSafe for Response
impl UnwindSafe for Response
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more