Struct ruma_client_api::r0::media::get_content_thumbnail::Request [−][src]
pub struct Request<'a> {
pub media_id: &'a str,
pub server_name: &'a ServerName,
pub method: Option<Method>,
pub width: UInt,
pub height: UInt,
pub allow_remote: bool,
}Expand description
Data for a request to the get_content_thumbnail API endpoint.
Get a thumbnail of content from the media store.
Fields
media_id: &'a strThe media ID from the mxc:// URI (the path component).
server_name: &'a ServerNameThe server name from the mxc:// URI (the authoritory component).
method: Option<Method>The desired resizing method.
width: UIntThe desired width of the thumbnail. The actual thumbnail may not match the size specified.
height: UIntThe desired height of the thumbnail. The actual thumbnail may not match the size specified.
allow_remote: boolWhether to fetch media deemed remote.
Used to prevent routing loops. Defaults to true.
Implementations
Creates a new Request with the given media ID, server name, desired thumbnail width and
desired thumbnail height.
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